From 30cdc6944b162e83c8151d38dde45bf49c54be29 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 16 Mar 2011 18:15:45 -0700 Subject: [PATCH 01/52] Skeleton / Stub for Question and Answers micro-app plugin --- .../QuestionAndAnswerPlugin.php | 429 ++++++++++++++++++ 1 file changed, 429 insertions(+) create mode 100644 plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php diff --git a/plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php b/plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php new file mode 100644 index 0000000000..0d7cb96c91 --- /dev/null +++ b/plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php @@ -0,0 +1,429 @@ +. + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Question and Answer plugin + * + * @category Plugin + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QuestionAndAnswerPlugin extends MicroappPlugin +{ + /** + * Set up our tables (question and answer) + * + * @see Schema + * @see ColumnDef + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onCheckSchema() + { + $schema = Schema::get(); + + $schema->ensureTable('question', Question::schemaDef()); + $schema->ensureTable('answer', Answer::schemaDef()); + + return true; + } + + /** + * Load related modules when needed + * + * @param string $cls Name of the class to be loaded + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onAutoload($cls) + { + $dir = dirname(__FILE__); + + switch ($cls) + { + case 'NewquestionAction': + case 'NewanswerAction': + case 'ShowquestionAction': + case 'ShowanswerAction': + include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; + return false; + case 'QuestionForm': + case 'AnswerForm': + include_once $dir . '/'.strtolower($cls).'.php'; + break; + case 'Question': + case 'Answer': + include_once $dir . '/'.$cls.'.php'; + return false; + default: + return true; + } + } + + /** + * Map URLs to actions + * + * @param Net_URL_Mapper $m path-to-action mapper + * + * @return boolean hook value; true means continue processing, false means stop. + */ + + function onRouterInitialized($m) + { + $m->connect('main/question/new', + array('action' => 'newquestion')); + $m->connect('main/question/answer', + array('action' => 'newanswer')); + $m->connect('question/:id', + array('action' => 'showquestion'), + array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}')); + $m->connect('answer/:id', + array('action' => 'showanswer'), + array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}')); + return true; + } + + function onPluginVersion(&$versions) + { + $versions[] = array( + 'name' => 'QuestionAndAnswer', + 'version' => STATUSNET_VERSION, + 'author' => 'Zach Copley', + 'homepage' => 'http://status.net/wiki/Plugin:QuestionAndAnswer', + 'description' => + _m('Question and Answers micro-app.') + ); + return true; + } + + function appTitle() { + return _m('Question'); + } + + function tag() { + return 'question'; + } + + function types() { + /* + return array(Happening::OBJECT_TYPE, + RSVP::POSITIVE, + RSVP::NEGATIVE, + RSVP::POSSIBLE); + + */ + } + + /** + * Given a parsed ActivityStreams activity, save it into a notice + * and other data structures. + * + * @param Activity $activity + * @param Profile $actor + * @param array $options=array() + * + * @return Notice the resulting notice + */ + function saveNoticeFromActivity($activity, $actor, $options=array()) + { + if (count($activity->objects) != 1) { + throw new Exception('Too many activity objects.'); + } + + $questionObj = $activity->objects[0]; + + if ($questinoObj->type != Question::OBJECT_TYPE) { + throw new Exception('Wrong type for object.'); + } + + $notice = null; + + switch ($activity->verb) { + case ActivityVerb::POST: + $notice = Question::saveNew( + $actor, + $questionObj->title + // null, + // $questionObj->summary, + // $options + ); + break; + case Answer::NORMAL: + case Answer::ANONYMOUS: + $question = Question::staticGet('uri', $questionObj->id); + if (empty($question)) { + // FIXME: save the question + throw new Exception("Answer to unknown question."); + } + $notice = Answer::saveNew($actor, $question, $activity->verb, $options); + break; + default: + throw new Exception("Unknown verb for question"); + } + + return $notice; + } + + /** + * Turn a Notice into an activity object + * + * @param Notice $notice + * + * @return ActivityObject + */ + + function activityObjectFromNotice($notice) + { + $question = null; + + switch ($notice->object_type) { + case Question::OBJECT_TYPE: + $question = Qeustion::fromNotice($notice); + break; + case Answer::NORMAL: + case Answer::ANONYMOUS: + $answer = Answer::fromNotice($notice); + $question = $answer->getQuestion(); + break; + } + + if (empty($question)) { + throw new Exception("Unknown object type."); + } + + $notice = $question->getNotice(); + + if (empty($notice)) { + throw new Exception("Unknown question notice."); + } + + $obj = new ActivityObject(); + + $obj->id = $question->uri; + $obj->type = Question::OBJECT_TYPE; + $obj->title = $question->title; + $obj->link = $notice->bestUrl(); + + // XXX: probably need other stuff here + + return $obj; + } + + /** + * Change the verb on Answer notices + * + * @param Notice $notice + * + * @return ActivityObject + */ + + function onEndNoticeAsActivity($notice, &$act) { + switch ($notice->object_type) { + case Answer::NORMAL: + case Answer::ANONYMOUS: + $act->verb = $notice->object_type; + break; + } + return true; + } + + /** + * Custom HTML output for our notices + * + * @param Notice $notice + * @param HTMLOutputter $out + */ + + function showNotice($notice, $out) + { + switch ($notice->object_type) { + case Question::OBJECT_TYPE: + $this->showQuestionNotice($notice, $out); + break; + case Answer::NORMAL: + case Answer::ANONYMOUS: + case RSVP::POSSIBLE: + $this->showAnswerNotice($notice, $out); + break; + } + + $out->elementStart('div', array('class' => 'question')); + + $profile = $notice->getProfile(); + $avatar = $profile->getAvatar(AVATAR_MINI_SIZE); + + $out->element('img', + array('src' => ($avatar) ? + $avatar->displayUrl() : + Avatar::defaultImage(AVATAR_MINI_SIZE), + 'class' => 'avatar photo bookmark-avatar', + 'width' => AVATAR_MINI_SIZE, + 'height' => AVATAR_MINI_SIZE, + 'alt' => $profile->getBestName())); + + $out->raw(' '); // avoid   for AJAX XML compatibility + + $out->elementStart('span', 'vcard author'); // hack for belongsOnTimeline; JS needs to be able to find the author + $out->element('a', + array('class' => 'url', + 'href' => $profile->profileurl, + 'title' => $profile->getBestName()), + $profile->nickname); + $out->elementEnd('span'); + } + + function showAnswerNotice($notice, $out) + { + $rsvp = Answer::fromNotice($notice); + + $out->elementStart('div', 'answer'); + $out->raw($answer->asHTML()); + $out->elementEnd('div'); + return; + } + + function showQuestionNotice($notice, $out) + { + $profile = $notice->getProfile(); + $question = Question::fromNotice($notice); + + assert(!empty($question)); + assert(!empty($profile)); + + $out->elementStart('div', 'question-notice'); + + $out->elementStart('h3'); + + if (!empty($question->url)) { + $out->element('a', + array('href' => $question->url, + 'class' => 'question-title'), + $question->title); + } else { + $out->text($question->title); + } + + if (!empty($question->location)) { + $out->elementStart('div', 'question-location'); + $out->element('strong', null, _('Location: ')); + $out->element('span', 'location', $question->location); + $out->elementEnd('div'); + } + + if (!empty($question->description)) { + $out->elementStart('div', 'question-description'); + $out->element('strong', null, _('Description: ')); + $out->element('span', 'description', $question->description); + $out->elementEnd('div'); + } + + $answers = $question->getAnswers(); + + $out->elementStart('div', 'question-answers'); + $out->element('strong', null, _('Answer: ')); + $out->element('span', 'question-answer'); + + // XXX I dunno + + $out->elementEnd('div'); + + $user = common_current_user(); + + if (!empty($user)) { + $question = $question->getAnswer($user->getProfile()); + + if (empty($answer)) { + $form = new AnswerForm($question, $out); + } + + $form->show(); + } + + $out->elementEnd('div'); + } + + /** + * Form for our app + * + * @param HTMLOutputter $out + * @return Widget + */ + + function entryForm($out) + { + return new QuestionForm($out); + } + + /** + * When a notice is deleted, clean up related tables. + * + * @param Notice $notice + */ + + function deleteRelated($notice) + { + switch ($notice->object_type) { + case Question::OBJECT_TYPE: + common_log(LOG_DEBUG, "Deleting question from notice..."); + $question = Question::fromNotice($notice); + $question->delete(); + break; + case Answer::NORMAL: + case Answer::ANONYMOUS: + common_log(LOG_DEBUG, "Deleting answer from notice..."); + $answer = Answer::fromNotice($notice); + common_log(LOG_DEBUG, "to delete: $answer->id"); + $answer->delete(); + break; + default: + common_log(LOG_DEBUG, "Not deleting related, wtf..."); + } + } + + function onEndShowScripts($action) + { + // XXX maybe some cool shiz here + } + + function onEndShowStyles($action) + { + $action->cssLink($this->path('questionandanswer.css')); + return true; + } +} From 46793caf4b8ce2bb176bd9684ff43781128d4023 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 17 Mar 2011 17:43:13 -0700 Subject: [PATCH 02/52] Most objects and forms are in place, now I just have to make it work. --- .../QuestionAndAnswerPlugin.php | 21 +- .../QuestionAndAnswer/actions/Newquestion.php | 211 +++++++++++++++ plugins/QuestionAndAnswer/actions/answer.php | 198 +++++++++++++++ .../QuestionAndAnswer/actions/showanswer.php | 125 +++++++++ .../actions/showquestion.php | 130 ++++++++++ plugins/QuestionAndAnswer/classes/Answer.php | 213 ++++++++++++++++ .../QuestionAndAnswer/classes/Question.php | 240 ++++++++++++++++++ .../css/questionandanswer.css | 1 + plugins/QuestionAndAnswer/lib/answerform.php | 122 +++++++++ .../QuestionAndAnswer/lib/questionform.php | 126 +++++++++ 10 files changed, 1376 insertions(+), 11 deletions(-) create mode 100644 plugins/QuestionAndAnswer/actions/Newquestion.php create mode 100644 plugins/QuestionAndAnswer/actions/answer.php create mode 100644 plugins/QuestionAndAnswer/actions/showanswer.php create mode 100644 plugins/QuestionAndAnswer/actions/showquestion.php create mode 100644 plugins/QuestionAndAnswer/classes/Answer.php create mode 100644 plugins/QuestionAndAnswer/classes/Question.php create mode 100644 plugins/QuestionAndAnswer/css/questionandanswer.css create mode 100644 plugins/QuestionAndAnswer/lib/answerform.php create mode 100644 plugins/QuestionAndAnswer/lib/questionform.php diff --git a/plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php b/plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php index 0d7cb96c91..e519dac64f 100644 --- a/plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php +++ b/plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php @@ -81,16 +81,18 @@ class QuestionAndAnswerPlugin extends MicroappPlugin case 'NewanswerAction': case 'ShowquestionAction': case 'ShowanswerAction': - include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; + include_once $dir . '/actions/' + . strtolower(mb_substr($cls, 0, -6)) . '.php'; return false; case 'QuestionForm': case 'AnswerForm': - include_once $dir . '/'.strtolower($cls).'.php'; + include_once $dir . '/lib/' . strtolower($cls).'.php'; break; case 'Question': case 'Answer': - include_once $dir . '/'.$cls.'.php'; + include_once $dir . '/classes/' . $cls.'.php'; return false; + break; default: return true; } @@ -141,13 +143,10 @@ class QuestionAndAnswerPlugin extends MicroappPlugin } function types() { - /* - return array(Happening::OBJECT_TYPE, - RSVP::POSITIVE, - RSVP::NEGATIVE, - RSVP::POSSIBLE); - - */ + return array( + Question::OBJECT_TYPE, + Answer::NORMAL + ); } /** @@ -423,7 +422,7 @@ class QuestionAndAnswerPlugin extends MicroappPlugin function onEndShowStyles($action) { - $action->cssLink($this->path('questionandanswer.css')); + $action->cssLink($this->path('css/questionandanswer.css')); return true; } } diff --git a/plugins/QuestionAndAnswer/actions/Newquestion.php b/plugins/QuestionAndAnswer/actions/Newquestion.php new file mode 100644 index 0000000000..cd1c2ffb13 --- /dev/null +++ b/plugins/QuestionAndAnswer/actions/Newquestion.php @@ -0,0 +1,211 @@ +. + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Add a new Question + * + * @category Plugin + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class NewquestionAction extends Action +{ + protected $user = null; + protected $error = null; + protected $complete = null; + + protected $question = null; + + /** + * Returns the title of the action + * + * @return string Action title + */ + function title() + { + // TRANS: Title for Question page. + return _m('New question'); + } + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + function prepare($argarray) + { + parent::prepare($argarray); + + $this->user = common_current_user(); + + if (empty($this->user)) { + // TRANS: Client exception thrown trying to create a Question while not logged in. + throw new ClientException(_m('You must be logged in to post a question.'), + 403); + } + + if ($this->isPost()) { + $this->checkSessionToken(); + } + + return true; + } + + /** + * Handler method + * + * @param array $argarray is ignored since it's now passed in in prepare() + * + * @return void + */ + function handle($argarray=null) + { + parent::handle($argarray); + + if ($this->isPost()) { + $this->newQuestion(); + } else { + $this->showPage(); + } + + return; + } + + /** + * Add a new Question + * + * @return void + */ + function newQuestion() + { + if ($this->boolean('ajax')) { + StatusNet::setApi(true); + } + try { + if (empty($this->question)) { + // TRANS: Client exception thrown trying to create a Question without a question. + throw new ClientException(_m('Question must have a question.')); + } + + $saved = Question::saveNew( + $this->user->getProfile(), + $this->question + ); + } catch (ClientException $ce) { + $this->error = $ce->getMessage(); + $this->showPage(); + return; + } + + if ($this->boolean('ajax')) { + header('Content-Type: text/xml;charset=utf-8'); + $this->xw->startDocument('1.0', 'UTF-8'); + $this->elementStart('html'); + $this->elementStart('head'); + // TRANS: Page title after sending a notice. + $this->element('title', null, _m('Notice posted')); + $this->elementEnd('head'); + $this->elementStart('body'); + $this->showNotice($saved); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + common_redirect($saved->bestUrl(), 303); + } + } + + /** + * Output a notice + * + * Used to generate the notice code for Ajax results. + * + * @param Notice $notice Notice that was saved + * + * @return void + */ + function showNotice($notice) + { + class_exists('NoticeList'); // @fixme hack for autoloader + $nli = new NoticeListItem($notice, $this); + $nli->show(); + } + + /** + * Show the Question form + * + * @return void + */ + function showContent() + { + if (!empty($this->error)) { + $this->element('p', 'error', $this->error); + } + + $form = new NewQuestionForm( + $this, + $this->question, + $this->options + ); + + $form->show(); + + return; + } + + /** + * Return true if read only. + * + * MAY override + * + * @param array $args other arguments + * + * @return boolean is read only action? + */ + function isReadOnly($args) + { + if ($_SERVER['REQUEST_METHOD'] == 'GET' || + $_SERVER['REQUEST_METHOD'] == 'HEAD') { + return true; + } else { + return false; + } + } +} + diff --git a/plugins/QuestionAndAnswer/actions/answer.php b/plugins/QuestionAndAnswer/actions/answer.php new file mode 100644 index 0000000000..49bb73aa54 --- /dev/null +++ b/plugins/QuestionAndAnswer/actions/answer.php @@ -0,0 +1,198 @@ +. + * + * @category QuestonAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Answer a question + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class AnswerAction extends Action +{ + protected $user = null; + protected $error = null; + protected $complete = null; + + protected $qustion = null; + protected $answer = null; + + /** + * Returns the title of the action + * + * @return string Action title + */ + function title() + { + // TRANS: Page title for and answer to a question. + return _m('Answer'); + } + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + function prepare($argarray) + { + parent::prepare($argarray); + if ($this->boolean('ajax')) { + StatusNet::setApi(true); + } + + $this->user = common_current_user(); + + if (empty($this->user)) { + // TRANS: Client exception thrown trying to answer a question while not logged in. + throw new ClientException(_m("You must be logged in to answer to a question."), + 403); + } + + if ($this->isPost()) { + $this->checkSessionToken(); + } + + $id = $this->trimmed('id'); + $this->question = Question::staticGet('id', $id); + if (empty($this->question)) { + // TRANS: Client exception thrown trying to respond to a non-existing question. + throw new ClientException(_m('Invalid or missing question.'), 404); + } + + $answer = $this->trimmed('answer'); + + + return true; + } + + /** + * Handler method + * + * @param array $argarray is ignored since it's now passed in in prepare() + * + * @return void + */ + function handle($argarray=null) + { + parent::handle($argarray); + + if ($this->isPost()) { + $this->answer(); + } else { + $this->showPage(); + } + + return; + } + + /** + * Add a new answer + * + * @return void + */ + function answer() + { + try { + $notice = Answer::saveNew( + $this->user->getProfile(), + $this->question, + $this->answer + ); + } catch (ClientException $ce) { + $this->error = $ce->getMessage(); + $this->showPage(); + return; + } + + if ($this->boolean('ajax')) { + header('Content-Type: text/xml;charset=utf-8'); + $this->xw->startDocument('1.0', 'UTF-8'); + $this->elementStart('html'); + $this->elementStart('head'); + // TRANS: Page title after sending an answer. + $this->element('title', null, _m('Answers')); + $this->elementEnd('head'); + $this->elementStart('body'); + $form = new Answer($this->question, $this); + $form->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + common_redirect($this->question->bestUrl(), 303); + } + } + + /** + * Show the Answer form + * + * @return void + */ + function showContent() + { + if (!empty($this->error)) { + $this->element('p', 'error', $this->error); + } + + $form = new AnswerForm($this->question, $this); + + $form->show(); + + return; + } + + /** + * Return true if read only. + * + * MAY override + * + * @param array $args other arguments + * + * @return boolean is read only action? + */ + function isReadOnly($args) + { + if ($_SERVER['REQUEST_METHOD'] == 'GET' || + $_SERVER['REQUEST_METHOD'] == 'HEAD') { + return true; + } else { + return false; + } + } +} diff --git a/plugins/QuestionAndAnswer/actions/showanswer.php b/plugins/QuestionAndAnswer/actions/showanswer.php new file mode 100644 index 0000000000..d3202cd51d --- /dev/null +++ b/plugins/QuestionAndAnswer/actions/showanswer.php @@ -0,0 +1,125 @@ +. + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Show an answer to a question, and associated data + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class ShowAnswerAction extends ShownoticeAction +{ + protected $answer = null; + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + + function prepare($argarray) + { + OwnerDesignAction::prepare($argarray); + + $this->id = $this->trimmed('id'); + + $this->answer = Answer::staticGet('id', $this->id); + + if (empty($this->answer)) { + throw new ClientException(_('No such answer.'), 404); + } + + $this->notice = Notice::staticGet('uri', $this->answer->uri); + + if (empty($this->notice)) { + // Did we used to have it, and it got deleted? + throw new ClientException(_('No such answer.'), 404); + } + + $this->user = User::staticGet('id', $this->answer->profile_id); + + if (empty($this->user)) { + throw new ClientException(_('No such user.'), 404); + } + + $this->profile = $this->user->getProfile(); + + if (empty($this->profile)) { + throw new ServerException(_('User without a profile.')); + } + + $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); + + return true; + } + + /** + * Title of the page + * + * Used by Action class for layout. + * + * @return string page tile + */ + + function title() + { + return sprintf(_('%s\'s answer to "%s"'), + $this->user->nickname, + $this->answer->title); + } + + /** + * Overload page title display to show answer link + * + * @return void + */ + + function showPageTitle() + { + $this->elementStart('h1'); + $this->element('a', + array('href' => $this->answer->url), + $this->asnwer->title); + $this->elementEnd('h1'); + } +} diff --git a/plugins/QuestionAndAnswer/actions/showquestion.php b/plugins/QuestionAndAnswer/actions/showquestion.php new file mode 100644 index 0000000000..50f56fd161 --- /dev/null +++ b/plugins/QuestionAndAnswer/actions/showquestion.php @@ -0,0 +1,130 @@ +. + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Show a question + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class ShowquestionAction extends ShownoticeAction +{ + protected $question = null; + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + function prepare($argarray) + { + OwnerDesignAction::prepare($argarray); + + $this->id = $this->trimmed('id'); + + $this->question = Question::staticGet('id', $this->id); + + if (empty($this->question)) { + // TRANS: Client exception thrown trying to view a non-existing question. + throw new ClientException(_m('No such question.'), 404); + } + + $this->notice = $this->question->getNotice(); + + if (empty($this->notice)) { + // Did we used to have it, and it got deleted? + // TRANS: Client exception thrown trying to view a non-existing question notice. + throw new ClientException(_m('No such question notice.'), 404); + } + + $this->user = User::staticGet('id', $this->question->profile_id); + + if (empty($this->user)) { + // TRANS: Client exception thrown trying to view a question of a non-existing user. + throw new ClientException(_m('No such user.'), 404); + } + + $this->profile = $this->user->getProfile(); + + if (empty($this->profile)) { + // TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded. + throw new ServerException(_m('User without a profile.')); + } + + $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); + + return true; + } + + /** + * Title of the page + * + * Used by Action class for layout. + * + * @return string page tile + */ + function title() + { + // TRANS: Page title for a question. + // TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. + return sprintf(_m('%1$s\'s question: %2$s'), + $this->user->nickname, + $this->question->question); + } + + /** + * @fixme combine the notice time with question update time + */ + function lastModified() + { + return Action::lastModified(); + } + + + /** + * @fixme combine the notice time with question update time + */ + function etag() + { + return Action::etag(); + } +} diff --git a/plugins/QuestionAndAnswer/classes/Answer.php b/plugins/QuestionAndAnswer/classes/Answer.php new file mode 100644 index 0000000000..45e52d0d39 --- /dev/null +++ b/plugins/QuestionAndAnswer/classes/Answer.php @@ -0,0 +1,213 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2011, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * For storing answers + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * @see DB_DataObject + */ +class Answer extends Managed_DataObject +{ + public $__table = 'answer'; // table name + public $id; // char(36) primary key not null -> UUID + public $question_id; // char(36) -> question.id UUID + public $profile_id; // int -> question.id + public $votes; // int -> total number of votes (up & down) + public $best; // (int) boolean -> whether the question asker has marked this as the best answer + public $created; // datetime + + /** + * Get an instance by key + * + * This is a utility method to get a single instance with a given key value. + * + * @param string $k Key to use to lookup (usually 'user_id' for this class) + * @param mixed $v Value to lookup + * + * @return User_greeting_count object found, or null for no hits + * + */ + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Answer', $k, $v); + } + + /** + * Get an instance by compound key + * + * This is a utility method to get a single instance with a given set of + * key-value pairs. Usually used for the primary key for a compound key; thus + * the name. + * + * @param array $kv array of key-value mappings + * + * @return Bookmark object found, or null for no hits + * + */ + function pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('Answer', $kv); + } + + /** + * The One True Thingy that must be defined and declared. + */ + public static function schemaDef() + { + return array( + 'description' => 'Record of answers to questions', + 'fields' => array( + 'id' => array('type' => 'char', 'length' => 36, 'not null' => true, 'description' => 'UUID of the response'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'UUID to the answer notice'), + 'question_id' => array('type' => 'char', 'length' => 36, 'not null' => true, 'description' => 'UUID of question being responded to'), + 'votes' => array('type' => 'int'), + 'best' => array('type' => 'int'), + 'profile_id' => array('type' => 'int'), + 'created' => array('type' => 'datetime', 'not null' => true), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'question_uri_key' => array('uri'), + 'question_id_profile_id_key' => array('question_id', 'profile_id'), + ), + 'indexes' => array( + 'profile_id_question_Id_index' => array('profile_id', 'question_id'), + ) + ); + } + + /** + * Get an answer based on a notice + * + * @param Notice $notice Notice to check for + * + * @return Answer found response or null + */ + function getByNotice($notice) + { + return self::staticGet('uri', $notice->uri); + } + + /** + * Get the notice that belongs to this answer + * + * @return Notice + */ + function getNotice() + { + return Notice::staticGet('uri', $this->uri); + } + + function bestUrl() + { + return $this->getNotice()->bestUrl(); + } + + /** + * Get the Question this is an answer to + * + * @return Question + */ + function getQuestion() + { + return Question::staticGet('id', $this->question_id); + } + /** + * Save a new answer notice + * + * @param Profile $profile + * @param Question $Question the question being answered + * @param array + * + * @return Notice saved notice + */ + static function saveNew($profile, $question, $options=null) + { + if (empty($options)) { + $options = array(); + } + + $a = new Answer(); + $a->id = UUID::gen(); + $a->profile_id = $profile->id; + $a->question_id = $question->id; + $a->created = common_sql_now(); + $a->uri = common_local_url( + 'showanswer', + array('id' => $pr->id) + ); + + common_log(LOG_DEBUG, "Saving answer: $pr->id $pr->uri"); + $a->insert(); + + // TRANS: Notice content answering a question. + // TRANS: %s is the answer + $content = sprintf( + _m('answered "%s"'), + $answer + ); + $link = '' . htmlspecialchars($answer) . ''; + // TRANS: Rendered version of the notice content answering a question. + // TRANS: %s a link to the question with the chosen option as link description. + $rendered = sprintf(_m('answered "%s"'), $link); + + $tags = array(); + $replies = array(); + + $options = array_merge(array('urls' => array(), + 'rendered' => $rendered, + 'tags' => $tags, + 'replies' => $replies, + 'reply_to' => $question->getNotice()->id, + 'object_type' => QuestionAndAnswer::ANSWER_OBJECT), + $options); + + if (!array_key_exists('uri', $options)) { + $options['uri'] = $pr->uri; + } + + $saved = Notice::saveNew($profile->id, + $content, + array_key_exists('source', $options) ? + $options['source'] : 'web', + $options); + + return $saved; + } +} diff --git a/plugins/QuestionAndAnswer/classes/Question.php b/plugins/QuestionAndAnswer/classes/Question.php new file mode 100644 index 0000000000..95ceeb45e2 --- /dev/null +++ b/plugins/QuestionAndAnswer/classes/Question.php @@ -0,0 +1,240 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2011, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * For storing a question + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * @see DB_DataObject + */ + +class Question extends Managed_DataObject +{ + public $__table = 'question'; // table name + public $id; // char(36) primary key not null -> UUID + public $uri; + public $profile_id; // int -> profile.id + public $title; // text + public $description; // text + public $created; // datetime + + /** + * Get an instance by key + * + * This is a utility method to get a single instance with a given key value. + * + * @param string $k Key to use to lookup (usually 'user_id' for this class) + * @param mixed $v Value to lookup + * + * @return User_greeting_count object found, or null for no hits + * + */ + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('Question', $k, $v); + } + + /** + * Get an instance by compound key + * + * This is a utility method to get a single instance with a given set of + * key-value pairs. Usually used for the primary key for a compound key; thus + * the name. + * + * @param array $kv array of key-value mappings + * + * @return Bookmark object found, or null for no hits + * + */ + function pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('Question', $kv); + } + + /** + * The One True Thingy that must be defined and declared. + */ + public static function schemaDef() + { + return array( + 'description' => 'Per-notice question data for QuestionAndAnswer plugin', + 'fields' => array( + 'id' => array('type' => 'char', 'length' => 36, 'not null' => true, 'description' => 'UUID'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'not null' => true), + 'profile_id' => array('type' => 'int'), + 'title' => array('type' => 'text'), + 'description' => array('type' => 'text'), + 'created' => array('type' => 'datetime', 'not null' => true), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'question_uri_key' => array('uri'), + ), + ); + } + + /** + * Get a question based on a notice + * + * @param Notice $notice Notice to check for + * + * @return Question found question or null + */ + function getByNotice($notice) + { + return self::staticGet('uri', $notice->uri); + } + + function getNotice() + { + return Notice::staticGet('uri', $this->uri); + } + + function bestUrl() + { + return $this->getNotice()->bestUrl(); + } + + /** + * Get the answer from a particular user to this question, if any. + * + * @param Profile $profile + * + * @return Answer object or null + */ + function getAnswer(Profile $profile) + { + $a = new Answer(); + $a->question_id = $this->id; + $a->profile_id = $profile->id; + $a->find(); + if ($a->fetch()) { + return $a; + } else { + return null; + } + } + + function countAnswers() + { + $a = new Answer(); + + $a->question_id = $this->id; + return $a-count(); + } + + /** + * Save a new question notice + * + * @param Profile $profile + * @param string $question + * @param string $title + * @param string $description + * @param array $option // and whatnot + * + * @return Notice saved notice + */ + static function saveNew($profile, $question, $title, $description, $options = array()) + { + $q = new Question(); + + $q->id = UUID::gen(); + $q->profile_id = $profile->id; + $q->title = $title; + $q->description = $description; + + if (array_key_exists('created', $options)) { + $q->created = $options['created']; + } else { + $q->created = common_sql_now(); + } + + if (array_key_exists('uri', $options)) { + $q->uri = $options['uri']; + } else { + $q->uri = common_local_url( + 'showquestion', + array('id' => $q->id) + ); + } + + common_log(LOG_DEBUG, "Saving question: $q->id $q->uri"); + $q->insert(); + + // TRANS: Notice content creating a question. + // TRANS: %1$s is the title of the question, %2$s is a link to the question. + $content = sprintf( + _m('question: %1$s %2$s'), + $title, + $q->uri + ); + + $link = '' . htmlspecialchars($title) . ''; + // TRANS: Rendered version of the notice content creating a question. + // TRANS: %s a link to the question as link description. + $rendered = sprintf(_m('Question: %s'), $link); + + $tags = array('question'); + $replies = array(); + + $options = array_merge( + array( + 'urls' => array(), + 'rendered' => $rendered, + 'tags' => $tags, + 'replies' => $replies, + 'object_type' => QuestionAndAnswerPlugin::QUESTION_OBJECT + ), + $options + ); + + if (!array_key_exists('uri', $options)) { + $options['uri'] = $p->uri; + } + + $saved = Notice::saveNew( + $profile->id, + $content, + array_key_exists('source', $options) ? + $options['source'] : 'web', + $options + ); + + return $saved; + } +} diff --git a/plugins/QuestionAndAnswer/css/questionandanswer.css b/plugins/QuestionAndAnswer/css/questionandanswer.css new file mode 100644 index 0000000000..4701b5ab03 --- /dev/null +++ b/plugins/QuestionAndAnswer/css/questionandanswer.css @@ -0,0 +1 @@ +/* stubb for q&a css */ diff --git a/plugins/QuestionAndAnswer/lib/answerform.php b/plugins/QuestionAndAnswer/lib/answerform.php new file mode 100644 index 0000000000..d093863708 --- /dev/null +++ b/plugins/QuestionAndAnswer/lib/answerform.php @@ -0,0 +1,122 @@ +. + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Form to add a new answer to a question + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class AnswerForm extends Form +{ + protected $question; + + /** + * Construct a new answer form + * + * @param Question $question + * @param HTMLOutputter $out output channel + * + * @return void + */ + function __construct(Question $question, HTMLOutputter $out) + { + parent::__construct($out); + $this->question = $question; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + function id() + { + return 'answer-form'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings ajax'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('answer', array('id' => $this->question->id)); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $question = $this->question; + $out = $this->out; + $id = "question-" . $question->id; + + $out->element('p', 'answer', $question->question); + $out->element('input', array('type' => 'text', 'name' => 'answer')); + + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // TRANS: Button text for submitting a poll response. + $this->out->submit('submit', _m('BUTTON', 'Submit')); + } +} + diff --git a/plugins/QuestionAndAnswer/lib/questionform.php b/plugins/QuestionAndAnswer/lib/questionform.php new file mode 100644 index 0000000000..5892464218 --- /dev/null +++ b/plugins/QuestionAndAnswer/lib/questionform.php @@ -0,0 +1,126 @@ +. + * + * @category QuestonAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Form to add a new question + * + * @category QuestionAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class NewQuestionForm extends Form +{ + protected $question = null; + + /** + * Construct a new question form + * + * @param HTMLOutputter $out output channel + * + * @return void + */ + function __construct($out=null, $question=null, $options=null) + { + parent::__construct($out); + } + + /** + * ID of the form + * + * @return int ID of the form + */ + function id() + { + return 'newquestion-form'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings ajax-notice'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('newquestion'); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $this->out->elementStart('fieldset', array('id' => 'newquestion-data')); + $this->out->elementStart('ul', 'form_data'); + + $this->li(); + $this->out->input('question', + // TRANS: Field label on the page to create a question. + _m('Question'), + $this->question, + // TRANS: Field title on the page to create a question. + _m('What is your question?')); + $this->unli(); + + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // TRANS: Button text for saving a new question. + $this->out->submit('submit', _m('BUTTON', 'Save')); + } +} From 2167454eb260d23ec532f7b8629a887a434edae8 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Sun, 20 Mar 2011 19:24:35 -0700 Subject: [PATCH 03/52] Renamed QuestionAndAnswerPlugin to QnAPlugin --- .../QnAPlugin} | 75 +++++-- .../actions/answer.php | 2 +- .../actions/newquestion.php} | 2 +- plugins/QnA/actions/qnavote.php | 198 ++++++++++++++++++ .../actions/showanswer.php | 4 +- .../actions/showquestion.php | 4 +- .../Answer.php => QnA/classes/QnA_Answer.php} | 85 +++++--- .../classes/QnA_Question.php} | 54 +++-- plugins/QnA/classes/QnA_Vote.php | 160 ++++++++++++++ .../questionandanswer.css => QnA/css/qna.css} | 0 .../lib/answerform.php | 13 +- .../lib/questionform.php | 2 +- plugins/QnA/lib/voteform.php | 121 +++++++++++ 13 files changed, 631 insertions(+), 89 deletions(-) rename plugins/{QuestionAndAnswer/QuestionAndAnswerPlugin.php => QnA/QnAPlugin} (85%) rename plugins/{QuestionAndAnswer => QnA}/actions/answer.php (99%) rename plugins/{QuestionAndAnswer/actions/Newquestion.php => QnA/actions/newquestion.php} (99%) create mode 100644 plugins/QnA/actions/qnavote.php rename plugins/{QuestionAndAnswer => QnA}/actions/showanswer.php (98%) rename plugins/{QuestionAndAnswer => QnA}/actions/showquestion.php (98%) rename plugins/{QuestionAndAnswer/classes/Answer.php => QnA/classes/QnA_Answer.php} (68%) rename plugins/{QuestionAndAnswer/classes/Question.php => QnA/classes/QnA_Question.php} (79%) create mode 100644 plugins/QnA/classes/QnA_Vote.php rename plugins/{QuestionAndAnswer/css/questionandanswer.css => QnA/css/qna.css} (100%) rename plugins/{QuestionAndAnswer => QnA}/lib/answerform.php (92%) rename plugins/{QuestionAndAnswer => QnA}/lib/questionform.php (99%) create mode 100644 plugins/QnA/lib/voteform.php diff --git a/plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php b/plugins/QnA/QnAPlugin similarity index 85% rename from plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php rename to plugins/QnA/QnAPlugin index e519dac64f..76bd304a87 100644 --- a/plugins/QuestionAndAnswer/QuestionAndAnswerPlugin.php +++ b/plugins/QnA/QnAPlugin @@ -20,7 +20,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. @@ -44,8 +44,13 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class QuestionAndAnswerPlugin extends MicroappPlugin +class QnAPlugin extends MicroAppPlugin { + + // @fixme which domain should we use for these namespaces? + const QUESTION_OBJECT = 'http://activityschema.org/object/question'; + const ANSWER_OBJECT = 'http://activityschema.org/object/answer'; + /** * Set up our tables (question and answer) * @@ -58,9 +63,10 @@ class QuestionAndAnswerPlugin extends MicroappPlugin { $schema = Schema::get(); - $schema->ensureTable('question', Question::schemaDef()); - $schema->ensureTable('answer', Answer::schemaDef()); - + $schema->ensureTable('qna_question', QnA_Question::schemaDef()); + $schema->ensureTable('qna_answer', QnA_Answer::schemaDef()); + $schema->ensureTable('qna_vote', QnA_Vote::schemaDef()); + return true; } @@ -81,15 +87,18 @@ class QuestionAndAnswerPlugin extends MicroappPlugin case 'NewanswerAction': case 'ShowquestionAction': case 'ShowanswerAction': + case 'QnavoteAction': include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; return false; case 'QuestionForm': case 'AnswerForm': + case 'VoteForm'; include_once $dir . '/lib/' . strtolower($cls).'.php'; break; - case 'Question': - case 'Answer': + case 'QnA_Question': + case 'QnA_Answer': + case 'QnA_Vote': include_once $dir . '/classes/' . $cls.'.php'; return false; break; @@ -108,26 +117,47 @@ class QuestionAndAnswerPlugin extends MicroappPlugin function onRouterInitialized($m) { - $m->connect('main/question/new', - array('action' => 'newquestion')); - $m->connect('main/question/answer', - array('action' => 'newanswer')); - $m->connect('question/:id', - array('action' => 'showquestion'), - array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}')); - $m->connect('answer/:id', - array('action' => 'showanswer'), - array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}')); + $regexId = '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'; + + $m->connect( + 'main/question/new', + array('action' => 'newquestion') + ); + $m->connect( + 'main/question/answer', + array('action' => 'newanswer') + ); + $m->connect( + 'question/vote/:id', + array('action' => 'qnavote', 'type' => 'question'), + array('id' => $regexId) + ); + $m->connect( + 'question/:id', + array('action' => 'showquestion'), + array('id' => $regexId) + ); + $m->connect( + 'answer/vote/:id', + array('action' => 'qnavote', 'type' => 'answer'), + array('id' => $regexId) + ); + $m->connect( + 'answer/:id', + array('action' => 'showanswer'), + array('id' => $regexId) + ); + return true; } function onPluginVersion(&$versions) { $versions[] = array( - 'name' => 'QuestionAndAnswer', + 'name' => 'QnA', 'version' => STATUSNET_VERSION, 'author' => 'Zach Copley', - 'homepage' => 'http://status.net/wiki/Plugin:QuestionAndAnswer', + 'homepage' => 'http://status.net/wiki/Plugin:QnA', 'description' => _m('Question and Answers micro-app.') ); @@ -167,7 +197,7 @@ class QuestionAndAnswerPlugin extends MicroappPlugin $questionObj = $activity->objects[0]; - if ($questinoObj->type != Question::OBJECT_TYPE) { + if ($questinoObj->type != QnA_Question::OBJECT_TYPE) { throw new Exception('Wrong type for object.'); } @@ -184,13 +214,12 @@ class QuestionAndAnswerPlugin extends MicroappPlugin ); break; case Answer::NORMAL: - case Answer::ANONYMOUS: - $question = Question::staticGet('uri', $questionObj->id); + $question = QnA_Question::staticGet('uri', $questionObj->id); if (empty($question)) { // FIXME: save the question throw new Exception("Answer to unknown question."); } - $notice = Answer::saveNew($actor, $question, $activity->verb, $options); + $notice = QnA_Answer::saveNew($actor, $question, $activity->verb, $options); break; default: throw new Exception("Unknown verb for question"); diff --git a/plugins/QuestionAndAnswer/actions/answer.php b/plugins/QnA/actions/answer.php similarity index 99% rename from plugins/QuestionAndAnswer/actions/answer.php rename to plugins/QnA/actions/answer.php index 49bb73aa54..17e841e545 100644 --- a/plugins/QuestionAndAnswer/actions/answer.php +++ b/plugins/QnA/actions/answer.php @@ -36,7 +36,7 @@ if (!defined('STATUSNET')) { /** * Answer a question * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2010 StatusNet, Inc. diff --git a/plugins/QuestionAndAnswer/actions/Newquestion.php b/plugins/QnA/actions/newquestion.php similarity index 99% rename from plugins/QuestionAndAnswer/actions/Newquestion.php rename to plugins/QnA/actions/newquestion.php index cd1c2ffb13..83b1022d6b 100644 --- a/plugins/QuestionAndAnswer/actions/Newquestion.php +++ b/plugins/QnA/actions/newquestion.php @@ -20,7 +20,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. diff --git a/plugins/QnA/actions/qnavote.php b/plugins/QnA/actions/qnavote.php new file mode 100644 index 0000000000..17e841e545 --- /dev/null +++ b/plugins/QnA/actions/qnavote.php @@ -0,0 +1,198 @@ +. + * + * @category QuestonAndAnswer + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Answer a question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class AnswerAction extends Action +{ + protected $user = null; + protected $error = null; + protected $complete = null; + + protected $qustion = null; + protected $answer = null; + + /** + * Returns the title of the action + * + * @return string Action title + */ + function title() + { + // TRANS: Page title for and answer to a question. + return _m('Answer'); + } + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + function prepare($argarray) + { + parent::prepare($argarray); + if ($this->boolean('ajax')) { + StatusNet::setApi(true); + } + + $this->user = common_current_user(); + + if (empty($this->user)) { + // TRANS: Client exception thrown trying to answer a question while not logged in. + throw new ClientException(_m("You must be logged in to answer to a question."), + 403); + } + + if ($this->isPost()) { + $this->checkSessionToken(); + } + + $id = $this->trimmed('id'); + $this->question = Question::staticGet('id', $id); + if (empty($this->question)) { + // TRANS: Client exception thrown trying to respond to a non-existing question. + throw new ClientException(_m('Invalid or missing question.'), 404); + } + + $answer = $this->trimmed('answer'); + + + return true; + } + + /** + * Handler method + * + * @param array $argarray is ignored since it's now passed in in prepare() + * + * @return void + */ + function handle($argarray=null) + { + parent::handle($argarray); + + if ($this->isPost()) { + $this->answer(); + } else { + $this->showPage(); + } + + return; + } + + /** + * Add a new answer + * + * @return void + */ + function answer() + { + try { + $notice = Answer::saveNew( + $this->user->getProfile(), + $this->question, + $this->answer + ); + } catch (ClientException $ce) { + $this->error = $ce->getMessage(); + $this->showPage(); + return; + } + + if ($this->boolean('ajax')) { + header('Content-Type: text/xml;charset=utf-8'); + $this->xw->startDocument('1.0', 'UTF-8'); + $this->elementStart('html'); + $this->elementStart('head'); + // TRANS: Page title after sending an answer. + $this->element('title', null, _m('Answers')); + $this->elementEnd('head'); + $this->elementStart('body'); + $form = new Answer($this->question, $this); + $form->show(); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + common_redirect($this->question->bestUrl(), 303); + } + } + + /** + * Show the Answer form + * + * @return void + */ + function showContent() + { + if (!empty($this->error)) { + $this->element('p', 'error', $this->error); + } + + $form = new AnswerForm($this->question, $this); + + $form->show(); + + return; + } + + /** + * Return true if read only. + * + * MAY override + * + * @param array $args other arguments + * + * @return boolean is read only action? + */ + function isReadOnly($args) + { + if ($_SERVER['REQUEST_METHOD'] == 'GET' || + $_SERVER['REQUEST_METHOD'] == 'HEAD') { + return true; + } else { + return false; + } + } +} diff --git a/plugins/QuestionAndAnswer/actions/showanswer.php b/plugins/QnA/actions/showanswer.php similarity index 98% rename from plugins/QuestionAndAnswer/actions/showanswer.php rename to plugins/QnA/actions/showanswer.php index d3202cd51d..7686d6d566 100644 --- a/plugins/QuestionAndAnswer/actions/showanswer.php +++ b/plugins/QnA/actions/showanswer.php @@ -20,7 +20,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2010 StatusNet, Inc. @@ -37,7 +37,7 @@ if (!defined('STATUSNET')) { /** * Show an answer to a question, and associated data * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2010 StatusNet, Inc. diff --git a/plugins/QuestionAndAnswer/actions/showquestion.php b/plugins/QnA/actions/showquestion.php similarity index 98% rename from plugins/QuestionAndAnswer/actions/showquestion.php rename to plugins/QnA/actions/showquestion.php index 50f56fd161..41c1d809fe 100644 --- a/plugins/QuestionAndAnswer/actions/showquestion.php +++ b/plugins/QnA/actions/showquestion.php @@ -20,7 +20,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. @@ -37,7 +37,7 @@ if (!defined('STATUSNET')) { /** * Show a question * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. diff --git a/plugins/QuestionAndAnswer/classes/Answer.php b/plugins/QnA/classes/QnA_Answer.php similarity index 68% rename from plugins/QuestionAndAnswer/classes/Answer.php rename to plugins/QnA/classes/QnA_Answer.php index 45e52d0d39..d88e6bda41 100644 --- a/plugins/QuestionAndAnswer/classes/Answer.php +++ b/plugins/QnA/classes/QnA_Answer.php @@ -4,7 +4,7 @@ * * PHP version 5 * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { /** * For storing answers * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 @@ -42,13 +42,14 @@ if (!defined('STATUSNET')) { * * @see DB_DataObject */ -class Answer extends Managed_DataObject +class QnA_Answer extends Managed_DataObject { - public $__table = 'answer'; // table name + CONST ANSWER = 'http://activityschema.org/object/answer'; + + public $__table = 'qna_answer'; // table name public $id; // char(36) primary key not null -> UUID public $question_id; // char(36) -> question.id UUID public $profile_id; // int -> question.id - public $votes; // int -> total number of votes (up & down) public $best; // (int) boolean -> whether the question asker has marked this as the best answer public $created; // datetime @@ -57,15 +58,15 @@ class Answer extends Managed_DataObject * * This is a utility method to get a single instance with a given key value. * - * @param string $k Key to use to lookup (usually 'user_id' for this class) + * @param string $k Key to use to lookup * @param mixed $v Value to lookup * - * @return User_greeting_count object found, or null for no hits + * @return QnA_Answer object found, or null for no hits * */ function staticGet($k, $v=null) { - return Memcached_DataObject::staticGet('Answer', $k, $v); + return Memcached_DataObject::staticGet('QnA_Answer', $k, $v); } /** @@ -77,12 +78,12 @@ class Answer extends Managed_DataObject * * @param array $kv array of key-value mappings * - * @return Bookmark object found, or null for no hits + * @return QA_Answer object found, or null for no hits * */ function pkeyGet($kv) { - return Memcached_DataObject::pkeyGet('Answer', $kv); + return Memcached_DataObject::pkeyGet('QnA_Answer', $kv); } /** @@ -93,13 +94,25 @@ class Answer extends Managed_DataObject return array( 'description' => 'Record of answers to questions', 'fields' => array( - 'id' => array('type' => 'char', 'length' => 36, 'not null' => true, 'description' => 'UUID of the response'), - 'uri' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'UUID to the answer notice'), - 'question_id' => array('type' => 'char', 'length' => 36, 'not null' => true, 'description' => 'UUID of question being responded to'), - 'votes' => array('type' => 'int'), - 'best' => array('type' => 'int'), - 'profile_id' => array('type' => 'int'), - 'created' => array('type' => 'datetime', 'not null' => true), + 'id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, 'description' => 'UUID of the response'), + 'uri' => array( + 'type' => 'varchar', + 'length' => 255, + 'not null' => true, + 'description' => 'UUID to the answer notice' + ), + 'question_id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID of question being responded to' + ), + 'best' => array('type' => 'int', 'size' => 'tiny'), + 'profile_id' => array('type' => 'int'), + 'created' => array('type' => 'datetime', 'not null' => true), ), 'primary key' => array('id'), 'unique keys' => array( @@ -107,7 +120,7 @@ class Answer extends Managed_DataObject 'question_id_profile_id_key' => array('question_id', 'profile_id'), ), 'indexes' => array( - 'profile_id_question_Id_index' => array('profile_id', 'question_id'), + 'profile_id_question_id_index' => array('profile_id', 'question_id'), ) ); } @@ -117,7 +130,7 @@ class Answer extends Managed_DataObject * * @param Notice $notice Notice to check for * - * @return Answer found response or null + * @return QnA_Answer found response or null */ function getByNotice($notice) { @@ -142,12 +155,13 @@ class Answer extends Managed_DataObject /** * Get the Question this is an answer to * - * @return Question + * @return QnA_Question */ function getQuestion() { return Question::staticGet('id', $this->question_id); } + /** * Save a new answer notice * @@ -184,29 +198,34 @@ class Answer extends Managed_DataObject ); $link = '' . htmlspecialchars($answer) . ''; // TRANS: Rendered version of the notice content answering a question. - // TRANS: %s a link to the question with the chosen option as link description. + // TRANS: %s a link to the question with question title as the link content. $rendered = sprintf(_m('answered "%s"'), $link); $tags = array(); $replies = array(); - $options = array_merge(array('urls' => array(), - 'rendered' => $rendered, - 'tags' => $tags, - 'replies' => $replies, - 'reply_to' => $question->getNotice()->id, - 'object_type' => QuestionAndAnswer::ANSWER_OBJECT), - $options); + $options = array_merge( + array( + 'urls' => array(), + 'rendered' => $rendered, + 'tags' => $tags, + 'replies' => $replies, + 'reply_to' => $question->getNotice()->id, + 'object_type' => QnA::ANSWER_OBJECT), + $options + ); if (!array_key_exists('uri', $options)) { $options['uri'] = $pr->uri; } - $saved = Notice::saveNew($profile->id, - $content, - array_key_exists('source', $options) ? - $options['source'] : 'web', - $options); + $saved = Notice::saveNew( + $profile->id, + $content, + array_key_exists('source', $options) ? + $options['source'] : 'web', + $options + ); return $saved; } diff --git a/plugins/QuestionAndAnswer/classes/Question.php b/plugins/QnA/classes/QnA_Question.php similarity index 79% rename from plugins/QuestionAndAnswer/classes/Question.php rename to plugins/QnA/classes/QnA_Question.php index 95ceeb45e2..1a298ae4e9 100644 --- a/plugins/QuestionAndAnswer/classes/Question.php +++ b/plugins/QnA/classes/QnA_Question.php @@ -4,7 +4,7 @@ * * PHP version 5 * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { /** * For storing a question * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 @@ -43,14 +43,18 @@ if (!defined('STATUSNET')) { * @see DB_DataObject */ -class Question extends Managed_DataObject +class QnA_Question extends Managed_DataObject { - public $__table = 'question'; // table name + + const QUESTION = 'http://activityschema.org/object/question'; + + public $__table = 'qna_question'; // table name public $id; // char(36) primary key not null -> UUID public $uri; public $profile_id; // int -> profile.id public $title; // text public $description; // text + public $closed; // int (boolean) whether a question is closed public $created; // datetime /** @@ -58,15 +62,15 @@ class Question extends Managed_DataObject * * This is a utility method to get a single instance with a given key value. * - * @param string $k Key to use to lookup (usually 'user_id' for this class) + * @param string $k Key to use to lookup * @param mixed $v Value to lookup * - * @return User_greeting_count object found, or null for no hits + * @return QnA_Question object found, or null for no hits * */ function staticGet($k, $v=null) { - return Memcached_DataObject::staticGet('Question', $k, $v); + return Memcached_DataObject::staticGet('QnA_Question', $k, $v); } /** @@ -83,7 +87,7 @@ class Question extends Managed_DataObject */ function pkeyGet($kv) { - return Memcached_DataObject::pkeyGet('Question', $kv); + return Memcached_DataObject::pkeyGet('QnA_Question', $kv); } /** @@ -92,14 +96,27 @@ class Question extends Managed_DataObject public static function schemaDef() { return array( - 'description' => 'Per-notice question data for QuestionAndAnswer plugin', + 'description' => 'Per-notice question data for QNA plugin', 'fields' => array( - 'id' => array('type' => 'char', 'length' => 36, 'not null' => true, 'description' => 'UUID'), - 'uri' => array('type' => 'varchar', 'length' => 255, 'not null' => true), - 'profile_id' => array('type' => 'int'), - 'title' => array('type' => 'text'), + 'id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID' + ), + 'uri' => array( + 'type' => 'varchar', + 'length' => 255, + 'not null' => true + ), + 'profile_id' => array('type' => 'int'), + 'title' => array('type' => 'text'), + 'closed' => array('type' => 'int', size => 'tiny'), 'description' => array('type' => 'text'), - 'created' => array('type' => 'datetime', 'not null' => true), + 'created' => array( + 'type' => 'datetime', + 'not null' => true + ), ), 'primary key' => array('id'), 'unique keys' => array( @@ -139,7 +156,7 @@ class Question extends Managed_DataObject */ function getAnswer(Profile $profile) { - $a = new Answer(); + $a = new QnA_Answer(); $a->question_id = $this->id; $a->profile_id = $profile->id; $a->find(); @@ -152,8 +169,7 @@ class Question extends Managed_DataObject function countAnswers() { - $a = new Answer(); - + $a = new QnA_Answer(); $a->question_id = $this->id; return $a-count(); } @@ -171,7 +187,7 @@ class Question extends Managed_DataObject */ static function saveNew($profile, $question, $title, $description, $options = array()) { - $q = new Question(); + $q = new QnA_Question(); $q->id = UUID::gen(); $q->profile_id = $profile->id; @@ -218,7 +234,7 @@ class Question extends Managed_DataObject 'rendered' => $rendered, 'tags' => $tags, 'replies' => $replies, - 'object_type' => QuestionAndAnswerPlugin::QUESTION_OBJECT + 'object_type' => QnAPlugin::QUESTION_OBJECT ), $options ); diff --git a/plugins/QnA/classes/QnA_Vote.php b/plugins/QnA/classes/QnA_Vote.php new file mode 100644 index 0000000000..ec2e75afbb --- /dev/null +++ b/plugins/QnA/classes/QnA_Vote.php @@ -0,0 +1,160 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2011, StatusNet, Inc. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +/** + * For storing votes on question and answers + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * @see DB_DataObject + */ +class QnA_Vote extends Managed_DataObject +{ + const UP = 'http://activitystrea.ms/schema/1.0/like'; + const DOWN = 'http://activityschema.org/object/dislike'; // Gar! + + public $__table = 'qa_vote'; // table name + public $id; // char(36) primary key not null -> UUID + public $question_id; // char(36) -> question.id UUID + public $answer_id; // char(36) -> question.id UUID + public $type // tinyint -> vote: up (1) or down (-1) + public $profile_id; // int -> question.id + public $created; // datetime + + /** + * Get an instance by key + * + * This is a utility method to get a single instance with a given key value. + * + * @param string $k Key to use to lookup + * @param mixed $v Value to lookup + * + * @return QnA_Vote object found, or null for no hits + * + */ + function staticGet($k, $v=null) + { + return Memcached_DataObject::staticGet('QnA_Vote', $k, $v); + } + + /** + * Get an instance by compound key + * + * This is a utility method to get a single instance with a given set of + * key-value pairs. Usually used for the primary key for a compound key; thus + * the name. + * + * @param array $kv array of key-value mappings + * + * @return QnA_Vote object found, or null for no hits + * + */ + function pkeyGet($kv) + { + return Memcached_DataObject::pkeyGet('QnA_Vote', $kv); + } + + /** + * The One True Thingy that must be defined and declared. + */ + public static function schemaDef() + { + return array( + 'description' => 'For storing votes on questions and answers', + 'fields' => array( + 'id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID of the vote' + ), + 'question_id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID of question being voted on' + ), + 'answer_id' => array( + 'type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'UUID of answer being voted on' + ), + 'vote' => array('type' => 'int', 'size' => 'tiny'), + 'profile_id' => array('type' => 'int'), + 'created' => array('type' => 'datetime', 'not null' => true), + ), + 'primary key' => array('id'), + 'indexes' => array( + 'profile_id_question_Id_index' => array( + 'profile_id', + 'question_id' + ), + 'profile_id_question_Id_index' => array( + 'profile_id', + 'answer_id' + ) + ) + ); + } + + /** + * Save a vote on a question or answer + * + * @param Profile $profile + * @param QnA_Question the question being voted on + * @param QnA_Answer the answer being voted on + * @param vote + * @param array + * + * @return Void + */ + static function save($profile, $question, $answer, $vote) + { + $v = new QnA_Vote(); + $v->id = UUID::gen(); + $v->profile_id = $profile->id; + $v->question_id = $question->id; + $v->answer_id = $answer->id; + $v->vote = $vote; + $v->created = common_sql_now(); + + common_log(LOG_DEBUG, "Saving vote: $v->id $v->vote"); + + $v->insert(); + } +} diff --git a/plugins/QuestionAndAnswer/css/questionandanswer.css b/plugins/QnA/css/qna.css similarity index 100% rename from plugins/QuestionAndAnswer/css/questionandanswer.css rename to plugins/QnA/css/qna.css diff --git a/plugins/QuestionAndAnswer/lib/answerform.php b/plugins/QnA/lib/answerform.php similarity index 92% rename from plugins/QuestionAndAnswer/lib/answerform.php rename to plugins/QnA/lib/answerform.php index d093863708..554f698d99 100644 --- a/plugins/QuestionAndAnswer/lib/answerform.php +++ b/plugins/QnA/lib/answerform.php @@ -20,7 +20,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. @@ -37,7 +37,7 @@ if (!defined('STATUSNET')) { /** * Form to add a new answer to a question * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. @@ -51,12 +51,12 @@ class AnswerForm extends Form /** * Construct a new answer form * - * @param Question $question + * @param QnA_Question $question * @param HTMLOutputter $out output channel * * @return void */ - function __construct(Question $question, HTMLOutputter $out) + function __construct(QnA_Question $question, HTMLOutputter $out) { parent::__construct($out); $this->question = $question; @@ -100,12 +100,11 @@ class AnswerForm extends Form function formData() { $question = $this->question; - $out = $this->out; - $id = "question-" . $question->id; + $out = $this->out; + $id = "question-" . $question->id; $out->element('p', 'answer', $question->question); $out->element('input', array('type' => 'text', 'name' => 'answer')); - } /** diff --git a/plugins/QuestionAndAnswer/lib/questionform.php b/plugins/QnA/lib/questionform.php similarity index 99% rename from plugins/QuestionAndAnswer/lib/questionform.php rename to plugins/QnA/lib/questionform.php index 5892464218..4f9ea6d808 100644 --- a/plugins/QuestionAndAnswer/lib/questionform.php +++ b/plugins/QnA/lib/questionform.php @@ -37,7 +37,7 @@ if (!defined('STATUSNET')) { /** * Form to add a new question * - * @category QuestionAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. diff --git a/plugins/QnA/lib/voteform.php b/plugins/QnA/lib/voteform.php new file mode 100644 index 0000000000..554f698d99 --- /dev/null +++ b/plugins/QnA/lib/voteform.php @@ -0,0 +1,121 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Form to add a new answer to a question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class AnswerForm extends Form +{ + protected $question; + + /** + * Construct a new answer form + * + * @param QnA_Question $question + * @param HTMLOutputter $out output channel + * + * @return void + */ + function __construct(QnA_Question $question, HTMLOutputter $out) + { + parent::__construct($out); + $this->question = $question; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + function id() + { + return 'answer-form'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings ajax'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('answer', array('id' => $this->question->id)); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $question = $this->question; + $out = $this->out; + $id = "question-" . $question->id; + + $out->element('p', 'answer', $question->question); + $out->element('input', array('type' => 'text', 'name' => 'answer')); + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // TRANS: Button text for submitting a poll response. + $this->out->submit('submit', _m('BUTTON', 'Submit')); + } +} + From 73c3344cc3b867dc5e701554d410a87c18315e5a Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 21 Mar 2011 15:50:36 -0700 Subject: [PATCH 04/52] * Fix plugin filename * Make questions save! --- plugins/QnA/QnAPlugin | 457 --------------------------- plugins/QnA/actions/newquestion.php | 33 +- plugins/QnA/actions/qnavote.php | 10 +- plugins/QnA/classes/QnA_Answer.php | 45 +-- plugins/QnA/classes/QnA_Question.php | 33 +- plugins/QnA/classes/QnA_Vote.php | 4 +- plugins/QnA/lib/answerform.php | 2 +- plugins/QnA/lib/questionform.php | 31 +- 8 files changed, 92 insertions(+), 523 deletions(-) delete mode 100644 plugins/QnA/QnAPlugin diff --git a/plugins/QnA/QnAPlugin b/plugins/QnA/QnAPlugin deleted file mode 100644 index 76bd304a87..0000000000 --- a/plugins/QnA/QnAPlugin +++ /dev/null @@ -1,457 +0,0 @@ -. - * - * @category QnA - * @package StatusNet - * @author Zach Copley - * @copyright 2011 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - * @link http://status.net/ - */ - -if (!defined('STATUSNET')) { - // This check helps protect against security problems; - // your code file can't be executed directly from the web. - exit(1); -} - -/** - * Question and Answer plugin - * - * @category Plugin - * @package StatusNet - * @author Zach Copley - * @copyright 2011 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 - * @link http://status.net/ - */ -class QnAPlugin extends MicroAppPlugin -{ - - // @fixme which domain should we use for these namespaces? - const QUESTION_OBJECT = 'http://activityschema.org/object/question'; - const ANSWER_OBJECT = 'http://activityschema.org/object/answer'; - - /** - * Set up our tables (question and answer) - * - * @see Schema - * @see ColumnDef - * - * @return boolean hook value; true means continue processing, false means stop. - */ - function onCheckSchema() - { - $schema = Schema::get(); - - $schema->ensureTable('qna_question', QnA_Question::schemaDef()); - $schema->ensureTable('qna_answer', QnA_Answer::schemaDef()); - $schema->ensureTable('qna_vote', QnA_Vote::schemaDef()); - - return true; - } - - /** - * Load related modules when needed - * - * @param string $cls Name of the class to be loaded - * - * @return boolean hook value; true means continue processing, false means stop. - */ - function onAutoload($cls) - { - $dir = dirname(__FILE__); - - switch ($cls) - { - case 'NewquestionAction': - case 'NewanswerAction': - case 'ShowquestionAction': - case 'ShowanswerAction': - case 'QnavoteAction': - include_once $dir . '/actions/' - . strtolower(mb_substr($cls, 0, -6)) . '.php'; - return false; - case 'QuestionForm': - case 'AnswerForm': - case 'VoteForm'; - include_once $dir . '/lib/' . strtolower($cls).'.php'; - break; - case 'QnA_Question': - case 'QnA_Answer': - case 'QnA_Vote': - include_once $dir . '/classes/' . $cls.'.php'; - return false; - break; - default: - return true; - } - } - - /** - * Map URLs to actions - * - * @param Net_URL_Mapper $m path-to-action mapper - * - * @return boolean hook value; true means continue processing, false means stop. - */ - - function onRouterInitialized($m) - { - $regexId = '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'; - - $m->connect( - 'main/question/new', - array('action' => 'newquestion') - ); - $m->connect( - 'main/question/answer', - array('action' => 'newanswer') - ); - $m->connect( - 'question/vote/:id', - array('action' => 'qnavote', 'type' => 'question'), - array('id' => $regexId) - ); - $m->connect( - 'question/:id', - array('action' => 'showquestion'), - array('id' => $regexId) - ); - $m->connect( - 'answer/vote/:id', - array('action' => 'qnavote', 'type' => 'answer'), - array('id' => $regexId) - ); - $m->connect( - 'answer/:id', - array('action' => 'showanswer'), - array('id' => $regexId) - ); - - return true; - } - - function onPluginVersion(&$versions) - { - $versions[] = array( - 'name' => 'QnA', - 'version' => STATUSNET_VERSION, - 'author' => 'Zach Copley', - 'homepage' => 'http://status.net/wiki/Plugin:QnA', - 'description' => - _m('Question and Answers micro-app.') - ); - return true; - } - - function appTitle() { - return _m('Question'); - } - - function tag() { - return 'question'; - } - - function types() { - return array( - Question::OBJECT_TYPE, - Answer::NORMAL - ); - } - - /** - * Given a parsed ActivityStreams activity, save it into a notice - * and other data structures. - * - * @param Activity $activity - * @param Profile $actor - * @param array $options=array() - * - * @return Notice the resulting notice - */ - function saveNoticeFromActivity($activity, $actor, $options=array()) - { - if (count($activity->objects) != 1) { - throw new Exception('Too many activity objects.'); - } - - $questionObj = $activity->objects[0]; - - if ($questinoObj->type != QnA_Question::OBJECT_TYPE) { - throw new Exception('Wrong type for object.'); - } - - $notice = null; - - switch ($activity->verb) { - case ActivityVerb::POST: - $notice = Question::saveNew( - $actor, - $questionObj->title - // null, - // $questionObj->summary, - // $options - ); - break; - case Answer::NORMAL: - $question = QnA_Question::staticGet('uri', $questionObj->id); - if (empty($question)) { - // FIXME: save the question - throw new Exception("Answer to unknown question."); - } - $notice = QnA_Answer::saveNew($actor, $question, $activity->verb, $options); - break; - default: - throw new Exception("Unknown verb for question"); - } - - return $notice; - } - - /** - * Turn a Notice into an activity object - * - * @param Notice $notice - * - * @return ActivityObject - */ - - function activityObjectFromNotice($notice) - { - $question = null; - - switch ($notice->object_type) { - case Question::OBJECT_TYPE: - $question = Qeustion::fromNotice($notice); - break; - case Answer::NORMAL: - case Answer::ANONYMOUS: - $answer = Answer::fromNotice($notice); - $question = $answer->getQuestion(); - break; - } - - if (empty($question)) { - throw new Exception("Unknown object type."); - } - - $notice = $question->getNotice(); - - if (empty($notice)) { - throw new Exception("Unknown question notice."); - } - - $obj = new ActivityObject(); - - $obj->id = $question->uri; - $obj->type = Question::OBJECT_TYPE; - $obj->title = $question->title; - $obj->link = $notice->bestUrl(); - - // XXX: probably need other stuff here - - return $obj; - } - - /** - * Change the verb on Answer notices - * - * @param Notice $notice - * - * @return ActivityObject - */ - - function onEndNoticeAsActivity($notice, &$act) { - switch ($notice->object_type) { - case Answer::NORMAL: - case Answer::ANONYMOUS: - $act->verb = $notice->object_type; - break; - } - return true; - } - - /** - * Custom HTML output for our notices - * - * @param Notice $notice - * @param HTMLOutputter $out - */ - - function showNotice($notice, $out) - { - switch ($notice->object_type) { - case Question::OBJECT_TYPE: - $this->showQuestionNotice($notice, $out); - break; - case Answer::NORMAL: - case Answer::ANONYMOUS: - case RSVP::POSSIBLE: - $this->showAnswerNotice($notice, $out); - break; - } - - $out->elementStart('div', array('class' => 'question')); - - $profile = $notice->getProfile(); - $avatar = $profile->getAvatar(AVATAR_MINI_SIZE); - - $out->element('img', - array('src' => ($avatar) ? - $avatar->displayUrl() : - Avatar::defaultImage(AVATAR_MINI_SIZE), - 'class' => 'avatar photo bookmark-avatar', - 'width' => AVATAR_MINI_SIZE, - 'height' => AVATAR_MINI_SIZE, - 'alt' => $profile->getBestName())); - - $out->raw(' '); // avoid   for AJAX XML compatibility - - $out->elementStart('span', 'vcard author'); // hack for belongsOnTimeline; JS needs to be able to find the author - $out->element('a', - array('class' => 'url', - 'href' => $profile->profileurl, - 'title' => $profile->getBestName()), - $profile->nickname); - $out->elementEnd('span'); - } - - function showAnswerNotice($notice, $out) - { - $rsvp = Answer::fromNotice($notice); - - $out->elementStart('div', 'answer'); - $out->raw($answer->asHTML()); - $out->elementEnd('div'); - return; - } - - function showQuestionNotice($notice, $out) - { - $profile = $notice->getProfile(); - $question = Question::fromNotice($notice); - - assert(!empty($question)); - assert(!empty($profile)); - - $out->elementStart('div', 'question-notice'); - - $out->elementStart('h3'); - - if (!empty($question->url)) { - $out->element('a', - array('href' => $question->url, - 'class' => 'question-title'), - $question->title); - } else { - $out->text($question->title); - } - - if (!empty($question->location)) { - $out->elementStart('div', 'question-location'); - $out->element('strong', null, _('Location: ')); - $out->element('span', 'location', $question->location); - $out->elementEnd('div'); - } - - if (!empty($question->description)) { - $out->elementStart('div', 'question-description'); - $out->element('strong', null, _('Description: ')); - $out->element('span', 'description', $question->description); - $out->elementEnd('div'); - } - - $answers = $question->getAnswers(); - - $out->elementStart('div', 'question-answers'); - $out->element('strong', null, _('Answer: ')); - $out->element('span', 'question-answer'); - - // XXX I dunno - - $out->elementEnd('div'); - - $user = common_current_user(); - - if (!empty($user)) { - $question = $question->getAnswer($user->getProfile()); - - if (empty($answer)) { - $form = new AnswerForm($question, $out); - } - - $form->show(); - } - - $out->elementEnd('div'); - } - - /** - * Form for our app - * - * @param HTMLOutputter $out - * @return Widget - */ - - function entryForm($out) - { - return new QuestionForm($out); - } - - /** - * When a notice is deleted, clean up related tables. - * - * @param Notice $notice - */ - - function deleteRelated($notice) - { - switch ($notice->object_type) { - case Question::OBJECT_TYPE: - common_log(LOG_DEBUG, "Deleting question from notice..."); - $question = Question::fromNotice($notice); - $question->delete(); - break; - case Answer::NORMAL: - case Answer::ANONYMOUS: - common_log(LOG_DEBUG, "Deleting answer from notice..."); - $answer = Answer::fromNotice($notice); - common_log(LOG_DEBUG, "to delete: $answer->id"); - $answer->delete(); - break; - default: - common_log(LOG_DEBUG, "Not deleting related, wtf..."); - } - } - - function onEndShowScripts($action) - { - // XXX maybe some cool shiz here - } - - function onEndShowStyles($action) - { - $action->cssLink($this->path('css/questionandanswer.css')); - return true; - } -} diff --git a/plugins/QnA/actions/newquestion.php b/plugins/QnA/actions/newquestion.php index 83b1022d6b..0a486dfa43 100644 --- a/plugins/QnA/actions/newquestion.php +++ b/plugins/QnA/actions/newquestion.php @@ -48,8 +48,8 @@ class NewquestionAction extends Action protected $user = null; protected $error = null; protected $complete = null; - - protected $question = null; + protected $title = null; + protected $description = null; /** * Returns the title of the action @@ -77,14 +77,19 @@ class NewquestionAction extends Action if (empty($this->user)) { // TRANS: Client exception thrown trying to create a Question while not logged in. - throw new ClientException(_m('You must be logged in to post a question.'), - 403); + throw new ClientException( + _m('You must be logged in to post a question.'), + 403 + ); } if ($this->isPost()) { $this->checkSessionToken(); } + $this->title = $this->trimmed('title'); + $this->description = $this->trimmed('description'); + return true; } @@ -119,14 +124,15 @@ class NewquestionAction extends Action StatusNet::setApi(true); } try { - if (empty($this->question)) { - // TRANS: Client exception thrown trying to create a Question without a question. - throw new ClientException(_m('Question must have a question.')); + if (empty($this->title)) { + // TRANS: Client exception thrown trying to create a question without a title. + throw new ClientException(_m('Question must have a title.')); } - $saved = Question::saveNew( + $saved = QnA_Question::saveNew( $this->user->getProfile(), - $this->question + $this->title, + $this->description ); } catch (ClientException $ce) { $this->error = $ce->getMessage(); @@ -140,7 +146,7 @@ class NewquestionAction extends Action $this->elementStart('html'); $this->elementStart('head'); // TRANS: Page title after sending a notice. - $this->element('title', null, _m('Notice posted')); + $this->element('title', null, _m('Question posted')); $this->elementEnd('head'); $this->elementStart('body'); $this->showNotice($saved); @@ -178,10 +184,10 @@ class NewquestionAction extends Action $this->element('p', 'error', $this->error); } - $form = new NewQuestionForm( + $form = new QuestionForm( $this, - $this->question, - $this->options + $this->title, + $this->description ); $form->show(); @@ -208,4 +214,3 @@ class NewquestionAction extends Action } } } - diff --git a/plugins/QnA/actions/qnavote.php b/plugins/QnA/actions/qnavote.php index 17e841e545..6c1b9f053e 100644 --- a/plugins/QnA/actions/qnavote.php +++ b/plugins/QnA/actions/qnavote.php @@ -3,7 +3,7 @@ * StatusNet - the distributed open-source microblogging tool * Copyright (C) 2011, StatusNet, Inc. * - * Answer a question + * Vote on a questino or answer * * PHP version 5 * @@ -20,7 +20,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * @category QuestonAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { } /** - * Answer a question + * Vote on a question or answer * * @category QnA * @package StatusNet @@ -43,13 +43,13 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class AnswerAction extends Action +class Qnavote extends Action { protected $user = null; protected $error = null; protected $complete = null; - protected $qustion = null; + protected $question = null; protected $answer = null; /** diff --git a/plugins/QnA/classes/QnA_Answer.php b/plugins/QnA/classes/QnA_Answer.php index d88e6bda41..102af70057 100644 --- a/plugins/QnA/classes/QnA_Answer.php +++ b/plugins/QnA/classes/QnA_Answer.php @@ -44,7 +44,7 @@ if (!defined('STATUSNET')) { */ class QnA_Answer extends Managed_DataObject { - CONST ANSWER = 'http://activityschema.org/object/answer'; + const OBJECT_TYPE = 'http://activityschema.org/object/answer'; public $__table = 'qna_answer'; // table name public $id; // char(36) primary key not null -> UUID @@ -162,6 +162,11 @@ class QnA_Answer extends Managed_DataObject return Question::staticGet('id', $this->question_id); } + static function fromNotice($notice) + { + return QnA_Answer::staticGet('uri', $notice->uri); + } + /** * Save a new answer notice * @@ -171,32 +176,32 @@ class QnA_Answer extends Managed_DataObject * * @return Notice saved notice */ - static function saveNew($profile, $question, $options=null) + static function saveNew($profile, $question, $options = null) { if (empty($options)) { $options = array(); } - $a = new Answer(); - $a->id = UUID::gen(); - $a->profile_id = $profile->id; - $a->question_id = $question->id; - $a->created = common_sql_now(); - $a->uri = common_local_url( + $answer = new Answer(); + $answer->id = UUID::gen(); + $answer->profile_id = $profile->id; + $answer->question_id = $question->id; + $answer->created = common_sql_now(); + $answer->uri = common_local_url( 'showanswer', - array('id' => $pr->id) + array('id' => $answer->id) ); - common_log(LOG_DEBUG, "Saving answer: $pr->id $pr->uri"); - $a->insert(); + common_log(LOG_DEBUG, "Saving answer: $answer->id, $answer->uri"); + $answer->insert(); // TRANS: Notice content answering a question. // TRANS: %s is the answer $content = sprintf( _m('answered "%s"'), - $answer + $answer->uri ); - $link = '' . htmlspecialchars($answer) . ''; + $link = '' . htmlspecialchars($answer) . ''; // TRANS: Rendered version of the notice content answering a question. // TRANS: %s a link to the question with question title as the link content. $rendered = sprintf(_m('answered "%s"'), $link); @@ -206,17 +211,17 @@ class QnA_Answer extends Managed_DataObject $options = array_merge( array( - 'urls' => array(), - 'rendered' => $rendered, - 'tags' => $tags, - 'replies' => $replies, - 'reply_to' => $question->getNotice()->id, - 'object_type' => QnA::ANSWER_OBJECT), + 'urls' => array(), + 'rendered' => $rendered, + 'tags' => $tags, + 'replies' => $replies, + 'reply_to' => $question->getNotice()->id, + 'object_type' => self::OBJECT_TYPE), $options ); if (!array_key_exists('uri', $options)) { - $options['uri'] = $pr->uri; + $options['uri'] = $answer->uri; } $saved = Notice::saveNew( diff --git a/plugins/QnA/classes/QnA_Question.php b/plugins/QnA/classes/QnA_Question.php index 1a298ae4e9..308e87b99f 100644 --- a/plugins/QnA/classes/QnA_Question.php +++ b/plugins/QnA/classes/QnA_Question.php @@ -45,9 +45,8 @@ if (!defined('STATUSNET')) { class QnA_Question extends Managed_DataObject { - - const QUESTION = 'http://activityschema.org/object/question'; - + const OBJECT_TYPE = 'http://activityschema.org/object/question'; + public $__table = 'qna_question'; // table name public $id; // char(36) primary key not null -> UUID public $uri; @@ -99,22 +98,22 @@ class QnA_Question extends Managed_DataObject 'description' => 'Per-notice question data for QNA plugin', 'fields' => array( 'id' => array( - 'type' => 'char', - 'length' => 36, - 'not null' => true, + 'type' => 'char', + 'length' => 36, + 'not null' => true, 'description' => 'UUID' ), 'uri' => array( - 'type' => 'varchar', - 'length' => 255, + 'type' => 'varchar', + 'length' => 255, 'not null' => true ), 'profile_id' => array('type' => 'int'), 'title' => array('type' => 'text'), - 'closed' => array('type' => 'int', size => 'tiny'), + 'closed' => array('type' => 'int', 'size' => 'tiny'), 'description' => array('type' => 'text'), 'created' => array( - 'type' => 'datetime', + 'type' => 'datetime', 'not null' => true ), ), @@ -174,6 +173,12 @@ class QnA_Question extends Managed_DataObject return $a-count(); } + static function fromNotice($notice) + { + common_debug('xxxxxxxxxxxxxxx notice-uri = ' . $notice->uri); + return QnA_Question::staticGet('uri', $notice->uri); + } + /** * Save a new question notice * @@ -185,7 +190,7 @@ class QnA_Question extends Managed_DataObject * * @return Notice saved notice */ - static function saveNew($profile, $question, $title, $description, $options = array()) + static function saveNew($profile, $title, $description, $options = array()) { $q = new QnA_Question(); @@ -219,7 +224,7 @@ class QnA_Question extends Managed_DataObject $title, $q->uri ); - + $link = '' . htmlspecialchars($title) . ''; // TRANS: Rendered version of the notice content creating a question. // TRANS: %s a link to the question as link description. @@ -234,13 +239,13 @@ class QnA_Question extends Managed_DataObject 'rendered' => $rendered, 'tags' => $tags, 'replies' => $replies, - 'object_type' => QnAPlugin::QUESTION_OBJECT + 'object_type' => self::OBJECT_TYPE ), $options ); if (!array_key_exists('uri', $options)) { - $options['uri'] = $p->uri; + $options['uri'] = $q->uri; } $saved = Notice::saveNew( diff --git a/plugins/QnA/classes/QnA_Vote.php b/plugins/QnA/classes/QnA_Vote.php index ec2e75afbb..ad579666b8 100644 --- a/plugins/QnA/classes/QnA_Vote.php +++ b/plugins/QnA/classes/QnA_Vote.php @@ -47,11 +47,11 @@ class QnA_Vote extends Managed_DataObject const UP = 'http://activitystrea.ms/schema/1.0/like'; const DOWN = 'http://activityschema.org/object/dislike'; // Gar! - public $__table = 'qa_vote'; // table name + public $__table = 'qna_vote'; // table name public $id; // char(36) primary key not null -> UUID public $question_id; // char(36) -> question.id UUID public $answer_id; // char(36) -> question.id UUID - public $type // tinyint -> vote: up (1) or down (-1) + public $type; // tinyint -> vote: up (1) or down (-1) public $profile_id; // int -> question.id public $created; // datetime diff --git a/plugins/QnA/lib/answerform.php b/plugins/QnA/lib/answerform.php index 554f698d99..d4f28bb6d2 100644 --- a/plugins/QnA/lib/answerform.php +++ b/plugins/QnA/lib/answerform.php @@ -103,7 +103,7 @@ class AnswerForm extends Form $out = $this->out; $id = "question-" . $question->id; - $out->element('p', 'answer', $question->question); + $out->element('p', 'answer', $question->title); $out->element('input', array('type' => 'text', 'name' => 'answer')); } diff --git a/plugins/QnA/lib/questionform.php b/plugins/QnA/lib/questionform.php index 4f9ea6d808..a26bbb17be 100644 --- a/plugins/QnA/lib/questionform.php +++ b/plugins/QnA/lib/questionform.php @@ -20,7 +20,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * @category QuestonAndAnswer + * @category QnA * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. @@ -44,9 +44,10 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class NewQuestionForm extends Form +class QuestionForm extends Form { - protected $question = null; + protected $title; + protected $description; /** * Construct a new question form @@ -55,9 +56,11 @@ class NewQuestionForm extends Form * * @return void */ - function __construct($out=null, $question=null, $options=null) + function __construct($out = null, $title = null, $description = null, $options = null) { parent::__construct($out); + $this->title = $title; + $this->description = $description; } /** @@ -101,12 +104,20 @@ class NewQuestionForm extends Form $this->out->elementStart('ul', 'form_data'); $this->li(); - $this->out->input('question', - // TRANS: Field label on the page to create a question. - _m('Question'), - $this->question, - // TRANS: Field title on the page to create a question. - _m('What is your question?')); + $this->out->input( + 'title', + _m('Title'), + $this->title, + _m('Title of your question') + ); + $this->unli(); + $this->li(); + $this->out->textarea( + 'description', + _m('Description'), + $this->description, + _m('Your question in detail') + ); $this->unli(); $this->out->elementEnd('ul'); From b0ed4cb89ab35ad82ebdba9c5529bd50b8138846 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 21 Mar 2011 16:51:38 -0700 Subject: [PATCH 05/52] * Move stuff around again * Make answers save --- plugins/QnA/QnAPlugin.php | 465 ++++++++++++++++++ .../actions/{answer.php => qnanewanswer.php} | 37 +- .../{newquestion.php => qnanewquestion.php} | 2 +- .../{showanswer.php => qnashowanswer.php} | 2 +- .../{showquestion.php => qnashowquestion.php} | 2 +- plugins/QnA/actions/qnavote.php | 4 +- plugins/QnA/classes/QnA_Answer.php | 25 +- .../lib/{answerform.php => qnaanswerform.php} | 4 +- .../{questionform.php => qnaquestionform.php} | 4 +- .../QnA/lib/{voteform.php => qnavoteform.php} | 6 +- 10 files changed, 511 insertions(+), 40 deletions(-) create mode 100644 plugins/QnA/QnAPlugin.php rename plugins/QnA/actions/{answer.php => qnanewanswer.php} (85%) rename plugins/QnA/actions/{newquestion.php => qnanewquestion.php} (99%) rename plugins/QnA/actions/{showanswer.php => qnashowanswer.php} (98%) rename plugins/QnA/actions/{showquestion.php => qnashowquestion.php} (98%) rename plugins/QnA/lib/{answerform.php => qnaanswerform.php} (96%) rename plugins/QnA/lib/{questionform.php => qnaquestionform.php} (97%) rename plugins/QnA/lib/{voteform.php => qnavoteform.php} (95%) diff --git a/plugins/QnA/QnAPlugin.php b/plugins/QnA/QnAPlugin.php new file mode 100644 index 0000000000..ba3b6e329a --- /dev/null +++ b/plugins/QnA/QnAPlugin.php @@ -0,0 +1,465 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Question and Answer plugin + * + * @category Plugin + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnAPlugin extends MicroAppPlugin +{ + /** + * Set up our tables (question and answer) + * + * @see Schema + * @see ColumnDef + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onCheckSchema() + { + $schema = Schema::get(); + + $schema->ensureTable('qna_question', QnA_Question::schemaDef()); + $schema->ensureTable('qna_answer', QnA_Answer::schemaDef()); + $schema->ensureTable('qna_vote', QnA_Vote::schemaDef()); + + return true; + } + + /** + * Load related modules when needed + * + * @param string $cls Name of the class to be loaded + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onAutoload($cls) + { + $dir = dirname(__FILE__); + + switch ($cls) + { + case 'QnanewquestionAction': + case 'QnanewanswerAction': + case 'QnashowquestionAction': + case 'QnashowanswerAction': + case 'QnavoteAction': + include_once $dir . '/actions/' + . strtolower(mb_substr($cls, 0, -6)) . '.php'; + return false; + case 'QnaquestionForm': + case 'QnaanswerForm': + case 'QnavoteForm'; + include_once $dir . '/lib/' . strtolower($cls).'.php'; + break; + case 'QnA_Question': + case 'QnA_Answer': + case 'QnA_Vote': + include_once $dir . '/classes/' . $cls.'.php'; + return false; + break; + default: + return true; + } + } + + /** + * Map URLs to actions + * + * @param Net_URL_Mapper $m path-to-action mapper + * + * @return boolean hook value; true means continue processing, false means stop. + */ + + function onRouterInitialized($m) + { + $UUIDregex = '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'; + + $m->connect( + 'main/qna/newquestion', + array('action' => 'qnanewquestion') + ); + $m->connect( + 'main/qna/newanswer/:id', + array('action' => 'qnanewanswer'), + array('id' => $UUIDregex) + ); + $m->connect( + 'question/vote/:id', + array('action' => 'qnavote', 'type' => 'question'), + array('id' => $UUIDregex) + ); + $m->connect( + 'question/:id', + array('action' => 'qnashowquestion'), + array('id' => $UUIDregex) + ); + $m->connect( + 'answer/vote/:id', + array('action' => 'qnavote', 'type' => 'answer'), + array('id' => $UUIDregex) + ); + $m->connect( + 'answer/:id', + array('action' => 'qnashowanswer'), + array('id' => $UUIDregex) + ); + + return true; + } + + function onPluginVersion(&$versions) + { + $versions[] = array( + 'name' => 'QnA', + 'version' => STATUSNET_VERSION, + 'author' => 'Zach Copley', + 'homepage' => 'http://status.net/wiki/Plugin:QnA', + 'description' => + _m('Question and Answers micro-app.') + ); + return true; + } + + function appTitle() { + return _m('Question'); + } + + function tag() { + return 'question'; + } + + function types() { + return array( + QnA_Question::OBJECT_TYPE, + QnA_Answer::OBJECT_TYPE + ); + } + + /** + * Given a parsed ActivityStreams activity, save it into a notice + * and other data structures. + * + * @param Activity $activity + * @param Profile $actor + * @param array $options=array() + * + * @return Notice the resulting notice + */ + function saveNoticeFromActivity($activity, $actor, $options=array()) + { + if (count($activity->objects) != 1) { + throw new Exception('Too many activity objects.'); + } + + $questionObj = $activity->objects[0]; + + if ($questinoObj->type != QnA_Question::OBJECT_TYPE) { + throw new Exception('Wrong type for object.'); + } + + $notice = null; + + switch ($activity->verb) { + case ActivityVerb::POST: + $notice = Question::saveNew( + $actor, + $questionObj->title + // null, + // $questionObj->summary, + // $options + ); + break; + case Answer::NORMAL: + $question = QnA_Question::staticGet('uri', $questionObj->id); + if (empty($question)) { + // FIXME: save the question + throw new Exception("Answer to unknown question."); + } + $notice = QnA_Answer::saveNew($actor, $question, $activity->verb, $options); + break; + default: + throw new Exception("Unknown verb for question"); + } + + return $notice; + } + + /** + * Turn a Notice into an activity object + * + * @param Notice $notice + * + * @return ActivityObject + */ + + function activityObjectFromNotice($notice) + { + $question = null; + + switch ($notice->object_type) { + case QnA_Question::OBJECT_TYPE: + $question = QnA_Question::fromNotice($notice); + break; + case QnA_Answer::OBJECT_TYPE: + $answer = QnA_Answer::fromNotice($notice); + $question = $answer->getQuestion(); + break; + } + + if (empty($question)) { + throw new Exception("Unknown object type."); + } + + $notice = $question->getNotice(); + + if (empty($notice)) { + throw new Exception("Unknown question notice."); + } + + $obj = new ActivityObject(); + + $obj->id = $question->uri; + $obj->type = QnA_Question::OBJECT_TYPE; + $obj->title = $question->title; + $obj->link = $notice->bestUrl(); + + // XXX: probably need other stuff here + + return $obj; + } + + /** + * Change the verb on Answer notices + * + * @param Notice $notice + * + * @return ActivityObject + */ + + function onEndNoticeAsActivity($notice, &$act) { + switch ($notice->object_type) { + case Answer::NORMAL: + case Answer::ANONYMOUS: + $act->verb = $notice->object_type; + break; + } + return true; + } + + /** + * Custom HTML output for our notices + * + * @param Notice $notice + * @param HTMLOutputter $out + */ + + function showNotice($notice, $out) + { + switch ($notice->object_type) { + case QnA_Question::OBJECT_TYPE: + $this->showQuestionNotice($notice, $out); + break; + case QnA_Answer::OBJECT_TYPE: + $this->showAnswerNotice($notice, $out); + break; + } + + // bad craziness + $out->elementStart('div', array('class' => 'question')); + + $profile = $notice->getProfile(); + $avatar = $profile->getAvatar(AVATAR_MINI_SIZE); + + $out->element( + 'img', + array( + 'src' => ($avatar) + ? $avatar->displayUrl() + : Avatar::defaultImage(AVATAR_MINI_SIZE), + 'class' => 'avatar photo question-avatar', + 'width' => AVATAR_MINI_SIZE, + 'height' => AVATAR_MINI_SIZE, + 'alt' => $profile->getBestName() + ) + ); + + $out->raw(' '); // avoid   for AJAX XML compatibility + + // hack for belongsOnTimeline; JS needs to be able to find the author + $out->elementStart('span', 'vcard author'); + $out->element( + 'a', + array( + 'class' => 'url', + 'href' => $profile->profileurl, + 'title' => $profile->getBestName() + ), + $profile->nickname + ); + + $out->elementEnd('span'); + } + + function showAnswerNotice($notice, $out) + { + $answer = QnA_Answer::fromNotice($notice); + + assert(!empty($answer)); + + $out->elementStart('div', 'answer'); + $out->raw($answer->asHTML()); + $out->elementEnd('div'); + } + + function showQuestionNotice($notice, $out) + { + $profile = $notice->getProfile(); + $question = QnA_Question::fromNotice($notice); + + assert(!empty($question)); + assert(!empty($profile)); + + $out->elementStart('div', 'question-notice'); + + $out->elementStart('h3'); + + if (!empty($question->url)) { + $out->element( + 'a', + array( + 'href' => $question->url, + 'class' => 'question-title' + ), + $question->title + ); + } else { + $out->text($question->title); + } + + if (!empty($question->location)) { + $out->elementStart('div', 'question-location'); + $out->element('strong', null, _('Location: ')); + $out->element('span', 'location', $question->location); + $out->elementEnd('div'); + } + + if (!empty($question->description)) { + $out->elementStart('div', 'question-description'); + $out->element('strong', null, _('Description: ')); + $out->element('span', 'description', $question->description); + $out->elementEnd('div'); + } + + //$answers = $question->getAnswers(); + + $out->elementStart('div', 'question-answers'); + $out->element('strong', null, _('Answer: ')); + $out->element('span', 'question-answer'); + + $out->elementEnd('div'); + + $user = common_current_user(); + + if (!empty($user)) { + + $answer = $question->getAnswer($user->getProfile()); + + if (empty($answer)) { + $form = new QnaanswerForm($question, $out); + $form->show(); + } + + + } + + $out->elementEnd('div'); + } + + /** + * Form for our app + * + * @param HTMLOutputter $out + * @return Widget + */ + + function entryForm($out) + { + return new QnaquestionForm($out); + } + + /** + * When a notice is deleted, clean up related tables. + * + * @param Notice $notice + */ + + function deleteRelated($notice) + { + switch ($notice->object_type) { + case QnA_Question::OBJECT_TYPE: + common_log(LOG_DEBUG, "Deleting question from notice..."); + $question = QnA_Question::fromNotice($notice); + $question->delete(); + break; + case QnA_Answer::OBJECT_TYPE: + common_log(LOG_DEBUG, "Deleting answer from notice..."); + $answer = QnA_Answer::fromNotice($notice); + common_log(LOG_DEBUG, "to delete: $answer->id"); + $answer->delete(); + break; + default: + common_log(LOG_DEBUG, "Not deleting related, wtf..."); + } + } + + function onEndShowScripts($action) + { + // XXX maybe some cool shiz here + } + + function onEndShowStyles($action) + { + $action->cssLink($this->path('css/qna.css')); + return true; + } +} diff --git a/plugins/QnA/actions/answer.php b/plugins/QnA/actions/qnanewanswer.php similarity index 85% rename from plugins/QnA/actions/answer.php rename to plugins/QnA/actions/qnanewanswer.php index 17e841e545..10b1046c3e 100644 --- a/plugins/QnA/actions/answer.php +++ b/plugins/QnA/actions/qnanewanswer.php @@ -43,14 +43,14 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class AnswerAction extends Action +class QnanewanswerAction extends Action { protected $user = null; protected $error = null; protected $complete = null; - protected $qustion = null; - protected $answer = null; + protected $question = null; + protected $answerText = null; /** * Returns the title of the action @@ -81,8 +81,10 @@ class AnswerAction extends Action if (empty($this->user)) { // TRANS: Client exception thrown trying to answer a question while not logged in. - throw new ClientException(_m("You must be logged in to answer to a question."), - 403); + throw new ClientException( + _m("You must be logged in to answer to a question."), + 403 + ); } if ($this->isPost()) { @@ -90,15 +92,18 @@ class AnswerAction extends Action } $id = $this->trimmed('id'); - $this->question = Question::staticGet('id', $id); + $this->question = QnA_Question::staticGet('id', $id); + if (empty($this->question)) { // TRANS: Client exception thrown trying to respond to a non-existing question. - throw new ClientException(_m('Invalid or missing question.'), 404); + throw new ClientException( + _m('Invalid or missing question.'), + 404 + ); } - $answer = $this->trimmed('answer'); - - + $this->answerText = $this->trimmed('answer'); + return true; } @@ -114,7 +119,7 @@ class AnswerAction extends Action parent::handle($argarray); if ($this->isPost()) { - $this->answer(); + $this->newAnswer(); } else { $this->showPage(); } @@ -127,13 +132,13 @@ class AnswerAction extends Action * * @return void */ - function answer() + function newAnswer() { try { - $notice = Answer::saveNew( + $notice = QnA_Answer::saveNew( $this->user->getProfile(), $this->question, - $this->answer + $this->answerText ); } catch (ClientException $ce) { $this->error = $ce->getMessage(); @@ -150,7 +155,7 @@ class AnswerAction extends Action $this->element('title', null, _m('Answers')); $this->elementEnd('head'); $this->elementStart('body'); - $form = new Answer($this->question, $this); + $form = new QnA_Answer($this->question, $this); $form->show(); $this->elementEnd('body'); $this->elementEnd('html'); @@ -170,7 +175,7 @@ class AnswerAction extends Action $this->element('p', 'error', $this->error); } - $form = new AnswerForm($this->question, $this); + $form = new QnaanswerForm($this->question, $this); $form->show(); diff --git a/plugins/QnA/actions/newquestion.php b/plugins/QnA/actions/qnanewquestion.php similarity index 99% rename from plugins/QnA/actions/newquestion.php rename to plugins/QnA/actions/qnanewquestion.php index 0a486dfa43..8682f8dd47 100644 --- a/plugins/QnA/actions/newquestion.php +++ b/plugins/QnA/actions/qnanewquestion.php @@ -43,7 +43,7 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class NewquestionAction extends Action +class QnanewquestionAction extends Action { protected $user = null; protected $error = null; diff --git a/plugins/QnA/actions/showanswer.php b/plugins/QnA/actions/qnashowanswer.php similarity index 98% rename from plugins/QnA/actions/showanswer.php rename to plugins/QnA/actions/qnashowanswer.php index 7686d6d566..68baadfba8 100644 --- a/plugins/QnA/actions/showanswer.php +++ b/plugins/QnA/actions/qnashowanswer.php @@ -45,7 +45,7 @@ if (!defined('STATUSNET')) { * @link http://status.net/ */ -class ShowAnswerAction extends ShownoticeAction +class QnashowanswerAction extends ShownoticeAction { protected $answer = null; diff --git a/plugins/QnA/actions/showquestion.php b/plugins/QnA/actions/qnashowquestion.php similarity index 98% rename from plugins/QnA/actions/showquestion.php rename to plugins/QnA/actions/qnashowquestion.php index 41c1d809fe..e563753a01 100644 --- a/plugins/QnA/actions/showquestion.php +++ b/plugins/QnA/actions/qnashowquestion.php @@ -44,7 +44,7 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class ShowquestionAction extends ShownoticeAction +class QnashowquestionAction extends ShownoticeAction { protected $question = null; diff --git a/plugins/QnA/actions/qnavote.php b/plugins/QnA/actions/qnavote.php index 6c1b9f053e..94aec41c5b 100644 --- a/plugins/QnA/actions/qnavote.php +++ b/plugins/QnA/actions/qnavote.php @@ -150,7 +150,7 @@ class Qnavote extends Action $this->element('title', null, _m('Answers')); $this->elementEnd('head'); $this->elementStart('body'); - $form = new Answer($this->question, $this); + $form = new QnA_Answer($this->question, $this); $form->show(); $this->elementEnd('body'); $this->elementEnd('html'); @@ -170,7 +170,7 @@ class Qnavote extends Action $this->element('p', 'error', $this->error); } - $form = new AnswerForm($this->question, $this); + $form = new QnaanswerForm($this->question, $this); $form->show(); diff --git a/plugins/QnA/classes/QnA_Answer.php b/plugins/QnA/classes/QnA_Answer.php index 102af70057..ff11ff8f14 100644 --- a/plugins/QnA/classes/QnA_Answer.php +++ b/plugins/QnA/classes/QnA_Answer.php @@ -45,7 +45,7 @@ if (!defined('STATUSNET')) { class QnA_Answer extends Managed_DataObject { const OBJECT_TYPE = 'http://activityschema.org/object/answer'; - + public $__table = 'qna_answer'; // table name public $id; // char(36) primary key not null -> UUID public $question_id; // char(36) -> question.id UUID @@ -95,19 +95,19 @@ class QnA_Answer extends Managed_DataObject 'description' => 'Record of answers to questions', 'fields' => array( 'id' => array( - 'type' => 'char', - 'length' => 36, + 'type' => 'char', + 'length' => 36, 'not null' => true, 'description' => 'UUID of the response'), 'uri' => array( - 'type' => 'varchar', - 'length' => 255, - 'not null' => true, + 'type' => 'varchar', + 'length' => 255, + 'not null' => true, 'description' => 'UUID to the answer notice' ), 'question_id' => array( - 'type' => 'char', - 'length' => 36, - 'not null' => true, + 'type' => 'char', + 'length' => 36, + 'not null' => true, 'description' => 'UUID of question being responded to' ), 'best' => array('type' => 'int', 'size' => 'tiny'), @@ -164,7 +164,7 @@ class QnA_Answer extends Managed_DataObject static function fromNotice($notice) { - return QnA_Answer::staticGet('uri', $notice->uri); + return self::staticGet('uri', $notice->uri); } /** @@ -182,7 +182,7 @@ class QnA_Answer extends Managed_DataObject $options = array(); } - $answer = new Answer(); + $answer = new QnA_Answer(); $answer->id = UUID::gen(); $answer->profile_id = $profile->id; $answer->question_id = $question->id; @@ -191,7 +191,7 @@ class QnA_Answer extends Managed_DataObject 'showanswer', array('id' => $answer->id) ); - + common_log(LOG_DEBUG, "Saving answer: $answer->id, $answer->uri"); $answer->insert(); @@ -201,6 +201,7 @@ class QnA_Answer extends Managed_DataObject _m('answered "%s"'), $answer->uri ); + $link = '' . htmlspecialchars($answer) . ''; // TRANS: Rendered version of the notice content answering a question. // TRANS: %s a link to the question with question title as the link content. diff --git a/plugins/QnA/lib/answerform.php b/plugins/QnA/lib/qnaanswerform.php similarity index 96% rename from plugins/QnA/lib/answerform.php rename to plugins/QnA/lib/qnaanswerform.php index d4f28bb6d2..f89f6c7889 100644 --- a/plugins/QnA/lib/answerform.php +++ b/plugins/QnA/lib/qnaanswerform.php @@ -44,7 +44,7 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class AnswerForm extends Form +class QnaanswerForm extends Form { protected $question; @@ -89,7 +89,7 @@ class AnswerForm extends Form */ function action() { - return common_local_url('answer', array('id' => $this->question->id)); + return common_local_url('qnanewanswer', array('id' => $this->question->id)); } /** diff --git a/plugins/QnA/lib/questionform.php b/plugins/QnA/lib/qnaquestionform.php similarity index 97% rename from plugins/QnA/lib/questionform.php rename to plugins/QnA/lib/qnaquestionform.php index a26bbb17be..9d0c2aad59 100644 --- a/plugins/QnA/lib/questionform.php +++ b/plugins/QnA/lib/qnaquestionform.php @@ -44,7 +44,7 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class QuestionForm extends Form +class QnaquestionForm extends Form { protected $title; protected $description; @@ -90,7 +90,7 @@ class QuestionForm extends Form */ function action() { - return common_local_url('newquestion'); + return common_local_url('qnanewquestion'); } /** diff --git a/plugins/QnA/lib/voteform.php b/plugins/QnA/lib/qnavoteform.php similarity index 95% rename from plugins/QnA/lib/voteform.php rename to plugins/QnA/lib/qnavoteform.php index 554f698d99..f6976c8834 100644 --- a/plugins/QnA/lib/voteform.php +++ b/plugins/QnA/lib/qnavoteform.php @@ -44,7 +44,7 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class AnswerForm extends Form +class QnavoteForm extends Form { protected $question; @@ -89,7 +89,7 @@ class AnswerForm extends Form */ function action() { - return common_local_url('answer', array('id' => $this->question->id)); + return common_local_url('qnavote', array('id' => $this->question->id)); } /** @@ -104,7 +104,7 @@ class AnswerForm extends Form $id = "question-" . $question->id; $out->element('p', 'answer', $question->question); - $out->element('input', array('type' => 'text', 'name' => 'answer')); + $out->element('input', array('type' => 'text', 'name' => 'vote')); } /** From 7f4bd6b69f280810b793c0154d36176b3ed48e15 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 21 Mar 2011 20:57:19 -0700 Subject: [PATCH 06/52] Work on QnA notice display -- in progress --- plugins/QnA/QnAPlugin.php | 172 ++++++++---------------- plugins/QnA/actions/qnashowanswer.php | 10 +- plugins/QnA/actions/qnashowquestion.php | 4 +- plugins/QnA/actions/qnavote.php | 2 +- plugins/QnA/classes/QnA_Answer.php | 129 +++++++++++++++--- plugins/QnA/classes/QnA_Question.php | 5 +- plugins/QnA/lib/qnaansweredform.php | 122 +++++++++++++++++ 7 files changed, 298 insertions(+), 146 deletions(-) create mode 100644 plugins/QnA/lib/qnaansweredform.php diff --git a/plugins/QnA/QnAPlugin.php b/plugins/QnA/QnAPlugin.php index ba3b6e329a..992641b18e 100644 --- a/plugins/QnA/QnAPlugin.php +++ b/plugins/QnA/QnAPlugin.php @@ -88,7 +88,8 @@ class QnAPlugin extends MicroAppPlugin return false; case 'QnaquestionForm': case 'QnaanswerForm': - case 'QnavoteForm'; + case 'QnaansweredForm': + case 'QnavoteForm': include_once $dir . '/lib/' . strtolower($cls).'.php'; break; case 'QnA_Question': @@ -201,24 +202,23 @@ class QnAPlugin extends MicroAppPlugin switch ($activity->verb) { case ActivityVerb::POST: - $notice = Question::saveNew( + $notice = QnA_Question::saveNew( $actor, - $questionObj->title - // null, - // $questionObj->summary, - // $options + $questionObj->title, + $questionObj->summary, + $options ); break; - case Answer::NORMAL: + case Answer::ObjectType: $question = QnA_Question::staticGet('uri', $questionObj->id); if (empty($question)) { // FIXME: save the question throw new Exception("Answer to unknown question."); } - $notice = QnA_Answer::saveNew($actor, $question, $activity->verb, $options); + $notice = QnA_Answer::saveNew($actor, $question, $options); break; default: - throw new Exception("Unknown verb for question"); + throw new Exception("Unknown object type received by QnA Plugin"); } return $notice; @@ -292,127 +292,67 @@ class QnAPlugin extends MicroAppPlugin * @param Notice $notice * @param HTMLOutputter $out */ - function showNotice($notice, $out) { switch ($notice->object_type) { case QnA_Question::OBJECT_TYPE: - $this->showQuestionNotice($notice, $out); - break; + return $this->showNoticeQuestion($notice, $out); case QnA_Answer::OBJECT_TYPE: - $this->showAnswerNotice($notice, $out); - break; - } - - // bad craziness - $out->elementStart('div', array('class' => 'question')); - - $profile = $notice->getProfile(); - $avatar = $profile->getAvatar(AVATAR_MINI_SIZE); - - $out->element( - 'img', - array( - 'src' => ($avatar) - ? $avatar->displayUrl() - : Avatar::defaultImage(AVATAR_MINI_SIZE), - 'class' => 'avatar photo question-avatar', - 'width' => AVATAR_MINI_SIZE, - 'height' => AVATAR_MINI_SIZE, - 'alt' => $profile->getBestName() - ) - ); - - $out->raw(' '); // avoid   for AJAX XML compatibility - - // hack for belongsOnTimeline; JS needs to be able to find the author - $out->elementStart('span', 'vcard author'); - $out->element( - 'a', - array( - 'class' => 'url', - 'href' => $profile->profileurl, - 'title' => $profile->getBestName() - ), - $profile->nickname - ); - - $out->elementEnd('span'); - } - - function showAnswerNotice($notice, $out) - { - $answer = QnA_Answer::fromNotice($notice); - - assert(!empty($answer)); - - $out->elementStart('div', 'answer'); - $out->raw($answer->asHTML()); - $out->elementEnd('div'); - } - - function showQuestionNotice($notice, $out) - { - $profile = $notice->getProfile(); - $question = QnA_Question::fromNotice($notice); - - assert(!empty($question)); - assert(!empty($profile)); - - $out->elementStart('div', 'question-notice'); - - $out->elementStart('h3'); - - if (!empty($question->url)) { - $out->element( - 'a', - array( - 'href' => $question->url, - 'class' => 'question-title' - ), - $question->title + return $this->showNoticeAnswer($notice, $out); + default: + // TRANS: Exception thrown when performing an unexpected action on a question. + // TRANS: %s is the unpexpected object type. + throw new Exception( + sprintf( + _m('Unexpected type for QnA plugin: %s.'), + $notice->object_type + ) ); - } else { - $out->text($question->title); } - - if (!empty($question->location)) { - $out->elementStart('div', 'question-location'); - $out->element('strong', null, _('Location: ')); - $out->element('span', 'location', $question->location); - $out->elementEnd('div'); - } - - if (!empty($question->description)) { - $out->elementStart('div', 'question-description'); - $out->element('strong', null, _('Description: ')); - $out->element('span', 'description', $question->description); - $out->elementEnd('div'); - } - - //$answers = $question->getAnswers(); - - $out->elementStart('div', 'question-answers'); - $out->element('strong', null, _('Answer: ')); - $out->element('span', 'question-answer'); - - $out->elementEnd('div'); - + } + + function showNoticeQuestion($notice, $out) + { $user = common_current_user(); - if (!empty($user)) { + // @hack we want regular rendering, then just add stuff after that + $nli = new NoticeListItem($notice, $out); + $nli->showNotice(); - $answer = $question->getAnswer($user->getProfile()); - - if (empty($answer)) { - $form = new QnaanswerForm($question, $out); + $out->elementStart('div', array('class' => 'entry-content question-content')); + $question = QnA_Question::getByNotice($notice); + + if ($question) { + if ($user) { + $profile = $user->getProfile(); + $answer = $question->getAnswer($profile); + if ($answer) { + // User has already answer; show the results. + $form = new QnaansweredForm($answer, $out); + } else { + $form = new QnaanswerForm($question, $out); + } $form->show(); } - - + } else { + $out->text(_m('Question data is missing')); } - $out->elementEnd('div'); + + // @fixme + $out->elementStart('div', array('class' => 'entry-content')); + } + + function showNoticeAnswer($notice, $out) + { + $user = common_current_user(); + + // @hack we want regular rendering, then just add stuff after that + $nli = new NoticeListItem($notice, $out); + $nli->showNotice(); + + // @fixme + $out->elementStart('div', array('class' => 'entry-content')); } /** diff --git a/plugins/QnA/actions/qnashowanswer.php b/plugins/QnA/actions/qnashowanswer.php index 68baadfba8..9721f22da3 100644 --- a/plugins/QnA/actions/qnashowanswer.php +++ b/plugins/QnA/actions/qnashowanswer.php @@ -63,7 +63,7 @@ class QnashowanswerAction extends ShownoticeAction $this->id = $this->trimmed('id'); - $this->answer = Answer::staticGet('id', $this->id); + $this->answer = QnA_Answer::staticGet('id', $this->id); if (empty($this->answer)) { throw new ClientException(_('No such answer.'), 404); @@ -117,9 +117,11 @@ class QnashowanswerAction extends ShownoticeAction function showPageTitle() { $this->elementStart('h1'); - $this->element('a', - array('href' => $this->answer->url), - $this->asnwer->title); + $this->element( + 'a', + array('href' => $this->answer->url), + $this->answer->title + ); $this->elementEnd('h1'); } } diff --git a/plugins/QnA/actions/qnashowquestion.php b/plugins/QnA/actions/qnashowquestion.php index e563753a01..6719125354 100644 --- a/plugins/QnA/actions/qnashowquestion.php +++ b/plugins/QnA/actions/qnashowquestion.php @@ -61,7 +61,7 @@ class QnashowquestionAction extends ShownoticeAction $this->id = $this->trimmed('id'); - $this->question = Question::staticGet('id', $this->id); + $this->question = QnA_Question::staticGet('id', $this->id); if (empty($this->question)) { // TRANS: Client exception thrown trying to view a non-existing question. @@ -108,7 +108,7 @@ class QnashowquestionAction extends ShownoticeAction // TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. return sprintf(_m('%1$s\'s question: %2$s'), $this->user->nickname, - $this->question->question); + $this->question->title); } /** diff --git a/plugins/QnA/actions/qnavote.php b/plugins/QnA/actions/qnavote.php index 94aec41c5b..8098cb87d0 100644 --- a/plugins/QnA/actions/qnavote.php +++ b/plugins/QnA/actions/qnavote.php @@ -90,7 +90,7 @@ class Qnavote extends Action } $id = $this->trimmed('id'); - $this->question = Question::staticGet('id', $id); + $this->question = QnA_Question::staticGet('id', $id); if (empty($this->question)) { // TRANS: Client exception thrown trying to respond to a non-existing question. throw new ClientException(_m('Invalid or missing question.'), 404); diff --git a/plugins/QnA/classes/QnA_Answer.php b/plugins/QnA/classes/QnA_Answer.php index ff11ff8f14..57c08afe4e 100644 --- a/plugins/QnA/classes/QnA_Answer.php +++ b/plugins/QnA/classes/QnA_Answer.php @@ -50,7 +50,9 @@ class QnA_Answer extends Managed_DataObject public $id; // char(36) primary key not null -> UUID public $question_id; // char(36) -> question.id UUID public $profile_id; // int -> question.id - public $best; // (int) boolean -> whether the question asker has marked this as the best answer + public $best; // (boolean) int -> whether the question asker has marked this as the best answer + public $revisions; // int -> count of revisions to this answer + public $text; // text -> response text public $created; // datetime /** @@ -105,14 +107,15 @@ class QnA_Answer extends Managed_DataObject 'description' => 'UUID to the answer notice' ), 'question_id' => array( - 'type' => 'char', - 'length' => 36, - 'not null' => true, + 'type' => 'char', + 'length' => 36, + 'not null' => true, 'description' => 'UUID of question being responded to' ), - 'best' => array('type' => 'int', 'size' => 'tiny'), - 'profile_id' => array('type' => 'int'), - 'created' => array('type' => 'datetime', 'not null' => true), + 'best' => array('type' => 'int', 'size' => 'tiny'), + 'revisions' => array('type' => 'int'), + 'profile_id' => array('type' => 'int'), + 'created' => array('type' => 'datetime', 'not null' => true), ), 'primary key' => array('id'), 'unique keys' => array( @@ -134,7 +137,11 @@ class QnA_Answer extends Managed_DataObject */ function getByNotice($notice) { - return self::staticGet('uri', $notice->uri); + $answer = self::staticGet('uri', $notice->uri); + if (empty($answer)) { + throw new Exception("No answer with URI {$this->notice->uri}"); + } + return $answer; } /** @@ -159,14 +166,93 @@ class QnA_Answer extends Managed_DataObject */ function getQuestion() { - return Question::staticGet('id', $this->question_id); + $question = self::staticGet('id', $this->question_id); + if (empty($question)) { + throw new Exception("No question with ID {$this->question_id}"); + } + return question; + } + + function getProfile() + { + $profile = Profile::staticGet('id', $this->profile_id); + if (empty($profile)) { + throw new Exception("No profile with ID {$this->profile_id}"); + } + return $profile; } - static function fromNotice($notice) + function asHTML() { - return self::staticGet('uri', $notice->uri); + return self::toHTML( + $this->getProfile(), + $this->getQuestion() + ); } + function asString() + { + return self::toString( + $this->getProfile(), + $this->getQuestion() + ); + } + + static function toHTML($profile, $event, $response) + { + $fmt = null; + + $notice = $event->getNotice(); + + switch ($response) { + case 'Y': + $fmt = _("%2s is attending %4s."); + break; + case 'N': + $fmt = _("%2s is not attending %4s."); + break; + case '?': + $fmt = _("%2s might attend %4s."); + break; + default: + throw new Exception("Unknown response code {$response}"); + break; + } + + return sprintf($fmt, + htmlspecialchars($profile->profileurl), + htmlspecialchars($profile->getBestName()), + htmlspecialchars($notice->bestUrl()), + htmlspecialchars($event->title)); + } + + static function toString($profile, $event, $response) + { + $fmt = null; + + $notice = $event->getNotice(); + + switch ($response) { + case 'Y': + $fmt = _("%1s is attending %2s."); + break; + case 'N': + $fmt = _("%1s is not attending %2s."); + break; + case '?': + $fmt = _("%1s might attend %2s.>"); + break; + default: + throw new Exception("Unknown response code {$response}"); + break; + } + + return sprintf($fmt, + $profile->getBestName(), + $event->title); + } + + /** * Save a new answer notice * @@ -176,7 +262,7 @@ class QnA_Answer extends Managed_DataObject * * @return Notice saved notice */ - static function saveNew($profile, $question, $options = null) + static function saveNew($profile, $question, $text, $options = null) { if (empty($options)) { $options = array(); @@ -186,23 +272,24 @@ class QnA_Answer extends Managed_DataObject $answer->id = UUID::gen(); $answer->profile_id = $profile->id; $answer->question_id = $question->id; + $answer->revisions = 0; + $answer->best = 0; + $answer->text = $text; $answer->created = common_sql_now(); $answer->uri = common_local_url( - 'showanswer', + 'qnashowanswer', array('id' => $answer->id) ); common_log(LOG_DEBUG, "Saving answer: $answer->id, $answer->uri"); $answer->insert(); - // TRANS: Notice content answering a question. - // TRANS: %s is the answer $content = sprintf( _m('answered "%s"'), - $answer->uri + $question->title ); - $link = '' . htmlspecialchars($answer) . ''; + $link = '' . htmlspecialchars($question->title) . ''; // TRANS: Rendered version of the notice content answering a question. // TRANS: %s a link to the question with question title as the link content. $rendered = sprintf(_m('answered "%s"'), $link); @@ -213,13 +300,15 @@ class QnA_Answer extends Managed_DataObject $options = array_merge( array( 'urls' => array(), + 'content' => $content, 'rendered' => $rendered, 'tags' => $tags, 'replies' => $replies, 'reply_to' => $question->getNotice()->id, - 'object_type' => self::OBJECT_TYPE), - $options - ); + 'object_type' => self::OBJECT_TYPE + ), + $options + ); if (!array_key_exists('uri', $options)) { $options['uri'] = $answer->uri; diff --git a/plugins/QnA/classes/QnA_Question.php b/plugins/QnA/classes/QnA_Question.php index 308e87b99f..5230923590 100644 --- a/plugins/QnA/classes/QnA_Question.php +++ b/plugins/QnA/classes/QnA_Question.php @@ -113,7 +113,7 @@ class QnA_Question extends Managed_DataObject 'closed' => array('type' => 'int', 'size' => 'tiny'), 'description' => array('type' => 'text'), 'created' => array( - 'type' => 'datetime', + 'type' => 'datetime', 'not null' => true ), ), @@ -175,7 +175,6 @@ class QnA_Question extends Managed_DataObject static function fromNotice($notice) { - common_debug('xxxxxxxxxxxxxxx notice-uri = ' . $notice->uri); return QnA_Question::staticGet('uri', $notice->uri); } @@ -209,7 +208,7 @@ class QnA_Question extends Managed_DataObject $q->uri = $options['uri']; } else { $q->uri = common_local_url( - 'showquestion', + 'qnashowquestion', array('id' => $q->id) ); } diff --git a/plugins/QnA/lib/qnaansweredform.php b/plugins/QnA/lib/qnaansweredform.php new file mode 100644 index 0000000000..a229e7f870 --- /dev/null +++ b/plugins/QnA/lib/qnaansweredform.php @@ -0,0 +1,122 @@ +. + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Form to add a new answer to a question + * + * @category QnA + * @package StatusNet + * @author Zach Copley + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ +class QnaansweredForm extends Form +{ + protected $question; + protected $answer; + + /** + * Construct a new answer form + * + * @param QnA_Answer $answer + * @param HTMLOutputter $out output channel + * + * @return void + */ + function __construct(QnA_Answer $answer, HTMLOutputter $out) + { + parent::__construct($out); + $this->question = $answer->getQuestion(); + $this->answer = $answer; + } + + /** + * ID of the form + * + * @return int ID of the form + */ + function id() + { + return 'answered-form'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings ajax'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('qnareviseanswer', array('id' => $this->question->id)); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $question = $this->question; + $out = $this->out; + $id = "question-" . $question->id; + + $out->element('p', 'Your answer to:', $question->title); + $out->element('input', array('type' => 'text', 'name' => 'answer')); + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // TRANS: Button text for submitting a poll response. + $this->out->submit('submit', _m('BUTTON', 'Submit')); + } +} From 65694366df0a8e363c75cb0e92b76975c45f10fb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 30 Mar 2011 05:55:10 -0400 Subject: [PATCH 07/52] Add a scope-forcing flag to user_group --- db/core.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db/core.php b/db/core.php index ab1f159743..90f5fb3f9f 100644 --- a/db/core.php +++ b/db/core.php @@ -653,7 +653,8 @@ $schema['user_group'] = array( 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universal identifier'), 'mainpage' => array('type' => 'varchar', 'length' => 255, 'description' => 'page for group info to link to'), - 'join_policy' => array('type' => 'int', 'size' => 'tiny', 'description' => '0=open; 1=requires admin approval'), + 'join_policy' => array('type' => 'int', 'size' => 'tiny', 'description' => '0=open; 1=requires admin approval'), + 'force_scope' => array('type' => 'int', 'size' => 'tiny', 'description' => '0=never,1=sometimes,-1=always'), ), 'primary key' => array('id'), 'unique keys' => array( From 9d0ccbff01c1d861d152e30feeb2094f5a2742b4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 30 Mar 2011 06:37:13 -0400 Subject: [PATCH 08/52] add a privacy flag to user table --- db/core.php | 1 + 1 file changed, 1 insertion(+) diff --git a/db/core.php b/db/core.php index 90f5fb3f9f..fc3461a7a0 100644 --- a/db/core.php +++ b/db/core.php @@ -123,6 +123,7 @@ $schema['user'] = array( 'inboxed' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'has an inbox been created for this user?'), 'design_id' => array('type' => 'int', 'description' => 'id of a design'), 'viewdesigns' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'whether to view user-provided designs'), + 'private_stream' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to limit all notices to followers only'), 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), From 4f5355a9f233a77c0e49c0b2de407de4b3562001 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 30 Mar 2011 08:16:30 -0400 Subject: [PATCH 09/52] add the private_stream attribute to User --- classes/User.php | 1 + classes/statusnet.ini | 1 + 2 files changed, 2 insertions(+) diff --git a/classes/User.php b/classes/User.php index abfcb0e8e2..4fe7efc858 100644 --- a/classes/User.php +++ b/classes/User.php @@ -63,6 +63,7 @@ class User extends Memcached_DataObject public $inboxed; // tinyint(1) public $design_id; // int(4) public $viewdesigns; // tinyint(1) default_1 + public $private_stream; // tinyint(1) default_0 public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP diff --git a/classes/statusnet.ini b/classes/statusnet.ini index 40d83f0a87..b9ffb28bc7 100644 --- a/classes/statusnet.ini +++ b/classes/statusnet.ini @@ -596,6 +596,7 @@ urlshorteningservice = 2 inboxed = 17 design_id = 1 viewdesigns = 17 +private_stream = 17 created = 142 modified = 384 From 7669bed9f3e975548c9269d245f120ea180c6f78 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 30 Mar 2011 10:33:15 -0700 Subject: [PATCH 10/52] More plumbing --- plugins/QnA/actions/qnanewanswer.php | 4 +- plugins/QnA/actions/qnashowanswer.php | 4 +- plugins/QnA/actions/qnashowquestion.php | 5 ++ plugins/QnA/classes/QnA_Answer.php | 80 +++++++++-------------- plugins/QnA/classes/QnA_Question.php | 85 +++++++++++++++++++++++++ 5 files changed, 125 insertions(+), 53 deletions(-) diff --git a/plugins/QnA/actions/qnanewanswer.php b/plugins/QnA/actions/qnanewanswer.php index 10b1046c3e..781ded36e6 100644 --- a/plugins/QnA/actions/qnanewanswer.php +++ b/plugins/QnA/actions/qnanewanswer.php @@ -50,7 +50,7 @@ class QnanewanswerAction extends Action protected $complete = null; protected $question = null; - protected $answerText = null; + protected $content = null; /** * Returns the title of the action @@ -155,7 +155,7 @@ class QnanewanswerAction extends Action $this->element('title', null, _m('Answers')); $this->elementEnd('head'); $this->elementStart('body'); - $form = new QnA_Answer($this->question, $this); + $form = new QnaanswerForm($this->question, $this); $form->show(); $this->elementEnd('body'); $this->elementEnd('html'); diff --git a/plugins/QnA/actions/qnashowanswer.php b/plugins/QnA/actions/qnashowanswer.php index 9721f22da3..d90b5c7ac6 100644 --- a/plugins/QnA/actions/qnashowanswer.php +++ b/plugins/QnA/actions/qnashowanswer.php @@ -103,9 +103,11 @@ class QnashowanswerAction extends ShownoticeAction function title() { + $question = $this->answer->getQuestion(); + return sprintf(_('%s\'s answer to "%s"'), $this->user->nickname, - $this->answer->title); + $question->title); } /** diff --git a/plugins/QnA/actions/qnashowquestion.php b/plugins/QnA/actions/qnashowquestion.php index 6719125354..d128eeec2f 100644 --- a/plugins/QnA/actions/qnashowquestion.php +++ b/plugins/QnA/actions/qnashowquestion.php @@ -95,6 +95,11 @@ class QnashowquestionAction extends ShownoticeAction return true; } + function showContent() + { + $this->raw($this->question->asHTML()); + } + /** * Title of the page * diff --git a/plugins/QnA/classes/QnA_Answer.php b/plugins/QnA/classes/QnA_Answer.php index 57c08afe4e..349bbb0196 100644 --- a/plugins/QnA/classes/QnA_Answer.php +++ b/plugins/QnA/classes/QnA_Answer.php @@ -52,7 +52,7 @@ class QnA_Answer extends Managed_DataObject public $profile_id; // int -> question.id public $best; // (boolean) int -> whether the question asker has marked this as the best answer public $revisions; // int -> count of revisions to this answer - public $text; // text -> response text + public $content; // text -> response text public $created; // datetime /** @@ -112,6 +112,7 @@ class QnA_Answer extends Managed_DataObject 'not null' => true, 'description' => 'UUID of question being responded to' ), + 'content' => array('type' => 'text'), // got a better name? 'best' => array('type' => 'int', 'size' => 'tiny'), 'revisions' => array('type' => 'int'), 'profile_id' => array('type' => 'int'), @@ -172,7 +173,7 @@ class QnA_Answer extends Managed_DataObject } return question; } - + function getProfile() { $profile = Profile::staticGet('id', $this->profile_id); @@ -186,7 +187,8 @@ class QnA_Answer extends Managed_DataObject { return self::toHTML( $this->getProfile(), - $this->getQuestion() + $this->getQuestion(), + $this ); } @@ -194,65 +196,43 @@ class QnA_Answer extends Managed_DataObject { return self::toString( $this->getProfile(), - $this->getQuestion() + $this->getQuestion(), + $this ); } - static function toHTML($profile, $event, $response) + static function toHTML($profile, $question, $answer) { - $fmt = null; + $notice = $question->getNotice(); - $notice = $event->getNotice(); + $fmt = 'answer by %3s'; + $fmt .= '%4s'; - switch ($response) { - case 'Y': - $fmt = _("%2s is attending %4s."); - break; - case 'N': - $fmt = _("%2s is not attending %4s."); - break; - case '?': - $fmt = _("%2s might attend %4s."); - break; - default: - throw new Exception("Unknown response code {$response}"); - break; - } - - return sprintf($fmt, - htmlspecialchars($profile->profileurl), - htmlspecialchars($profile->getBestName()), - htmlspecialchars($notice->bestUrl()), - htmlspecialchars($event->title)); + return sprintf( + $fmt, + htmlspecialchars($notice->bestUrl()), + htmlspecialchars($profile->profileurl), + htmlspecialchars($profile->getBestName()), + htmlspecialchars($answer->content) + ); } - static function toString($profile, $event, $response) + static function toString($profile, $question, $answer) { - $fmt = null; + $notice = $question->getNotice(); - $notice = $event->getNotice(); + $fmt = _( + '%1s answered the question "%2s": %3s' + ); - switch ($response) { - case 'Y': - $fmt = _("%1s is attending %2s."); - break; - case 'N': - $fmt = _("%1s is not attending %2s."); - break; - case '?': - $fmt = _("%1s might attend %2s.>"); - break; - default: - throw new Exception("Unknown response code {$response}"); - break; - } - - return sprintf($fmt, - $profile->getBestName(), - $event->title); + return sprintf( + $fmt, + htmlspecialchars($profile->getBestName()), + htmlspecialchars($question->title), + htmlspecialchars($answer->content) + ); } - /** * Save a new answer notice * @@ -274,7 +254,7 @@ class QnA_Answer extends Managed_DataObject $answer->question_id = $question->id; $answer->revisions = 0; $answer->best = 0; - $answer->text = $text; + $answer->content = $text; $answer->created = common_sql_now(); $answer->uri = common_local_url( 'qnashowanswer', diff --git a/plugins/QnA/classes/QnA_Question.php b/plugins/QnA/classes/QnA_Question.php index 5230923590..1022f2c3a6 100644 --- a/plugins/QnA/classes/QnA_Question.php +++ b/plugins/QnA/classes/QnA_Question.php @@ -146,6 +146,15 @@ class QnA_Question extends Managed_DataObject return $this->getNotice()->bestUrl(); } + function getProfile() + { + $profile = Profile::staticGet('id', $this->profile_id); + if (empty($profile)) { + throw new Exception("No profile with ID {$this->profile_id}"); + } + return $profile; + } + /** * Get the answer from a particular user to this question, if any. * @@ -166,6 +175,18 @@ class QnA_Question extends Managed_DataObject } } + function getAnswers() + { + $a = new QnA_Answer(); + $a->question_id = $this->id; + $cnt = $a->find(); + if (!empty($cnt)) { + return $a; + } else { + return null; + } + } + function countAnswers() { $a = new QnA_Answer(); @@ -178,6 +199,70 @@ class QnA_Question extends Managed_DataObject return QnA_Question::staticGet('uri', $notice->uri); } + function asHTML() + { + return self::toHTML( + $this->getProfile(), + $this, + $this->getAnswers() + ); + } + + function asString() + { + return self::toString( + $this->getProfile(), + $this, + $this->getAnswers() + ); + } + + static function toHTML($profile, $question, $answer) + { + $notice = $question->getNotice(); + + $fmt = '
'; + $fmt .= '%2s'; + $fmt .= '%3s'; + $fmt .= 'asked by %5s'; + $fmt .= '
'; + + $q = sprintf( + $fmt, + htmlspecialchars($notice->bestUrl()), + htmlspecialchars($question->title), + htmlspecialchars($question->description), + htmlspecialchars($profile->profileurl), + htmlspecialchars($profile->getBestName()) + ); + + $ans = array(); + + $ans[] = '
'; + + while($answer->fetch()) { + $ans[] = $answer->asHTML(); + } + + $ans[] .= '
'; + + return $q . implode($ans); + } + + static function toString($profile, $question, $answers) + { + $fmt = _( + '%1s asked the question "%2s": %3s' + ); + + return sprintf( + $fmt, + htmlspecialchars($profile->getBestName()), + htmlspecialchars($question->title), + htmlspecialchars($question->description) + ); + } + /** * Save a new question notice * From d2cd5b33531a9b4f1006641cd21572915e1c43d6 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 30 Mar 2011 11:22:32 -0700 Subject: [PATCH 11/52] Tweak which should fix ActivityStreams output for Twitter profiles (if remote_profile entries didn't match, we ended up losing id/URI). Explicitly uses the Twitter profile URL as profile URI if matching, without having to check the db. --- plugins/TwitterBridge/TwitterBridgePlugin.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/plugins/TwitterBridge/TwitterBridgePlugin.php b/plugins/TwitterBridge/TwitterBridgePlugin.php index b6658b13a6..29192cf53b 100644 --- a/plugins/TwitterBridge/TwitterBridgePlugin.php +++ b/plugins/TwitterBridge/TwitterBridgePlugin.php @@ -530,4 +530,13 @@ class TwitterBridgePlugin extends Plugin return true; } + + function onStartGetProfileUri($profile, &$uri) + { + if (preg_match('!^https?://twitter.com/!', $profile->profileurl)) { + $uri = $profile->profileurl; + return false; + } + return true; + } } From da7c54023d5448c8e37554ebfd7ec1b255dee37e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 30 Mar 2011 12:36:54 -0700 Subject: [PATCH 12/52] Format timestamps as UTC in ActivityStreams output. While using local times is legit per spec, it's confusing to have it change around and confuses some clients that don't handle zones right. --- lib/activity.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/activity.php b/lib/activity.php index b781e49846..83a115d160 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -704,11 +704,18 @@ class Activity return ActivityUtils::child($element, $tag, $namespace); } + /** + * For consistency, we'll always output UTC rather than local time. + * Note that clients *should* accept any timezone we give them as long + * as it's properly formatted. + * + * @param int $tm Unix timestamp + * @return string + */ static function iso8601Date($tm) { $dateStr = date('d F Y H:i:s', $tm); $d = new DateTime($dateStr, new DateTimeZone('UTC')); - $d->setTimezone(new DateTimeZone(common_timezone())); return $d->format('c'); } } From 0ac09253094e0eb4c67e60632547c543b9c6d43b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 30 Mar 2011 12:50:56 -0700 Subject: [PATCH 13/52] Fix timestamps in fallback content for EventPlugin A bunch of the common_* functions for date formatting expect an interpretable string, rather than a Unix timestamp, as input. Switched to using the DB-formatted timestamps as we put them into the object rather than the unix timestamp intermediate value when formatting the plaintext and HTML fallback content. --- plugins/Event/Happening.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/Event/Happening.php b/plugins/Event/Happening.php index 376f27c698..45398dfcf2 100644 --- a/plugins/Event/Happening.php +++ b/plugins/Event/Happening.php @@ -156,8 +156,8 @@ class Happening extends Managed_DataObject $content = sprintf(_('"%s" %s - %s (%s): %s'), $title, - common_exact_date($start_time), - common_exact_date($end_time), + common_exact_date($ev->start_time), + common_exact_date($ev->end_time), $location, $description); @@ -169,10 +169,10 @@ class Happening extends Managed_DataObject '%s '. ''), htmlspecialchars($title), - htmlspecialchars(common_date_iso8601($start_time)), - htmlspecialchars(common_exact_date($start_time)), - htmlspecialchars(common_date_iso8601($end_time)), - htmlspecialchars(common_exact_date($end_time)), + htmlspecialchars(common_date_iso8601($ev->start_time)), + htmlspecialchars(common_exact_date($ev->start_time)), + htmlspecialchars(common_date_iso8601($ev->end_time)), + htmlspecialchars(common_exact_date($ev->end_time)), htmlspecialchars($location), htmlspecialchars($description)); From f70bcbdb6b2e9ea6bff8d1804b23e976ab6dfced Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 30 Mar 2011 16:23:13 -0400 Subject: [PATCH 14/52] save private stream values --- actions/profilesettings.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 8ce1192579..86afc23af2 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -203,6 +203,13 @@ class ProfilesettingsAction extends SettingsAction (empty($user->subscribe_policy)) ? User::SUBSCRIBE_POLICY_OPEN : $user->subscribe_policy); $this->elementEnd('li'); } + $this->elementStart('li'); + $this->checkbox('private_stream', + // TRANS: + _('Make updates visible only to my followers'), + ($this->arg('private_stream')) ? + $this->boolean('private_stream') : $user->private_stream); + $this->elementEnd('li'); $this->elementEnd('ul'); // TRANS: Button to save input in profile settings. $this->submit('save', _m('BUTTON','Save')); @@ -245,6 +252,7 @@ class ProfilesettingsAction extends SettingsAction $location = $this->trimmed('location'); $autosubscribe = $this->boolean('autosubscribe'); $subscribe_policy = $this->trimmed('subscribe_policy'); + $private_stream = $this->boolean('private_stream'); $language = $this->trimmed('language'); $timezone = $this->trimmed('timezone'); $tagstring = $this->trimmed('tags'); @@ -344,11 +352,14 @@ class ProfilesettingsAction extends SettingsAction } // XXX: XOR - if (($user->autosubscribe ^ $autosubscribe) || $user->subscribe_policy != $subscribe_policy) { + if (($user->autosubscribe ^ $autosubscribe) || + ($user->private_stream ^ $private_stream) || + ($user->subscribe_policy != $subscribe_policy)) { $original = clone($user); - $user->autosubscribe = $autosubscribe; + $user->autosubscribe = $autosubscribe; + $user->private_stream = $private_stream; $user->subscribe_policy = $subscribe_policy; $result = $user->update($original); From 14456cbbb2b8f9266eb5ca13acff77e6b6699ac2 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 30 Mar 2011 22:30:23 +0200 Subject: [PATCH 15/52] Fix gettext domain for messages in plugins "_()" to "_m()". Some other i18n and L10n updates, too. i18n/L10n review not complete. --- plugins/BitlyUrl/bitlyadminpanelaction.php | 6 +++- plugins/BlogspamNet/BlogspamNetPlugin.php | 6 ++-- plugins/Bookmark/Bookmark.php | 17 ++++++---- plugins/Bookmark/BookmarkPlugin.php | 6 ++-- plugins/Bookmark/bookmarkform.php | 16 ++++----- plugins/Bookmark/bookmarkpopup.php | 2 +- plugins/Bookmark/deliciousbackupimporter.php | 6 ++-- plugins/Bookmark/importbookmarks.php | 2 +- plugins/Bookmark/importdelicious.php | 34 +++++++++---------- plugins/Bookmark/newbookmark.php | 10 +++--- plugins/Bookmark/noticebyurl.php | 6 ++-- plugins/Bookmark/showbookmark.php | 2 +- plugins/Directory/DirectoryPlugin.php | 4 +-- plugins/Directory/actions/userdirectory.php | 8 ++--- plugins/EmailSummary/EmailSummaryPlugin.php | 2 +- .../EmailSummary/useremailsummaryhandler.php | 8 ++--- plugins/Event/EventPlugin.php | 12 ++++--- plugins/Event/Happening.php | 18 +++++----- plugins/Event/RSVP.php | 20 +++++------ plugins/Event/cancelrsvp.php | 12 +++---- plugins/Event/cancelrsvpform.php | 6 ++-- plugins/Event/eventform.php | 32 ++++++++--------- plugins/Event/newevent.php | 22 ++++++------ plugins/Event/newrsvp.php | 10 +++--- plugins/Event/rsvpform.php | 2 +- plugins/Event/showrsvp.php | 2 +- .../lib/extendedprofilewidget.php | 2 +- .../actions/facebooksettings.php | 2 +- .../FollowEveryone/FollowEveryonePlugin.php | 2 +- .../GroupPrivateMessagePlugin.php | 28 +++++++-------- plugins/GroupPrivateMessage/Group_message.php | 6 ++-- .../Group_message_profile.php | 10 +++--- .../Group_privacy_settings.php | 10 +++--- plugins/GroupPrivateMessage/groupinbox.php | 12 +++---- .../groupmessagecommand.php | 2 +- .../GroupPrivateMessage/groupmessageform.php | 6 ++-- .../GroupPrivateMessage/newgroupmessage.php | 14 ++++---- .../GroupPrivateMessage/showgroupmessage.php | 12 +++---- plugins/Irc/IrcPlugin.php | 8 ++--- plugins/Irc/ircmanager.php | 2 +- plugins/LdapCommon/LdapCommon.php | 2 +- plugins/LinkPreview/oembedproxyaction.php | 2 +- plugins/Linkback/LinkbackPlugin.php | 2 +- plugins/ModPlus/remoteprofileaction.php | 2 +- plugins/Mollom/MollomPlugin.php | 2 +- plugins/OStatus/actions/usersalmon.php | 4 +-- plugins/OpenID/finishopenidlogin.php | 10 +++--- plugins/OpenID/openidadminpanel.php | 2 +- plugins/Poll/PollPlugin.php | 2 +- plugins/RSSCloud/LoggingAggregator.php | 2 +- plugins/Recaptcha/RecaptchaPlugin.php | 2 +- .../confirmfirstemail.php | 30 ++++++++-------- plugins/SearchSub/searchsubaction.php | 8 ++--- plugins/SearchSub/searchsubform.php | 2 +- plugins/SearchSub/searchunsubform.php | 2 +- plugins/SubMirror/actions/mirrorsettings.php | 2 +- .../SubscriptionThrottlePlugin.php | 4 +-- plugins/TagSub/tagsubaction.php | 8 ++--- plugins/TagSub/tagsubform.php | 2 +- plugins/TagSub/tagsubsaction.php | 6 ++-- plugins/TagSub/tagunsubform.php | 2 +- plugins/Template/TemplatePlugin.php | 6 ++-- .../TwitterBridge/twitterauthorization.php | 4 +-- plugins/UserFlag/adminprofileflag.php | 4 +-- plugins/UserLimit/UserLimitPlugin.php | 3 +- plugins/WikiHashtags/WikiHashtagsPlugin.php | 8 ++--- plugins/Xmpp/XmppPlugin.php | 5 +-- 67 files changed, 264 insertions(+), 251 deletions(-) diff --git a/plugins/BitlyUrl/bitlyadminpanelaction.php b/plugins/BitlyUrl/bitlyadminpanelaction.php index 05b8e83267..70cb664b84 100644 --- a/plugins/BitlyUrl/bitlyadminpanelaction.php +++ b/plugins/BitlyUrl/bitlyadminpanelaction.php @@ -233,6 +233,10 @@ class BitlyAdminPanelForm extends AdminForm function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _m('Save bit.ly settings')); + $this->out->submit('submit', + _m('BUTTON','Save'), + 'submit', + null, + _m('Save bit.ly settings')); } } diff --git a/plugins/BlogspamNet/BlogspamNetPlugin.php b/plugins/BlogspamNet/BlogspamNetPlugin.php index 51a86b4f36..06198e6c54 100644 --- a/plugins/BlogspamNet/BlogspamNetPlugin.php +++ b/plugins/BlogspamNet/BlogspamNetPlugin.php @@ -82,13 +82,13 @@ class BlogspamNetPlugin extends Plugin } else { common_debug("Blogspamnet results = " . $response); if (preg_match('/^ERROR(:(.*))?$/', $response, $match)) { - throw new ServerException(sprintf(_("Error from %s: %s"), $this->baseUrl, $match[2]), 500); + throw new ServerException(sprintf(_m("Error from %1$s: %2$s"), $this->baseUrl, $match[2]), 500); } else if (preg_match('/^SPAM(:(.*))?$/', $response, $match)) { - throw new ClientException(sprintf(_("Spam checker results: %s"), $match[2]), 400); + throw new ClientException(sprintf(_m("Spam checker results: %s"), $match[2]), 400); } else if (preg_match('/^OK$/', $response)) { // don't do anything } else { - throw new ServerException(sprintf(_("Unexpected response from %s: %s"), $this->baseUrl, $response), 500); + throw new ServerException(sprintf(_m("Unexpected response from %1$s: %2$s"), $this->baseUrl, $response), 500); } } return true; diff --git a/plugins/Bookmark/Bookmark.php b/plugins/Bookmark/Bookmark.php index 04cd8dbfa8..9ae4f7cfc6 100644 --- a/plugins/Bookmark/Bookmark.php +++ b/plugins/Bookmark/Bookmark.php @@ -199,7 +199,7 @@ class Bookmark extends Memcached_DataObject $nb = self::getByURL($profile, $url); if (!empty($nb)) { - throw new ClientException(_('Bookmark already exists.')); + throw new ClientException(_m('Bookmark already exists.')); } if (empty($options)) { @@ -209,7 +209,7 @@ class Bookmark extends Memcached_DataObject if (array_key_exists('uri', $options)) { $other = Bookmark::staticGet('uri', $options['uri']); if (!empty($other)) { - throw new ClientException(_('Bookmark already exists.')); + throw new ClientException(_m('Bookmark already exists.')); } } @@ -288,16 +288,19 @@ class Bookmark extends Memcached_DataObject $shortUrl = $url; } - $content = sprintf(_('"%s" %s %s %s'), + // @todo FIXME: i18n documentation. + // TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, + // TRANS: %4$s is space separated list of hash tags. + $content = sprintf(_m('"%1$s" %2$s %3$s %4$s'), $title, $shortUrl, $description, implode(' ', $hashtags)); - $rendered = sprintf(_(''. - '%s '. - '%s '. - '%s'. + $rendered = sprintf(_m(''. + '%2$s '. + '%3$s '. + '%4$s'. ''), htmlspecialchars($url), htmlspecialchars($title), diff --git a/plugins/Bookmark/BookmarkPlugin.php b/plugins/Bookmark/BookmarkPlugin.php index 4c13ec79cb..a24f207720 100644 --- a/plugins/Bookmark/BookmarkPlugin.php +++ b/plugins/Bookmark/BookmarkPlugin.php @@ -274,7 +274,7 @@ class BookmarkPlugin extends MicroAppPlugin $action->elementStart('li'); $action->element('a', array('href' => common_local_url('importdelicious')), - _('Import del.icio.us bookmarks')); + _m('Import del.icio.us bookmarks')); $action->elementEnd('li'); } @@ -379,7 +379,7 @@ class BookmarkPlugin extends MicroAppPlugin $relLinkEls = ActivityUtils::getLinks($bookmark->element, 'related'); if (count($relLinkEls) < 1) { - throw new ClientException(_('Expected exactly 1 link '. + throw new ClientException(_m('Expected exactly 1 link '. 'rel=related in a Bookmark.')); } @@ -472,7 +472,7 @@ class BookmarkPlugin extends MicroAppPlugin $attachments = $notice->attachments(); if (count($attachments) != 1) { - throw new ServerException(_('Bookmark notice with the '. + throw new ServerException(_m('Bookmark notice with the '. 'wrong number of attachments.')); } diff --git a/plugins/Bookmark/bookmarkform.php b/plugins/Bookmark/bookmarkform.php index d8cf1f7f5b..074571e162 100644 --- a/plugins/Bookmark/bookmarkform.php +++ b/plugins/Bookmark/bookmarkform.php @@ -121,30 +121,30 @@ class BookmarkForm extends Form $this->li(); $this->out->input('title', - _('Title'), + _m('LABEL','Title'), $this->_title, - _('Title of the bookmark')); + _m('Title of the bookmark')); $this->unli(); $this->li(); $this->out->input('url', - _('URL'), + _m('LABEL','URL'), $this->_url, - _('URL to bookmark')); + _m('URL to bookmark')); $this->unli(); $this->li(); $this->out->input('tags', - _('Tags'), + _m('LABEL','Tags'), $this->_tags, - _('Comma- or space-separated list of tags')); + _m('Comma- or space-separated list of tags')); $this->unli(); $this->li(); $this->out->input('description', - _('Description'), + _m('LABEL','Description'), $this->_description, - _('Description of the URL')); + _m('Description of the URL')); $this->unli(); $this->out->elementEnd('ul'); diff --git a/plugins/Bookmark/bookmarkpopup.php b/plugins/Bookmark/bookmarkpopup.php index 33f983a93a..f254557b81 100644 --- a/plugins/Bookmark/bookmarkpopup.php +++ b/plugins/Bookmark/bookmarkpopup.php @@ -55,7 +55,7 @@ class BookmarkpopupAction extends NewbookmarkAction // TRANS: Title for mini-posting window loaded from bookmarklet. // TRANS: %s is the StatusNet site name. $this->element('title', - null, sprintf(_('Bookmark on %s'), + null, sprintf(_m('Bookmark on %s'), common_config('site', 'name'))); } diff --git a/plugins/Bookmark/deliciousbackupimporter.php b/plugins/Bookmark/deliciousbackupimporter.php index 197c7a143b..a8d2819fe7 100644 --- a/plugins/Bookmark/deliciousbackupimporter.php +++ b/plugins/Bookmark/deliciousbackupimporter.php @@ -82,7 +82,7 @@ class DeliciousBackupImporter extends QueueHandler $dls = $doc->getElementsByTagName('dl'); if ($dls->length != 1) { - throw new ClientException(_("Bad import file.")); + throw new ClientException(_m("Bad import file.")); } $dl = $dls->item(0); @@ -165,7 +165,7 @@ class DeliciousBackupImporter extends QueueHandler $as = $dt->getElementsByTagName('a'); if ($as->length == 0) { - throw new ClientException(_("No tag in a
.")); + throw new ClientException(_m("No tag in a
.")); } $a = $as->item(0); @@ -173,7 +173,7 @@ class DeliciousBackupImporter extends QueueHandler $private = $a->getAttribute('private'); if ($private != 0) { - throw new ClientException(_('Skipping private bookmark.')); + throw new ClientException(_m('Skipping private bookmark.')); } if (!empty($dd)) { diff --git a/plugins/Bookmark/importbookmarks.php b/plugins/Bookmark/importbookmarks.php index 5518b00e97..e16cf9d633 100644 --- a/plugins/Bookmark/importbookmarks.php +++ b/plugins/Bookmark/importbookmarks.php @@ -75,7 +75,7 @@ function getBookmarksFile() } // TRANS: %s is the filename that contains a backup for a user. - printfv(_("Getting backup from file '%s'.")."\n", $filename); + printfv(_m("Getting backup from file \"%s\".")."\n", $filename); $html = file_get_contents($filename); diff --git a/plugins/Bookmark/importdelicious.php b/plugins/Bookmark/importdelicious.php index b98b215717..0d206e456d 100644 --- a/plugins/Bookmark/importdelicious.php +++ b/plugins/Bookmark/importdelicious.php @@ -58,7 +58,7 @@ class ImportdeliciousAction extends Action function title() { - return _("Import del.icio.us bookmarks"); + return _m("Import del.icio.us bookmarks"); } /** @@ -76,13 +76,13 @@ class ImportdeliciousAction extends Action $cur = common_current_user(); if (empty($cur)) { - throw new ClientException(_('Only logged-in users can '. + throw new ClientException(_m('Only logged-in users can '. 'import del.icio.us backups.'), 403); } if (!$cur->hasRight(BookmarkPlugin::IMPORTDELICIOUS)) { - throw new ClientException(_('You may not restore your account.'), 403); + throw new ClientException(_m('You may not restore your account.'), 403); } return true; @@ -121,7 +121,7 @@ class ImportdeliciousAction extends Action $this->checkSessionToken(); if (!isset($_FILES[ImportDeliciousForm::FILEINPUT]['error'])) { - throw new ClientException(_('No uploaded file.')); + throw new ClientException(_m('No uploaded file.')); } switch ($_FILES[ImportDeliciousForm::FILEINPUT]['error']) { @@ -129,42 +129,42 @@ class ImportdeliciousAction extends Action break; case UPLOAD_ERR_INI_SIZE: // TRANS: Client exception thrown when an uploaded file is too large. - throw new ClientException(_('The uploaded file exceeds the ' . + throw new ClientException(_m('The uploaded file exceeds the ' . 'upload_max_filesize directive in php.ini.')); return; case UPLOAD_ERR_FORM_SIZE: throw new ClientException( // TRANS: Client exception. - _('The uploaded file exceeds the MAX_FILE_SIZE directive' . + _m('The uploaded file exceeds the MAX_FILE_SIZE directive' . ' that was specified in the HTML form.')); return; case UPLOAD_ERR_PARTIAL: @unlink($_FILES[ImportDeliciousForm::FILEINPUT]['tmp_name']); // TRANS: Client exception. - throw new ClientException(_('The uploaded file was only' . + throw new ClientException(_m('The uploaded file was only' . ' partially uploaded.')); return; case UPLOAD_ERR_NO_FILE: // No file; probably just a non-AJAX submission. - throw new ClientException(_('No uploaded file.')); + throw new ClientException(_m('No uploaded file.')); return; case UPLOAD_ERR_NO_TMP_DIR: // TRANS: Client exception thrown when a temporary folder is not present - throw new ClientException(_('Missing a temporary folder.')); + throw new ClientException(_m('Missing a temporary folder.')); return; case UPLOAD_ERR_CANT_WRITE: // TRANS: Client exception thrown when writing to disk is not possible - throw new ClientException(_('Failed to write file to disk.')); + throw new ClientException(_m('Failed to write file to disk.')); return; case UPLOAD_ERR_EXTENSION: // TRANS: Client exception thrown when a file upload has been stopped - throw new ClientException(_('File upload stopped by extension.')); + throw new ClientException(_m('File upload stopped by extension.')); return; default: common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . $_FILES[ImportDeliciousForm::FILEINPUT]['error']); // TRANS: Client exception thrown when a file upload operation has failed - throw new ClientException(_('System error uploading file.')); + throw new ClientException(_m('System error uploading file.')); return; } @@ -183,7 +183,7 @@ class ImportdeliciousAction extends Action throw new ServerException("File '$filename' not readable."); } - common_debug(sprintf(_("Getting backup from file '%s'."), $filename)); + common_debug(sprintf(_m("Getting backup from file '%s'."), $filename)); $html = file_get_contents($filename); @@ -219,10 +219,10 @@ class ImportdeliciousAction extends Action { if ($this->success) { $this->element('p', null, - _('Bookmarks have been imported. Your bookmarks should now appear in search and your profile page.')); + _m('Bookmarks have been imported. Your bookmarks should now appear in search and your profile page.')); } else if ($this->inprogress) { $this->element('p', null, - _('Bookmarks are being imported. Please wait a few minutes for results.')); + _m('Bookmarks are being imported. Please wait a few minutes for results.')); } else { $form = new ImportDeliciousForm($this); $form->show(); @@ -310,7 +310,7 @@ class ImportDeliciousForm extends Form { $this->out->elementStart('p', 'instructions'); - $this->out->raw(_('You can upload a backed-up '. + $this->out->raw(_m('You can upload a backed-up '. 'delicious.com bookmarks file.')); $this->out->elementEnd('p'); @@ -340,6 +340,6 @@ class ImportDeliciousForm extends Form _m('BUTTON', 'Upload'), 'submit', null, - _('Upload the file')); + _m('Upload the file')); } } diff --git a/plugins/Bookmark/newbookmark.php b/plugins/Bookmark/newbookmark.php index ebfdb6cb95..79266e52b2 100644 --- a/plugins/Bookmark/newbookmark.php +++ b/plugins/Bookmark/newbookmark.php @@ -62,7 +62,7 @@ class NewbookmarkAction extends Action function title() { - return _('New bookmark'); + return _m('New bookmark'); } /** @@ -80,7 +80,7 @@ class NewbookmarkAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_("Must be logged in to post a bookmark."), + throw new ClientException(_m("Must be logged in to post a bookmark."), 403); } @@ -130,11 +130,11 @@ class NewbookmarkAction extends Action } try { if (empty($this->title)) { - throw new ClientException(_('Bookmark must have a title.')); + throw new ClientException(_m('Bookmark must have a title.')); } if (empty($this->url)) { - throw new ClientException(_('Bookmark must have an URL.')); + throw new ClientException(_m('Bookmark must have an URL.')); } @@ -156,7 +156,7 @@ class NewbookmarkAction extends Action $this->elementStart('html'); $this->elementStart('head'); // TRANS: Page title after sending a notice. - $this->element('title', null, _('Notice posted')); + $this->element('title', null, _m('Notice posted')); $this->elementEnd('head'); $this->elementStart('body'); $this->showNotice($saved); diff --git a/plugins/Bookmark/noticebyurl.php b/plugins/Bookmark/noticebyurl.php index 226c7a32bf..b8bea78051 100644 --- a/plugins/Bookmark/noticebyurl.php +++ b/plugins/Bookmark/noticebyurl.php @@ -67,7 +67,7 @@ class NoticebyurlAction extends Action $this->file = File::staticGet('id', $this->trimmed('id')); if (empty($this->file)) { - throw new ClientException(_('Unknown URL')); + throw new ClientException(_m('Unknown URL')); } $pageArg = $this->trimmed('page'); @@ -89,9 +89,9 @@ class NoticebyurlAction extends Action function title() { if ($this->page == 1) { - return sprintf(_("Notices linking to %s"), $this->file->url); + return sprintf(_m("Notices linking to %s"), $this->file->url); } else { - return sprintf(_("Notices linking to %s, page %d"), + return sprintf(_m("Notices linking to %1$s, page %2$d"), $this->file->url, $this->page); } diff --git a/plugins/Bookmark/showbookmark.php b/plugins/Bookmark/showbookmark.php index 40005c087f..6b9bf9bc25 100644 --- a/plugins/Bookmark/showbookmark.php +++ b/plugins/Bookmark/showbookmark.php @@ -82,7 +82,7 @@ class ShowbookmarkAction extends ShownoticeAction { // TRANS: Title for bookmark. // TRANS: %1$s is a user nickname, %2$s is a bookmark title. - return sprintf(_('%1$s\'s bookmark for "%2$s"'), + return sprintf(_m('%1$s\'s bookmark for "%2$s"'), $this->user->nickname, $this->bookmark->title); } diff --git a/plugins/Directory/DirectoryPlugin.php b/plugins/Directory/DirectoryPlugin.php index 541ec556bf..cba75802e5 100644 --- a/plugins/Directory/DirectoryPlugin.php +++ b/plugins/Directory/DirectoryPlugin.php @@ -165,8 +165,8 @@ class DirectoryPlugin extends Plugin $nav->out->menuItem( common_local_url('userdirectory'), - _('Directory'), - _('User Directory'), + _m('Directory'), + _m('User Directory'), $actionName == 'userdirectory', 'nav_directory' ); diff --git a/plugins/Directory/actions/userdirectory.php b/plugins/Directory/actions/userdirectory.php index 85835e2c1f..6532f03c02 100644 --- a/plugins/Directory/actions/userdirectory.php +++ b/plugins/Directory/actions/userdirectory.php @@ -116,7 +116,7 @@ class UserdirectoryAction extends Action function getInstructions() { // TRANS: %%site.name%% is the name of the StatusNet site. - return _( + return _m( 'Search for people on %%site.name%% by their name, ' . 'location, or interests. Separate the terms by spaces; ' . ' they must be 3 characters or more.' @@ -256,11 +256,11 @@ class UserdirectoryAction extends Action $this->elementStart('fieldset'); - $this->element('legend', null, _('Search site')); + $this->element('legend', null, _m('Search site')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); - $this->input('q', _('Keyword(s)'), $this->q); + $this->input('q', _m('Keyword(s)'), $this->q); $this->submit('search', _m('BUTTON','Search')); $this->elementEnd('li'); @@ -372,7 +372,7 @@ class UserdirectoryAction extends Action ) ); } else { - $this->element('p', 'error', _('No results.')); + $this->element('p', 'error', _m('No results.')); $message = _m(<<elementStart('li'); $action->checkbox('emailsummary', // TRANS: Checkbox label in e-mail preferences form. - _('Send me a periodic summary of updates from my network.'), + _m('Send me a periodic summary of updates from my network.'), Email_summary_status::getSendSummary($user->id)); $action->elementEnd('li'); return true; diff --git a/plugins/EmailSummary/useremailsummaryhandler.php b/plugins/EmailSummary/useremailsummaryhandler.php index 8ba8a7a20b..5e10af40eb 100644 --- a/plugins/EmailSummary/useremailsummaryhandler.php +++ b/plugins/EmailSummary/useremailsummaryhandler.php @@ -128,7 +128,7 @@ class UserEmailSummaryHandler extends QueueHandler 'style' => 'background-color: #ffffff; border: 4px solid #4c609a; padding: 10px;')); $out->elementStart('div', array('style' => 'color: #ffffff; background-color: #4c609a; font-weight: bold; margin-bottom: 10px; padding: 4px;')); - $out->raw(sprintf(_('Recent updates from %1s for %2s:'), + $out->raw(sprintf(_m('Recent updates from %1s for %2s:'), common_config('site', 'name'), $profile->getBestName())); $out->elementEnd('div'); @@ -184,7 +184,7 @@ class UserEmailSummaryHandler extends QueueHandler $out->text(' '); $out->element('a', array('href' => $convurl.'#notice-'.$notice->id), - _('in context')); + _m('in context')); } } $out->elementEnd('div'); @@ -194,7 +194,7 @@ class UserEmailSummaryHandler extends QueueHandler $out->elementEnd('table'); - $out->raw(sprintf(_('

change your email settings for %2s

'), + $out->raw(sprintf(_m('

change your email settings for %2s

'), common_local_url('emailsettings'), common_config('site', 'name'))); @@ -204,7 +204,7 @@ class UserEmailSummaryHandler extends QueueHandler // FIXME: do something for people who don't like HTML email - mail_to_user($user, _('Updates from your network'), $body, + mail_to_user($user, _m('Updates from your network'), $body, array('Content-Type' => 'text/html; charset=UTF-8')); if (empty($ess)) { diff --git a/plugins/Event/EventPlugin.php b/plugins/Event/EventPlugin.php index 1ee6ef4309..d1dda6336d 100644 --- a/plugins/Event/EventPlugin.php +++ b/plugins/Event/EventPlugin.php @@ -365,7 +365,7 @@ class EventPlugin extends MicroappPlugin $out->elementStart('div', 'event-times'); // VEVENT/EVENT-TIMES IN - $out->element('strong', null, _('Time:')); + $out->element('strong', null, _m('Time:')); $out->element('abbr', array('class' => 'dtstart', 'title' => common_date_iso8601($event->start_time)), @@ -385,14 +385,14 @@ class EventPlugin extends MicroappPlugin if (!empty($event->location)) { $out->elementStart('div', 'event-location'); - $out->element('strong', null, _('Location: ')); + $out->element('strong', null, _m('Location:')); $out->element('span', 'location', $event->location); $out->elementEnd('div'); } if (!empty($event->description)) { $out->elementStart('div', 'event-description'); - $out->element('strong', null, _('Description: ')); + $out->element('strong', null, _m('Description:')); $out->element('span', 'description', $event->description); $out->elementEnd('div'); } @@ -400,9 +400,11 @@ class EventPlugin extends MicroappPlugin $rsvps = $event->getRSVPs(); $out->elementStart('div', 'event-rsvps'); - $out->element('strong', null, _('Attending: ')); + $out->element('strong', null, _m('Attending:')); $out->element('span', 'event-rsvps', - sprintf(_('Yes: %d No: %d Maybe: %d'), + // TRANS: RSVP counts. + // TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. + sprintf(_m('Yes: %1$d No: %2$d Maybe: %3$d'), count($rsvps[RSVP::POSITIVE]), count($rsvps[RSVP::NEGATIVE]), count($rsvps[RSVP::POSSIBLE]))); diff --git a/plugins/Event/Happening.php b/plugins/Event/Happening.php index 45398dfcf2..bbea213a1a 100644 --- a/plugins/Event/Happening.php +++ b/plugins/Event/Happening.php @@ -122,7 +122,7 @@ class Happening extends Managed_DataObject if (array_key_exists('uri', $options)) { $other = Happening::staticGet('uri', $options['uri']); if (!empty($other)) { - throw new ClientException(_('Event already exists.')); + throw new ClientException(_m('Event already exists.')); } } @@ -154,19 +154,21 @@ class Happening extends Managed_DataObject // XXX: does this get truncated? - $content = sprintf(_('"%s" %s - %s (%s): %s'), + // TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, + // TRANS: %4$s is location, %5$s is a description. + $content = sprintf(_m('"%1$s" %2$s - %3$s (%4$s): %5$s'), $title, common_exact_date($ev->start_time), common_exact_date($ev->end_time), $location, $description); - $rendered = sprintf(_(''. - '%s '. - '%s - '. - '%s '. - '(%s): '. - '%s '. + $rendered = sprintf(_m(''. + '%1$s '. + '%3$s - '. + '%5$s '. + '(%6$s): '. + '%7$s '. ''), htmlspecialchars($title), htmlspecialchars(common_date_iso8601($ev->start_time)), diff --git a/plugins/Event/RSVP.php b/plugins/Event/RSVP.php index beb377c5bc..108fd5f4db 100644 --- a/plugins/Event/RSVP.php +++ b/plugins/Event/RSVP.php @@ -143,7 +143,7 @@ class RSVP extends Managed_DataObject if (array_key_exists('uri', $options)) { $other = RSVP::staticGet('uri', $options['uri']); if (!empty($other)) { - throw new ClientException(_('RSVP already exists.')); + throw new ClientException(_m('RSVP already exists.')); } } @@ -151,7 +151,7 @@ class RSVP extends Managed_DataObject 'event_id' => $event->id)); if (!empty($other)) { - throw new ClientException(_('RSVP already exists.')); + throw new ClientException(_m('RSVP already exists.')); } $rsvp = new RSVP(); @@ -316,13 +316,13 @@ class RSVP extends Managed_DataObject switch ($response) { case 'Y': - $fmt = _("%2s is attending %4s."); + $fmt = _m("%2s is attending %4s."); break; case 'N': - $fmt = _("%2s is not attending %4s."); + $fmt = _m("%2s is not attending %4s."); break; case '?': - $fmt = _("%2s might attend %4s."); + $fmt = _m("%2s might attend %4s."); break; default: throw new Exception("Unknown response code {$response}"); @@ -331,7 +331,7 @@ class RSVP extends Managed_DataObject if (empty($event)) { $eventUrl = '#'; - $eventTitle = _('an unknown event'); + $eventTitle = _m('an unknown event'); } else { $notice = $event->getNotice(); $eventUrl = $notice->bestUrl(); @@ -351,13 +351,13 @@ class RSVP extends Managed_DataObject switch ($response) { case 'Y': - $fmt = _("%1s is attending %2s."); + $fmt = _m("%1s is attending %2s."); break; case 'N': - $fmt = _("%1s is not attending %2s."); + $fmt = _m("%1s is not attending %2s."); break; case '?': - $fmt = _("%1s might attend %2s.>"); + $fmt = _m("%1s might attend %2s.>"); break; default: throw new Exception("Unknown response code {$response}"); @@ -365,7 +365,7 @@ class RSVP extends Managed_DataObject } if (empty($event)) { - $eventTitle = _('an unknown event'); + $eventTitle = _m('an unknown event'); } else { $notice = $event->getNotice(); $eventTitle = $event->title; diff --git a/plugins/Event/cancelrsvp.php b/plugins/Event/cancelrsvp.php index 83dabe2de5..94f78bfca6 100644 --- a/plugins/Event/cancelrsvp.php +++ b/plugins/Event/cancelrsvp.php @@ -58,7 +58,7 @@ class CancelrsvpAction extends Action function title() { - return _('Cancel RSVP'); + return _m('Cancel RSVP'); } /** @@ -79,25 +79,25 @@ class CancelrsvpAction extends Action $rsvpId = $this->trimmed('rsvp'); if (empty($rsvpId)) { - throw new ClientException(_('No such rsvp.')); + throw new ClientException(_m('No such RSVP.')); } $this->rsvp = RSVP::staticGet('id', $rsvpId); if (empty($this->rsvp)) { - throw new ClientException(_('No such rsvp.')); + throw new ClientException(_m('No such RSVP.')); } $this->event = Happening::staticGet('id', $this->rsvp->event_id); if (empty($this->event)) { - throw new ClientException(_('No such event.')); + throw new ClientException(_m('No such event.')); } $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_('You must be logged in to RSVP for an event.')); + throw new ClientException(_m('You must be logged in to RSVP for an event.')); } return true; @@ -154,7 +154,7 @@ class CancelrsvpAction extends Action $this->elementStart('html'); $this->elementStart('head'); // TRANS: Page title after sending a notice. - $this->element('title', null, _('Event saved')); + $this->element('title', null, _m('Event saved')); $this->elementEnd('head'); $this->elementStart('body'); $this->elementStart('body'); diff --git a/plugins/Event/cancelrsvpform.php b/plugins/Event/cancelrsvpform.php index 955a782e62..14161d1897 100644 --- a/plugins/Event/cancelrsvpform.php +++ b/plugins/Event/cancelrsvpform.php @@ -102,13 +102,13 @@ class CancelRSVPForm extends Form switch (RSVP::verbFor($this->rsvp->response)) { case RSVP::POSITIVE: - $this->out->text(_('You will attend this event.')); + $this->out->text(_m('You will attend this event.')); break; case RSVP::NEGATIVE: - $this->out->text(_('You will not attend this event.')); + $this->out->text(_m('You will not attend this event.')); break; case RSVP::POSSIBLE: - $this->out->text(_('You might attend this event.')); + $this->out->text(_m('You might attend this event.')); break; } diff --git a/plugins/Event/eventform.php b/plugins/Event/eventform.php index e6bc1e7016..327c8a31e6 100644 --- a/plugins/Event/eventform.php +++ b/plugins/Event/eventform.php @@ -93,58 +93,58 @@ class EventForm extends Form $this->li(); $this->out->input('title', - _('Title'), + _m('LABEL','Title'), null, - _('Title of the event')); + _m('Title of the event')); $this->unli(); $this->li(); $this->out->input('startdate', - _('Start date'), + _m('LABEL','Start date'), null, - _('Date the event starts')); + _m('Date the event starts')); $this->unli(); $this->li(); $this->out->input('starttime', - _('Start time'), + _m('LABEL','Start time'), null, - _('Time the event starts')); + _m('Time the event starts')); $this->unli(); $this->li(); $this->out->input('enddate', - _('End date'), + _m('LABEL','End date'), null, - _('Date the event ends')); + _m('Date the event ends')); $this->unli(); $this->li(); $this->out->input('endtime', - _('End time'), + _m('LABEL','End time'), null, - _('Time the event ends')); + _m('Time the event ends')); $this->unli(); $this->li(); $this->out->input('location', - _('Location'), + _m('LABEL','Location'), null, - _('Event location')); + _m('Event location')); $this->unli(); $this->li(); $this->out->input('url', - _('URL'), + _m('LABEL','URL'), null, - _('URL for more information')); + _m('URL for more information')); $this->unli(); $this->li(); $this->out->input('description', - _('Description'), + _m('LABEL','Description'), null, - _('Description of the event')); + _m('Description of the event')); $this->unli(); $this->out->elementEnd('ul'); diff --git a/plugins/Event/newevent.php b/plugins/Event/newevent.php index 5551e0ce2c..7fe80f0857 100644 --- a/plugins/Event/newevent.php +++ b/plugins/Event/newevent.php @@ -63,7 +63,7 @@ class NeweventAction extends Action function title() { - return _('New event'); + return _m('New event'); } /** @@ -81,7 +81,7 @@ class NeweventAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_("Must be logged in to post a event."), + throw new ClientException(_m("Must be logged in to post a event."), 403); } @@ -92,7 +92,7 @@ class NeweventAction extends Action $this->title = $this->trimmed('title'); if (empty($this->title)) { - throw new ClientException(_('Title required.')); + throw new ClientException(_m('Title required.')); } $this->location = $this->trimmed('location'); @@ -102,7 +102,7 @@ class NeweventAction extends Action $startDate = $this->trimmed('startdate'); if (empty($startDate)) { - throw new ClientException(_('Start date required.')); + throw new ClientException(_m('Start date required.')); } $startTime = $this->trimmed('starttime'); @@ -114,7 +114,7 @@ class NeweventAction extends Action $endDate = $this->trimmed('enddate'); if (empty($endDate)) { - throw new ClientException(_('End date required.')); + throw new ClientException(_m('End date required.')); } $endTime = $this->trimmed('endtime'); @@ -135,13 +135,13 @@ class NeweventAction extends Action $this->endTime = strtotime($end); if ($this->startTime == 0) { - throw new Exception(sprintf(_('Could not parse date "%s"'), + throw new Exception(sprintf(_m('Could not parse date "%s"'), $start)); } if ($this->endTime == 0) { - throw new Exception(sprintf(_('Could not parse date "%s"'), + throw new Exception(sprintf(_m('Could not parse date "%s"'), $end)); } @@ -179,15 +179,15 @@ class NeweventAction extends Action { try { if (empty($this->title)) { - throw new ClientException(_('Event must have a title.')); + throw new ClientException(_m('Event must have a title.')); } if (empty($this->startTime)) { - throw new ClientException(_('Event must have a start time.')); + throw new ClientException(_m('Event must have a start time.')); } if (empty($this->endTime)) { - throw new ClientException(_('Event must have an end time.')); + throw new ClientException(_m('Event must have an end time.')); } $profile = $this->user->getProfile(); @@ -216,7 +216,7 @@ class NeweventAction extends Action $this->elementStart('html'); $this->elementStart('head'); // TRANS: Page title after sending a notice. - $this->element('title', null, _('Event saved')); + $this->element('title', null, _m('Event saved')); $this->elementEnd('head'); $this->elementStart('body'); $this->showNotice($saved); diff --git a/plugins/Event/newrsvp.php b/plugins/Event/newrsvp.php index 2b28580b1d..cb7f72d49c 100644 --- a/plugins/Event/newrsvp.php +++ b/plugins/Event/newrsvp.php @@ -58,7 +58,7 @@ class NewrsvpAction extends Action function title() { - return _('New RSVP'); + return _m('New RSVP'); } /** @@ -79,19 +79,19 @@ class NewrsvpAction extends Action $eventId = $this->trimmed('event'); if (empty($eventId)) { - throw new ClientException(_('No such event.')); + throw new ClientException(_m('No such event.')); } $this->event = Happening::staticGet('id', $eventId); if (empty($this->event)) { - throw new ClientException(_('No such event.')); + throw new ClientException(_m('No such event.')); } $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_('You must be logged in to RSVP for an event.')); + throw new ClientException(_m('You must be logged in to RSVP for an event.')); } common_debug(print_r($this->args, true)); @@ -159,7 +159,7 @@ class NewrsvpAction extends Action $this->elementStart('html'); $this->elementStart('head'); // TRANS: Page title after sending a notice. - $this->element('title', null, _('Event saved')); + $this->element('title', null, _m('Event saved')); $this->elementEnd('head'); $this->elementStart('body'); $this->elementStart('body'); diff --git a/plugins/Event/rsvpform.php b/plugins/Event/rsvpform.php index acc8cd8d12..494e64929f 100644 --- a/plugins/Event/rsvpform.php +++ b/plugins/Event/rsvpform.php @@ -98,7 +98,7 @@ class RSVPForm extends Form { $this->out->elementStart('fieldset', array('id' => 'new_rsvp_data')); - $this->out->text(_('RSVP: ')); + $this->out->text(_m('RSVP:')); $this->out->hidden('event', $this->event->id); $this->out->hidden('submitvalue', ''); diff --git a/plugins/Event/showrsvp.php b/plugins/Event/showrsvp.php index 145788feea..f08857dcc4 100644 --- a/plugins/Event/showrsvp.php +++ b/plugins/Event/showrsvp.php @@ -91,7 +91,7 @@ class ShowrsvpAction extends ShownoticeAction { // TRANS: Title for event. // TRANS: %1$s is a user nickname, %2$s is an event title. - return sprintf(_('%1$s\'s RSVP for "%2$s"'), + return sprintf(_m('%1$s\'s RSVP for "%2$s"'), $this->user->nickname, $this->event->title); } diff --git a/plugins/ExtendedProfile/lib/extendedprofilewidget.php b/plugins/ExtendedProfile/lib/extendedprofilewidget.php index 53cb5d3b87..24c8b2f3d4 100644 --- a/plugins/ExtendedProfile/lib/extendedprofilewidget.php +++ b/plugins/ExtendedProfile/lib/extendedprofilewidget.php @@ -618,7 +618,7 @@ class ExtendedProfileWidget extends Form _m('BUTTON','Save'), 'submit form_action-secondary', 'save', - _('Save details') + _m('Save details') ); } diff --git a/plugins/FacebookBridge/actions/facebooksettings.php b/plugins/FacebookBridge/actions/facebooksettings.php index b9526c1269..54e96ee400 100644 --- a/plugins/FacebookBridge/actions/facebooksettings.php +++ b/plugins/FacebookBridge/actions/facebooksettings.php @@ -111,7 +111,7 @@ class FacebooksettingsAction extends SettingsAction { * @return instructions for use */ function getInstructions() { - return _('Facebook settings'); + return _m('Facebook settings'); } /* diff --git a/plugins/FollowEveryone/FollowEveryonePlugin.php b/plugins/FollowEveryone/FollowEveryonePlugin.php index 228efc9357..04ed932122 100644 --- a/plugins/FollowEveryone/FollowEveryonePlugin.php +++ b/plugins/FollowEveryone/FollowEveryonePlugin.php @@ -159,7 +159,7 @@ class FollowEveryonePlugin extends Plugin $action->elementStart('li'); // TRANS: Checkbox label in form for profile settings. - $action->checkbox('followeveryone', _('Follow everyone'), + $action->checkbox('followeveryone', _m('Follow everyone'), ($action->arg('followeveryone')) ? $action->arg('followeveryone') : User_followeveryone_prefs::followEveryone($user->id)); diff --git a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php index 42a8a5d573..29e57c1aae 100644 --- a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php +++ b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php @@ -255,21 +255,21 @@ class GroupPrivateMessagePlugin extends Plugin $form->out->elementStart('li'); $form->out->dropdown('allow_privacy', - _('Private messages'), - array(Group_privacy_settings::SOMETIMES => _('Sometimes'), - Group_privacy_settings::ALWAYS => _('Always'), - Group_privacy_settings::NEVER => _('Never')), - _('Whether to allow private messages to this group'), + _m('Private messages'), + array(Group_privacy_settings::SOMETIMES => _m('Sometimes'), + Group_privacy_settings::ALWAYS => _m('Always'), + Group_privacy_settings::NEVER => _m('Never')), + _m('Whether to allow private messages to this group'), false, (empty($gps)) ? Group_privacy_settings::SOMETIMES : $gps->allow_privacy); $form->out->elementEnd('li'); $form->out->elementStart('li'); $form->out->dropdown('allow_sender', - _('Private sender'), - array(Group_privacy_settings::EVERYONE => _('Everyone'), - Group_privacy_settings::MEMBER => _('Member'), - Group_privacy_settings::ADMIN => _('Admin')), - _('Who can send private messages to the group'), + _m('Private sender'), + array(Group_privacy_settings::EVERYONE => _m('Everyone'), + Group_privacy_settings::MEMBER => _m('Member'), + Group_privacy_settings::ADMIN => _m('Admin')), + _m('Who can send private messages to the group'), false, (empty($gps)) ? Group_privacy_settings::MEMBER : $gps->allow_sender); $form->out->elementEnd('li'); @@ -370,8 +370,8 @@ class GroupPrivateMessagePlugin extends Plugin $action->elementStart('li', 'entity_send-a-message'); $action->element('a', array('href' => common_local_url('newgroupmessage', array('nickname' => $group->nickname)), - 'title' => _('Send a direct message to this group')), - _('Message')); + 'title' => _m('Send a direct message to this group')), + _m('Message')); // $form = new GroupMessageForm($action, $group); // $form->hidden = true; // $form->show(); @@ -454,7 +454,7 @@ class GroupPrivateMessagePlugin extends Plugin // Don't save the notice! // FIXME: this is probably cheating. - throw new ClientException(sprintf(_('Forced notice to private group message.')), + throw new ClientException(sprintf(_m('Forced notice to private group message.')), 200); } } @@ -476,7 +476,7 @@ class GroupPrivateMessagePlugin extends Plugin $gps = Group_privacy_settings::forGroup($group); if ($gps->allow_privacy == Group_privacy_settings::ALWAYS) { - $action->element('p', 'privategroupindicator', _('Private')); + $action->element('p', 'privategroupindicator', _m('Private')); } return true; diff --git a/plugins/GroupPrivateMessage/Group_message.php b/plugins/GroupPrivateMessage/Group_message.php index f8c0c707c3..9679f57031 100644 --- a/plugins/GroupPrivateMessage/Group_message.php +++ b/plugins/GroupPrivateMessage/Group_message.php @@ -123,7 +123,7 @@ class Group_message extends Memcached_DataObject { if (!$user->hasRight(Right::NEWMESSAGE)) { // XXX: maybe break this out into a separate right - throw new Exception(sprintf(_('User %s not allowed to send private messages.'), + throw new Exception(sprintf(_m('User %s is not allowed to send private messages.'), $user->nickname)); } @@ -177,7 +177,7 @@ class Group_message extends Memcached_DataObject { $group = User_group::staticGet('id', $this->to_group); if (empty($group)) { - throw new ServerException(_('No group for group message')); + throw new ServerException(_m('No group for group message')); } return $group; } @@ -186,7 +186,7 @@ class Group_message extends Memcached_DataObject { $sender = Profile::staticGet('id', $this->from_profile); if (empty($sender)) { - throw new ServerException(_('No sender for group message')); + throw new ServerException(_m('No sender for group message')); } return $sender; } diff --git a/plugins/GroupPrivateMessage/Group_message_profile.php b/plugins/GroupPrivateMessage/Group_message_profile.php index c5832a9294..cdd2839c12 100644 --- a/plugins/GroupPrivateMessage/Group_message_profile.php +++ b/plugins/GroupPrivateMessage/Group_message_profile.php @@ -156,27 +156,27 @@ class Group_message_profile extends Memcached_DataObject // TRANS: Subject for direct-message notification email. // TRANS: %s is the sending user's nickname. - $subject = sprintf(_('New private message from %s to group %s'), $from_profile->nickname, $group->nickname); + $subject = sprintf(_m('New private message from %1$s to group %2$s'), $from_profile->nickname, $group->nickname); // TRANS: Body for direct-message notification email. // TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, // TRANS: %3$s is the message content, %4$s a URL to the message, // TRANS: %5$s is the StatusNet sitename. - $body = sprintf(_("%1\$s (%2\$s) sent a private message to group %3\$s:\n\n". + $body = sprintf(_m("%1\$s (%2\$s) sent a private message to group %3\$s:\n\n". "------------------------------------------------------\n". "%4\$s\n". "------------------------------------------------------\n\n". "You can reply to their message here:\n\n". "%5\$s\n\n". - "Don't reply to this email; it won't get to them.\n\n". + "Do not reply to this email; it will not get to them.\n\n". "With kind regards,\n". - "%6\$s\n"), + "%6\$s"), $from_profile->getBestName(), $from_profile->nickname, $group->nickname, $gm->content, common_local_url('newmessage', array('to' => $from_profile->id)), - common_config('site', 'name')); + common_config('site', 'name')) . "\n"; $headers = _mail_prepare_headers('message', $to->nickname, $from_profile->nickname); diff --git a/plugins/GroupPrivateMessage/Group_privacy_settings.php b/plugins/GroupPrivateMessage/Group_privacy_settings.php index 0176d3bd6e..7447ca9a62 100644 --- a/plugins/GroupPrivateMessage/Group_privacy_settings.php +++ b/plugins/GroupPrivateMessage/Group_privacy_settings.php @@ -164,7 +164,7 @@ class Group_privacy_settings extends Memcached_DataObject $gps = self::forGroup($group); if ($gps->allow_privacy == Group_privacy_settings::NEVER) { - throw new Exception(sprintf(_('Group %s does not allow private messages.'), + throw new Exception(sprintf(_m('Group %s does not allow private messages.'), $group->nickname)); } @@ -172,27 +172,27 @@ class Group_privacy_settings extends Memcached_DataObject case Group_privacy_settings::EVERYONE: $profile = $user->getProfile(); if (Group_block::isBlocked($group, $profile)) { - throw new Exception(sprintf(_('User %s is blocked from group %s.'), + throw new Exception(sprintf(_m('User %1$s is blocked from group %2$s.'), $user->nickname, $group->nickname)); } break; case Group_privacy_settings::MEMBER: if (!$user->isMember($group)) { - throw new Exception(sprintf(_('User %s is not a member of group %s.'), + throw new Exception(sprintf(_m('User %1$s is not a member of group %2$s.'), $user->nickname, $group->nickname)); } break; case Group_privacy_settings::ADMIN: if (!$user->isAdmin($group)) { - throw new Exception(sprintf(_('User %s is not an administrator of group %s.'), + throw new Exception(sprintf(_m('User %1$s is not an administrator of group %2$s.'), $user->nickname, $group->nickname)); } break; default: - throw new Exception(sprintf(_('Unknown privacy settings for group %s.'), + throw new Exception(sprintf(_m('Unknown privacy settings for group %s.'), $group->nickname)); } diff --git a/plugins/GroupPrivateMessage/groupinbox.php b/plugins/GroupPrivateMessage/groupinbox.php index 39789cc9af..e1c4fc996d 100644 --- a/plugins/GroupPrivateMessage/groupinbox.php +++ b/plugins/GroupPrivateMessage/groupinbox.php @@ -63,7 +63,7 @@ class GroupinboxAction extends GroupDesignAction $cur = common_current_user(); if (empty($cur)) { - throw new ClientException(_('Only for logged-in users'), 403); + throw new ClientException(_m('Only for logged-in users.'), 403); } $nicknameArg = $this->trimmed('nickname'); @@ -79,17 +79,17 @@ class GroupinboxAction extends GroupDesignAction $localGroup = Local_group::staticGet('nickname', $nickname); if (empty($localGroup)) { - throw new ClientException(_('No such group'), 404); + throw new ClientException(_m('No such group.'), 404); } $this->group = User_group::staticGet('id', $localGroup->group_id); if (empty($this->group)) { - throw new ClientException(_('No such group'), 404); + throw new ClientException(_m('No such group.'), 404); } if (!$cur->isMember($this->group)) { - throw new ClientException(_('Only for members'), 403); + throw new ClientException(_m('Only for members.'), 403); } $this->page = $this->trimmed('page'); @@ -167,11 +167,11 @@ class GroupinboxAction extends GroupDesignAction $base = $this->group->getFancyName(); if ($this->page == 1) { - return sprintf(_('%s group inbox'), $base); + return sprintf(_m('%s group inbox'), $base); } else { // TRANS: Page title for any but first group page. // TRANS: %1$s is a group name, $2$s is a page number. - return sprintf(_('%1$s group inbox, page %2$d'), + return sprintf(_m('%1$s group inbox, page %2$d'), $base, $this->page); } diff --git a/plugins/GroupPrivateMessage/groupmessagecommand.php b/plugins/GroupPrivateMessage/groupmessagecommand.php index 3b3cf4cfea..bd865cb37c 100644 --- a/plugins/GroupPrivateMessage/groupmessagecommand.php +++ b/plugins/GroupPrivateMessage/groupmessagecommand.php @@ -77,7 +77,7 @@ class GroupMessageCommand extends Command $gm = Group_message::send($this->user, $group, $this->text); $channel->output($this->user, - sprintf(_('Direct message to group %s sent.'), + sprintf(_m('Direct message to group %s sent.'), $group->nickname)); return true; diff --git a/plugins/GroupPrivateMessage/groupmessageform.php b/plugins/GroupPrivateMessage/groupmessageform.php index a832ce5978..6d44096123 100644 --- a/plugins/GroupPrivateMessage/groupmessageform.php +++ b/plugins/GroupPrivateMessage/groupmessageform.php @@ -87,7 +87,7 @@ class GroupMessageForm extends Form { $this->out->element('legend', null, - sprintf(_('Message to %s'), $this->group->nickname)); + sprintf(_m('Message to %s'), $this->group->nickname)); } /** @@ -128,7 +128,7 @@ class GroupMessageForm extends Form { $this->out->element('label', array('for' => 'notice_data-text', 'id' => 'notice_data-text-label'), - sprintf(_('Direct message to %s'), $this->group->nickname)); + sprintf(_m('Direct message to %s'), $this->group->nickname)); $this->out->element('textarea', array('id' => 'notice_data-text', 'cols' => 35, @@ -140,7 +140,7 @@ class GroupMessageForm extends Form if ($contentLimit > 0) { $this->out->elementStart('dl', 'form_note'); - $this->out->element('dt', null, _('Available characters')); + $this->out->element('dt', null, _m('Available characters')); $this->out->element('dd', array('class' => 'count'), $contentLimit); $this->out->elementEnd('dl'); diff --git a/plugins/GroupPrivateMessage/newgroupmessage.php b/plugins/GroupPrivateMessage/newgroupmessage.php index 1ad24c4a0a..4271a8d22b 100644 --- a/plugins/GroupPrivateMessage/newgroupmessage.php +++ b/plugins/GroupPrivateMessage/newgroupmessage.php @@ -66,11 +66,11 @@ class NewgroupmessageAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_('Must be logged in.'), 403); + throw new ClientException(_m('Must be logged in.'), 403); } if (!$this->user->hasRight(Right::NEWMESSAGE)) { - throw new Exception(sprintf(_('User %s not allowed to send private messages.'), + throw new Exception(sprintf(_m('User %s not allowed to send private messages.'), $this->user->nickname)); } @@ -87,13 +87,13 @@ class NewgroupmessageAction extends Action $localGroup = Local_group::staticGet('nickname', $nickname); if (empty($localGroup)) { - throw new ClientException(_('No such group'), 404); + throw new ClientException(_m('No such group.'), 404); } $this->group = User_group::staticGet('id', $localGroup->group_id); if (empty($this->group)) { - throw new ClientException(_('No such group'), 404); + throw new ClientException(_m('No such group.'), 404); } // This throws an exception on error @@ -140,12 +140,12 @@ class NewgroupmessageAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); - $this->element('title', null, _('Message sent')); + $this->element('title', null, _m('Message sent')); $this->elementEnd('head'); $this->elementStart('body'); $this->element('p', array('id' => 'command_result'), - sprintf(_('Direct message to %s sent.'), + sprintf(_m('Direct message to %s sent.'), $this->group->nickname)); $this->elementEnd('body'); $this->elementEnd('html'); @@ -156,6 +156,6 @@ class NewgroupmessageAction extends Action function title() { - return sprintf(_('New message to group %s'), $this->group->nickname); + return sprintf(_m('New message to group %s'), $this->group->nickname); } } diff --git a/plugins/GroupPrivateMessage/showgroupmessage.php b/plugins/GroupPrivateMessage/showgroupmessage.php index 73293255cf..828b676548 100644 --- a/plugins/GroupPrivateMessage/showgroupmessage.php +++ b/plugins/GroupPrivateMessage/showgroupmessage.php @@ -67,7 +67,7 @@ class ShowgroupmessageAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_('Only logged-in users can view private messages.'), + throw new ClientException(_m('Only logged-in users can view private messages.'), 403); } @@ -76,23 +76,23 @@ class ShowgroupmessageAction extends Action $this->gm = Group_message::staticGet('id', $id); if (empty($this->gm)) { - throw new ClientException(_('No such message'), 404); + throw new ClientException(_m('No such message.'), 404); } $this->group = User_group::staticGet('id', $this->gm->to_group); if (empty($this->group)) { - throw new ServerException(_('Group not found.')); + throw new ServerException(_m('Group not found.')); } if (!$this->user->isMember($this->group)) { - throw new ClientException(_('Cannot read message.'), 403); + throw new ClientException(_m('Cannot read message.'), 403); } $this->sender = Profile::staticGet('id', $this->gm->from_profile); if (empty($this->sender)) { - throw new ServerException(_('No sender found.')); + throw new ServerException(_m('No sender found.')); } return true; @@ -117,7 +117,7 @@ class ShowgroupmessageAction extends Action function title() { - return sprintf(_('Message from %1$s to group %2$s on %3$s'), + return sprintf(_m('Message from %1$s to group %2$s on %3$s'), $this->sender->nickname, $this->group->nickname, common_exact_date($this->gm->created)); diff --git a/plugins/Irc/IrcPlugin.php b/plugins/Irc/IrcPlugin.php index 7a53e5cbf5..7877815604 100644 --- a/plugins/Irc/IrcPlugin.php +++ b/plugins/Irc/IrcPlugin.php @@ -290,12 +290,12 @@ class IrcPlugin extends ImPlugin { * @return boolean success value */ public function sendConfirmationCode($screenname, $code, $user, $checked = false) { - $body = sprintf(_('User "%s" on %s has said that your %s screenname belongs to them. ' . + $body = sprintf(_m('User "%1$s" on %2$s has said that your %3$s screenname belongs to them. ' . 'If that\'s true, you can confirm by clicking on this URL: ' . - '%s' . + '%4$s' . ' . (If you cannot click it, copy-and-paste it into the ' . - 'address bar of your browser). If that user isn\'t you, ' . - 'or if you didn\'t request this confirmation, just ignore this message.'), + 'address bar of your browser). If that user is not you, ' . + 'or if you did not request this confirmation, just ignore this message.'), $user->nickname, common_config('site', 'name'), $this->getDisplayName(), common_local_url('confirmaddress', array('code' => $code))); if ($this->regcheck && !$checked) { diff --git a/plugins/Irc/ircmanager.php b/plugins/Irc/ircmanager.php index 6066293311..d963735251 100644 --- a/plugins/Irc/ircmanager.php +++ b/plugins/Irc/ircmanager.php @@ -244,7 +244,7 @@ class IrcManager extends ImManager { if (!$result) { common_log_db_error($confirm, 'DELETE', __FILE__); // TRANS: Server error thrown on database error canceling IM address confirmation. - $this->serverError(_('Couldn\'t delete confirmation.')); + $this->serverError(_m('Could not delete confirmation.')); return; } } diff --git a/plugins/LdapCommon/LdapCommon.php b/plugins/LdapCommon/LdapCommon.php index 3afcd824f9..93e1e87dc0 100644 --- a/plugins/LdapCommon/LdapCommon.php +++ b/plugins/LdapCommon/LdapCommon.php @@ -165,7 +165,7 @@ class LdapCommon function changePassword($username,$oldpassword,$newpassword) { if(! isset($this->attributes['password']) || !isset($this->password_encoding)){ - //throw new Exception(_('Sorry, changing LDAP passwords is not supported at this time')); + //throw new Exception(_m('Sorry, changing LDAP passwords is not supported at this time.')); return false; } $entry = $this->get_user($username,array('dn' => 'dn')); diff --git a/plugins/LinkPreview/oembedproxyaction.php b/plugins/LinkPreview/oembedproxyaction.php index bc80ee5cf9..5d76535b22 100644 --- a/plugins/LinkPreview/oembedproxyaction.php +++ b/plugins/LinkPreview/oembedproxyaction.php @@ -56,7 +56,7 @@ class OembedproxyAction extends OembedAction // We're not a general oEmbed proxy service; limit to valid sessions. $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { - $this->clientError(_('There was a problem with your session token. '. + $this->clientError(_m('There was a problem with your session token. '. 'Try again, please.')); } diff --git a/plugins/Linkback/LinkbackPlugin.php b/plugins/Linkback/LinkbackPlugin.php index 797572d7f8..c40000921c 100644 --- a/plugins/Linkback/LinkbackPlugin.php +++ b/plugins/Linkback/LinkbackPlugin.php @@ -201,7 +201,7 @@ class LinkbackPlugin extends Plugin { $profile = $this->notice->getProfile(); - $args = array('title' => sprintf(_('%1$s\'s status on %2$s'), + $args = array('title' => sprintf(_m('%1$s\'s status on %2$s'), $profile->nickname, common_exact_date($this->notice->created)), 'excerpt' => $this->notice->content, diff --git a/plugins/ModPlus/remoteprofileaction.php b/plugins/ModPlus/remoteprofileaction.php index caa5e6fbf3..4822fc4248 100644 --- a/plugins/ModPlus/remoteprofileaction.php +++ b/plugins/ModPlus/remoteprofileaction.php @@ -15,7 +15,7 @@ class RemoteProfileAction extends ShowstreamAction $this->profile = Profile::staticGet('id', $id); if (!$this->profile) { - $this->serverError(_('User has no profile.')); + $this->serverError(_m('User has no profile.')); return false; } diff --git a/plugins/Mollom/MollomPlugin.php b/plugins/Mollom/MollomPlugin.php index 4c82c481ae..444a82adba 100644 --- a/plugins/Mollom/MollomPlugin.php +++ b/plugins/Mollom/MollomPlugin.php @@ -86,7 +86,7 @@ class MollomPlugin extends Plugin ); $response = $this->mollom('mollom.checkContent', $data); if ($response['spam'] == MOLLOM_ANALYSIS_SPAM) { - throw new ClientException(_("Spam Detected"), 400); + throw new ClientException(_m("Spam Detected."), 400); } if ($response['spam'] == MOLLOM_ANALYSIS_UNSURE) { //if unsure, let through diff --git a/plugins/OStatus/actions/usersalmon.php b/plugins/OStatus/actions/usersalmon.php index 5355aeba03..c7ec33eeec 100644 --- a/plugins/OStatus/actions/usersalmon.php +++ b/plugins/OStatus/actions/usersalmon.php @@ -157,7 +157,7 @@ class UsersalmonAction extends SalmonAction if (!empty($old)) { // TRANS: Client exception. - throw new ClientException(_('This is already a favorite.')); + throw new ClientException(_m('This is already a favorite.')); } if (!Fave::addNew($profile, $notice)) { @@ -179,7 +179,7 @@ class UsersalmonAction extends SalmonAction 'notice_id' => $notice->id)); if (empty($fave)) { // TRANS: Client exception. - throw new ClientException(_('Notice wasn\'t favorited!')); + throw new ClientException(_m('Notice was not favorited!')); } $fave->delete(); diff --git a/plugins/OpenID/finishopenidlogin.php b/plugins/OpenID/finishopenidlogin.php index 6d2c5f31f0..bc93bc21a6 100644 --- a/plugins/OpenID/finishopenidlogin.php +++ b/plugins/OpenID/finishopenidlogin.php @@ -125,12 +125,12 @@ class FinishopenidloginAction extends Action $this->elementStart('li'); $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', - _m('1-64 lowercase letters or numbers, no punctuation or spaces')); + _m('1-64 lowercase letters or numbers, no punctuation or spaces.')); $this->elementEnd('li'); $this->elementStart('li'); - $this->input('email', _('Email'), $this->getEmail(), - _('Used only for updates, announcements, '. - 'and password recovery')); + $this->input('email', _m('Email'), $this->getEmail(), + _m('Used only for updates, announcements, '. + 'and password recovery.')); $this->elementEnd('li'); // Hook point for captcha etc @@ -146,7 +146,7 @@ class FinishopenidloginAction extends Action 'class' => 'checkbox')); // TRANS: OpenID plugin link text. // TRANS: %s is a link to a licese with the license name as link text. - $message = _('My text and files are available under %s ' . + $message = _m('My text and files are available under %s ' . 'except this private data: password, ' . 'email address, IM address, and phone number.'); $link = 'error))); + $action->showForm(sprintf(_m("(reCAPTCHA error: %s)", $resp->error))); } $action->showForm(_m("Captcha does not match!")); return false; diff --git a/plugins/RequireValidatedEmail/confirmfirstemail.php b/plugins/RequireValidatedEmail/confirmfirstemail.php index 1f22487a68..974a95a7cf 100644 --- a/plugins/RequireValidatedEmail/confirmfirstemail.php +++ b/plugins/RequireValidatedEmail/confirmfirstemail.php @@ -66,7 +66,7 @@ class ConfirmfirstemailAction extends Action $user = common_current_user(); if (!empty($user)) { - throw new ClientException(_('You are already logged in.')); + throw new ClientException(_m('You are already logged in.')); } $this->code = $this->trimmed('code'); @@ -74,25 +74,25 @@ class ConfirmfirstemailAction extends Action $this->confirm = Confirm_address::staticGet('code', $this->code); if (empty($this->confirm)) { - throw new ClientException(_('Confirmation code not found.')); + throw new ClientException(_m('Confirmation code not found.')); return; } $this->user = User::staticGet('id', $this->confirm->user_id); if (empty($this->user)) { - throw new ServerException(_('No user for that confirmation code.')); + throw new ServerException(_m('No user for that confirmation code.')); } $type = $this->confirm->address_type; if ($type != 'email') { - throw new ServerException(sprintf(_('Unrecognized address type %s.'), $type)); + throw new ServerException(sprintf(_m('Unrecognized address type %s.'), $type)); } if (!empty($this->user->email) && $this->user->email == $confirm->address) { // TRANS: Client error for an already confirmed email/jabber/sms address. - throw new ClientException(_('That address has already been confirmed.')); + throw new ClientException(_m('That address has already been confirmed.')); } if ($this->isPost()) { @@ -103,10 +103,10 @@ class ConfirmfirstemailAction extends Action $confirm = $this->trimmed('confirm'); if (strlen($password) < 6) { - throw new ClientException(_('Password too short.')); + throw new ClientException(_m('Password too short.')); return; } else if (0 != strcmp($password, $confirm)) { - throw new ClientException(_("Passwords don't match.")); + throw new ClientException(_m("Passwords do not match.")); return; } @@ -162,7 +162,7 @@ class ConfirmfirstemailAction extends Action function showContent() { $this->element('p', 'instructions', - sprintf(_('You have confirmed the email address for your new user account %s. '. + sprintf(_m('You have confirmed the email address for your new user account %s. '. 'Use the form below to set your new password.'), $this->user->nickname)); @@ -172,7 +172,7 @@ class ConfirmfirstemailAction extends Action function title() { - return _('Set a password'); + return _m('Set a password'); } } @@ -188,7 +188,7 @@ class ConfirmFirstEmailForm extends Form function formLegend() { - return _('Confirm email'); + return _m('Confirm email'); } function action() @@ -206,18 +206,18 @@ class ConfirmFirstEmailForm extends Form { $this->out->elementStart('ul', 'form_data'); $this->out->elementStart('li'); - $this->out->password('password', _('New password'), - _('6 or more characters.')); + $this->out->password('password', _m('New password'), + _m('6 or more characters.')); $this->out->elementEnd('li'); $this->out->elementStart('li'); - $this->out->password('confirm', _('Confirm'), - _('Same as password above.')); + $this->out->password('confirm', _m('Confirm'), + _m('Same as password above.')); $this->out->elementEnd('li'); $this->out->elementEnd('ul'); } function formActions() { - $this->out->submit('save', _('Save')); + $this->out->submit('save', _m('Save')); } } diff --git a/plugins/SearchSub/searchsubaction.php b/plugins/SearchSub/searchsubaction.php index 67bc178df6..db1a0e9abc 100644 --- a/plugins/SearchSub/searchsubaction.php +++ b/plugins/SearchSub/searchsubaction.php @@ -75,7 +75,7 @@ class SearchsubAction extends Action if ($_SERVER['REQUEST_METHOD'] != 'POST') { // TRANS: Client error displayed trying to perform any request method other than POST. // TRANS: Do not translate POST. - $this->clientError(_('This action only accepts POST requests.')); + $this->clientError(_m('This action only accepts POST requests.')); return false; } @@ -85,7 +85,7 @@ class SearchsubAction extends Action if (!$token || $token != common_session_token()) { // TRANS: Client error displayed when the session token is not okay. - $this->clientError(_('There was a problem with your session token.'. + $this->clientError(_m('There was a problem with your session token.'. ' Try again, please.')); return false; } @@ -96,7 +96,7 @@ class SearchsubAction extends Action if (empty($this->user)) { // TRANS: Client error displayed trying to subscribe when not logged in. - $this->clientError(_('Not logged in.')); + $this->clientError(_m('Not logged in.')); return false; } @@ -106,7 +106,7 @@ class SearchsubAction extends Action if (empty($this->search)) { // TRANS: Client error displayed trying to subscribe to a non-existing profile. - $this->clientError(_('No such profile.')); + $this->clientError(_m('No such profile.')); return false; } diff --git a/plugins/SearchSub/searchsubform.php b/plugins/SearchSub/searchsubform.php index 8078cdde1b..7b05377397 100644 --- a/plugins/SearchSub/searchsubform.php +++ b/plugins/SearchSub/searchsubform.php @@ -137,6 +137,6 @@ class SearchSubForm extends Form function formActions() { - $this->out->submit('submit', _('Subscribe'), 'submit', null, _m('Subscribe to this search')); + $this->out->submit('submit', _m('BUTTON','Subscribe'), 'submit', null, _m('Subscribe to this search')); } } diff --git a/plugins/SearchSub/searchunsubform.php b/plugins/SearchSub/searchunsubform.php index 296b74f4a1..f90531f6aa 100644 --- a/plugins/SearchSub/searchunsubform.php +++ b/plugins/SearchSub/searchunsubform.php @@ -104,6 +104,6 @@ class SearchUnsubForm extends SearchSubForm function formActions() { - $this->out->submit('submit', _('Unsubscribe'), 'submit', null, _m('Unsubscribe from this search')); + $this->out->submit('submit', _m('BUTTON','Unsubscribe'), 'submit', null, _m('Unsubscribe from this search')); } } diff --git a/plugins/SubMirror/actions/mirrorsettings.php b/plugins/SubMirror/actions/mirrorsettings.php index 90bbf3dffb..d6e1ed5d1b 100644 --- a/plugins/SubMirror/actions/mirrorsettings.php +++ b/plugins/SubMirror/actions/mirrorsettings.php @@ -129,7 +129,7 @@ class MirrorSettingsAction extends SettingsAction header('Content-Type: text/html;charset=utf-8'); $this->elementStart('html'); $this->elementStart('head'); - $this->element('title', null, _('Provider add')); + $this->element('title', null, _m('Provider add')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php b/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php index 114113360e..e898ce9ae0 100644 --- a/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php +++ b/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php @@ -71,7 +71,7 @@ class SubscriptionThrottlePlugin extends Plugin $subtime = strtotime($sub->created); $now = time(); if ($now - $subtime < $seconds) { - throw new Exception(_("Too many subscriptions. Take a break and try again later.")); + throw new Exception(_m("Too many subscriptions. Take a break and try again later.")); } } } @@ -97,7 +97,7 @@ class SubscriptionThrottlePlugin extends Plugin $jointime = strtotime($mem->created); $now = time(); if ($now - $jointime < $seconds) { - throw new Exception(_("Too many memberships. Take a break and try again later.")); + throw new Exception(_m("Too many memberships. Take a break and try again later.")); } } } diff --git a/plugins/TagSub/tagsubaction.php b/plugins/TagSub/tagsubaction.php index 2e4e25d6e1..83bf106bed 100644 --- a/plugins/TagSub/tagsubaction.php +++ b/plugins/TagSub/tagsubaction.php @@ -75,7 +75,7 @@ class TagsubAction extends Action if ($_SERVER['REQUEST_METHOD'] != 'POST') { // TRANS: Client error displayed trying to perform any request method other than POST. // TRANS: Do not translate POST. - $this->clientError(_('This action only accepts POST requests.')); + $this->clientError(_m('This action only accepts POST requests.')); return false; } @@ -85,7 +85,7 @@ class TagsubAction extends Action if (!$token || $token != common_session_token()) { // TRANS: Client error displayed when the session token is not okay. - $this->clientError(_('There was a problem with your session token.'. + $this->clientError(_m('There was a problem with your session token.'. ' Try again, please.')); return false; } @@ -96,7 +96,7 @@ class TagsubAction extends Action if (empty($this->user)) { // TRANS: Client error displayed trying to subscribe when not logged in. - $this->clientError(_('Not logged in.')); + $this->clientError(_m('Not logged in.')); return false; } @@ -106,7 +106,7 @@ class TagsubAction extends Action if (empty($this->tag)) { // TRANS: Client error displayed trying to subscribe to a non-existing profile. - $this->clientError(_('No such profile.')); + $this->clientError(_m('No such profile.')); return false; } diff --git a/plugins/TagSub/tagsubform.php b/plugins/TagSub/tagsubform.php index 108558be24..169ccc4adb 100644 --- a/plugins/TagSub/tagsubform.php +++ b/plugins/TagSub/tagsubform.php @@ -137,6 +137,6 @@ class TagSubForm extends Form function formActions() { - $this->out->submit('submit', _('Subscribe'), 'submit', null, _m('Subscribe to this tag')); + $this->out->submit('submit', _m('BUTTON','Subscribe'), 'submit', null, _m('Subscribe to this tag')); } } diff --git a/plugins/TagSub/tagsubsaction.php b/plugins/TagSub/tagsubsaction.php index f11935229b..21ddf5035f 100644 --- a/plugins/TagSub/tagsubsaction.php +++ b/plugins/TagSub/tagsubsaction.php @@ -115,13 +115,13 @@ class TagSubsAction extends GalleryAction $current_user = common_current_user(); if ($this->user->id === $current_user->id) { // TRANS: Tag subscription list text when the logged in user has no tag subscriptions. - $message = _('You\'re not listening to any hash tags right now. You can push the "Subscribe" button ' . + $message = _m('You are not listening to any hash tags right now. You can push the "Subscribe" button ' . 'on any hashtag page to automatically receive any public messages on this site that use that ' . - 'tag, even if you\'re not subscribed to the poster.'); + 'tag, even if you are not subscribed to the poster.'); } else { // TRANS: Tag subscription list text when looking at the subscriptions for a of a user other // TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. - $message = sprintf(_('%s is not listening to any tags.'), $this->user->nickname); + $message = sprintf(_m('%s is not listening to any tags.'), $this->user->nickname); } } else { diff --git a/plugins/TagSub/tagunsubform.php b/plugins/TagSub/tagunsubform.php index 0b44648071..d26e99a3e5 100644 --- a/plugins/TagSub/tagunsubform.php +++ b/plugins/TagSub/tagunsubform.php @@ -104,6 +104,6 @@ class TagUnsubForm extends TagSubForm function formActions() { - $this->out->submit('submit', _('Unsubscribe'), 'submit', null, _m('Unsubscribe from this tag')); + $this->out->submit('submit', _m('BUTTON','Unsubscribe'), 'submit', null, _m('Unsubscribe from this tag')); } } diff --git a/plugins/Template/TemplatePlugin.php b/plugins/Template/TemplatePlugin.php index 80625c5b70..c013f9f4d1 100644 --- a/plugins/Template/TemplatePlugin.php +++ b/plugins/Template/TemplatePlugin.php @@ -285,7 +285,7 @@ class TemplateAction extends Action header('WWW-Authenticate: Basic realm="StatusNet API"'); // cancelled the browser login form - $this->clientError(_('Authentication error!'), $code = 401); + $this->clientError(_m('Authentication error!'), $code = 401); } else { @@ -299,7 +299,7 @@ class TemplateAction extends Action // verify that user is admin if (!($user->id == 1)) - $this->clientError(_('Only User #1 can update the template.'), $code = 401); + $this->clientError(_m('Only User #1 can update the template.'), $code = 401); // open the old template $tpl_file = $this->templateFolder() . '/index.html'; @@ -316,7 +316,7 @@ class TemplateAction extends Action } else { // bad username and password - $this->clientError(_('Authentication error!'), $code = 401); + $this->clientError(_m('Authentication error!'), $code = 401); } diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index 972fa527d4..1870c6a477 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -392,8 +392,8 @@ class TwitterauthorizationAction extends Action _m('1-64 lowercase letters or numbers, no punctuation or spaces')); $this->elementEnd('li'); $this->elementStart('li'); - $this->input('email', _('Email'), $this->getEmail(), - _('Used only for updates, announcements, '. + $this->input('email', _m('LABEL','Email'), $this->getEmail(), + _m('Used only for updates, announcements, '. 'and password recovery')); $this->elementEnd('li'); diff --git a/plugins/UserFlag/adminprofileflag.php b/plugins/UserFlag/adminprofileflag.php index df0450f66a..2f62fa7c41 100644 --- a/plugins/UserFlag/adminprofileflag.php +++ b/plugins/UserFlag/adminprofileflag.php @@ -61,7 +61,7 @@ class AdminprofileflagAction extends Action // User must be logged in. if (!common_logged_in()) { - $this->clientError(_('Not logged in.')); + $this->clientError(_m('Not logged in.')); return; } @@ -85,7 +85,7 @@ class AdminprofileflagAction extends Action // User must have the right to review flags if (!$user->hasRight(UserFlagPlugin::REVIEWFLAGS)) { - $this->clientError(_('You cannot review profile flags.')); + $this->clientError(_m('You cannot review profile flags.')); return false; } diff --git a/plugins/UserLimit/UserLimitPlugin.php b/plugins/UserLimit/UserLimitPlugin.php index ab3187299e..ad2c6e363e 100644 --- a/plugins/UserLimit/UserLimitPlugin.php +++ b/plugins/UserLimit/UserLimitPlugin.php @@ -71,7 +71,8 @@ class UserLimitPlugin extends Plugin $cnt = $cls->count(); if ($cnt >= $this->maxUsers) { - $msg = sprintf(_('Cannot register; maximum number of users (%d) reached.'), + // @todo FIXME: i18n issue. Needs plural. + $msg = sprintf(_m('Cannot register; maximum number of users (%d) reached.'), $this->maxUsers); throw new ClientException($msg); diff --git a/plugins/WikiHashtags/WikiHashtagsPlugin.php b/plugins/WikiHashtags/WikiHashtagsPlugin.php index c6c976b8f4..46ae4bc068 100644 --- a/plugins/WikiHashtags/WikiHashtagsPlugin.php +++ b/plugins/WikiHashtags/WikiHashtagsPlugin.php @@ -81,16 +81,16 @@ class WikiHashtagsPlugin extends Plugin $action->raw($html); $action->elementStart('p'); $action->element('a', array('href' => $editurl, - 'title' => sprintf(_('Edit the article for #%s on WikiHashtags'), $tag)), - _('Edit')); + 'title' => sprintf(_m('Edit the article for #%s on WikiHashtags'), $tag)), + _m('Edit')); $action->element('a', array('href' => 'http://www.gnu.org/copyleft/fdl.html', - 'title' => _('Shared under the terms of the GNU Free Documentation License'), + 'title' => _m('Shared under the terms of the GNU Free Documentation License'), 'rel' => 'license'), 'GNU FDL'); $action->elementEnd('p'); } else { $action->element('a', array('href' => $editurl), - sprintf(_('Start the article for #%s on WikiHashtags'), $tag)); + sprintf(_m('Start the article for #%s on WikiHashtags'), $tag)); } $action->elementEnd('div'); diff --git a/plugins/Xmpp/XmppPlugin.php b/plugins/Xmpp/XmppPlugin.php index 2002541782..f7df6812cf 100644 --- a/plugins/Xmpp/XmppPlugin.php +++ b/plugins/Xmpp/XmppPlugin.php @@ -354,8 +354,9 @@ class XmppPlugin extends ImPlugin $xs->text(" "); $xs->element('a', array( 'href'=>common_local_url('conversation', - array('id' => $notice->conversation)).'#notice-'.$notice->id - ),sprintf(_('[%s]'),$notice->id)); + array('id' => $notice->conversation)).'#notice-'.$notice->id), + // TRANS: %s is a notice ID. + sprintf(_m('[%s]'),$notice->id)); $xs->elementEnd('body'); $xs->elementEnd('html'); From 24945715d02e5bd7132e918d0bda37a84f7f56bc Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 30 Mar 2011 17:01:06 -0700 Subject: [PATCH 16/52] Provisional fix for ticket #3108: Facebook bridge sends "likes" as the notice's original poster instead of as the person doing the liking. Adds optional $profile parameter for Facebookclient constructor and uses that for the foreign_link lookup if provided instead of the notice's poster. --- plugins/FacebookBridge/FacebookBridgePlugin.php | 4 ++-- plugins/FacebookBridge/lib/facebookclient.php | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/plugins/FacebookBridge/FacebookBridgePlugin.php b/plugins/FacebookBridge/FacebookBridgePlugin.php index d5a3f7c633..68e931e387 100644 --- a/plugins/FacebookBridge/FacebookBridgePlugin.php +++ b/plugins/FacebookBridge/FacebookBridgePlugin.php @@ -526,7 +526,7 @@ ENDOFSCRIPT; */ function onEndFavorNotice(Profile $profile, Notice $notice) { - $client = new Facebookclient($notice); + $client = new Facebookclient($notice, $profile); $client->like(); return true; @@ -542,7 +542,7 @@ ENDOFSCRIPT; */ function onEndDisfavorNotice(Profile $profile, Notice $notice) { - $client = new Facebookclient($notice); + $client = new Facebookclient($notice, $profile); $client->unLike(); return true; diff --git a/plugins/FacebookBridge/lib/facebookclient.php b/plugins/FacebookBridge/lib/facebookclient.php index 516f252d98..37d6a0a7a0 100644 --- a/plugins/FacebookBridge/lib/facebookclient.php +++ b/plugins/FacebookBridge/lib/facebookclient.php @@ -48,7 +48,12 @@ class Facebookclient protected $notice = null; // The user's notice protected $user = null; // Sender of the notice - function __construct($notice) + /** + * + * @param Notice $notice the notice to manipulate + * @param Profile $profile local user to act as; if left empty, the notice's poster will be used. + */ + function __construct($notice, $profile=null) { $this->facebook = self::getFacebook(); @@ -60,8 +65,9 @@ class Facebookclient $this->notice = $notice; + $profile_id = $profile ? $profile->id : $notice->profile_id; $this->flink = Foreign_link::getByUserID( - $notice->profile_id, + $profile_id, FACEBOOK_SERVICE ); From 8333ac33c8fd5554c0ae61f45ddfc7c5b03f1108 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 31 Mar 2011 12:56:53 -0400 Subject: [PATCH 17/52] if user has private stream flag, set that scope --- classes/Notice.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/classes/Notice.php b/classes/Notice.php index 069d7d64ff..1b21819fbd 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -420,6 +420,18 @@ class Notice extends Memcached_DataObject $notice->scope = $scope; } + // For private streams + + $user = $profile->getUser(); + + if (!empty($user)) { + if ($user->private_stream && + ($notice->scope == Notice::PUBLIC_SCOPE || + $notice->scope == Notice::SITE_SCOPE)) { + $notice->scope |= Notice::FOLLOWER_SCOPE; + } + } + if (Event::handle('StartNoticeSave', array(&$notice))) { // XXX: some of these functions write to the DB From eeff6285ae833a540552a35a83b709a9675d93f2 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 31 Mar 2011 09:58:26 -0700 Subject: [PATCH 18/52] Make new answers work --- plugins/QnA/QnAPlugin.php | 11 +++++------ plugins/QnA/actions/qnanewanswer.php | 24 +++++++++++++----------- plugins/QnA/actions/qnashowanswer.php | 23 ++++++++++++++++++----- plugins/QnA/classes/QnA_Answer.php | 4 ++-- plugins/QnA/lib/qnaansweredform.php | 2 +- plugins/QnA/lib/qnaanswerform.php | 3 ++- 6 files changed, 41 insertions(+), 26 deletions(-) diff --git a/plugins/QnA/QnAPlugin.php b/plugins/QnA/QnAPlugin.php index 992641b18e..228b571a6e 100644 --- a/plugins/QnA/QnAPlugin.php +++ b/plugins/QnA/QnAPlugin.php @@ -120,9 +120,8 @@ class QnAPlugin extends MicroAppPlugin array('action' => 'qnanewquestion') ); $m->connect( - 'main/qna/newanswer/:id', - array('action' => 'qnanewanswer'), - array('id' => $UUIDregex) + 'main/qna/newanswer', + array('action' => 'qnanewanswer') ); $m->connect( 'question/vote/:id', @@ -304,13 +303,13 @@ class QnAPlugin extends MicroAppPlugin // TRANS: %s is the unpexpected object type. throw new Exception( sprintf( - _m('Unexpected type for QnA plugin: %s.'), + _m('Unexpected type for QnA plugin: %s.'), $notice->object_type ) ); } } - + function showNoticeQuestion($notice, $out) { $user = common_current_user(); @@ -321,7 +320,7 @@ class QnAPlugin extends MicroAppPlugin $out->elementStart('div', array('class' => 'entry-content question-content')); $question = QnA_Question::getByNotice($notice); - + if ($question) { if ($user) { $profile = $user->getProfile(); diff --git a/plugins/QnA/actions/qnanewanswer.php b/plugins/QnA/actions/qnanewanswer.php index 781ded36e6..d2558380e9 100644 --- a/plugins/QnA/actions/qnanewanswer.php +++ b/plugins/QnA/actions/qnanewanswer.php @@ -45,12 +45,12 @@ if (!defined('STATUSNET')) { */ class QnanewanswerAction extends Action { - protected $user = null; - protected $error = null; - protected $complete = null; + protected $user = null; + protected $error = null; + protected $complete = null; - protected $question = null; - protected $content = null; + protected $question = null; + protected $content = null; /** * Returns the title of the action @@ -91,19 +91,22 @@ class QnanewanswerAction extends Action $this->checkSessionToken(); } - $id = $this->trimmed('id'); + $id = substr($this->trimmed('id'), 9); + + common_debug("XXXXXXXXXXXXXXXXXX id = " . $id); + $this->question = QnA_Question::staticGet('id', $id); - + if (empty($this->question)) { // TRANS: Client exception thrown trying to respond to a non-existing question. throw new ClientException( - _m('Invalid or missing question.'), + _m('Invalid or missing question.'), 404 ); } $this->answerText = $this->trimmed('answer'); - + return true; } @@ -145,8 +148,8 @@ class QnanewanswerAction extends Action $this->showPage(); return; } - if ($this->boolean('ajax')) { + common_debug("ajaxy part"); header('Content-Type: text/xml;charset=utf-8'); $this->xw->startDocument('1.0', 'UTF-8'); $this->elementStart('html'); @@ -176,7 +179,6 @@ class QnanewanswerAction extends Action } $form = new QnaanswerForm($this->question, $this); - $form->show(); return; diff --git a/plugins/QnA/actions/qnashowanswer.php b/plugins/QnA/actions/qnashowanswer.php index d90b5c7ac6..5f3bc2eed9 100644 --- a/plugins/QnA/actions/qnashowanswer.php +++ b/plugins/QnA/actions/qnashowanswer.php @@ -69,6 +69,12 @@ class QnashowanswerAction extends ShownoticeAction throw new ClientException(_('No such answer.'), 404); } + $this->question = $this->answer->getQuestion(); + + if (empty($this->question)) { + throw new ClientException(_('No question for this answer.'), 404); + } + $this->notice = Notice::staticGet('uri', $this->answer->uri); if (empty($this->notice)) { @@ -105,9 +111,11 @@ class QnashowanswerAction extends ShownoticeAction { $question = $this->answer->getQuestion(); - return sprintf(_('%s\'s answer to "%s"'), - $this->user->nickname, - $question->title); + return sprintf( + _('%s\'s answer to "%s"'), + $this->user->nickname, + $question->title + ); } /** @@ -121,9 +129,14 @@ class QnashowanswerAction extends ShownoticeAction $this->elementStart('h1'); $this->element( 'a', - array('href' => $this->answer->url), - $this->answer->title + array('href' => $this->answer->uri), + $this->question->title ); $this->elementEnd('h1'); } + + function showContent() + { + $this->raw($this->answer->asHTML()); + } } diff --git a/plugins/QnA/classes/QnA_Answer.php b/plugins/QnA/classes/QnA_Answer.php index 349bbb0196..06e88354c9 100644 --- a/plugins/QnA/classes/QnA_Answer.php +++ b/plugins/QnA/classes/QnA_Answer.php @@ -167,11 +167,11 @@ class QnA_Answer extends Managed_DataObject */ function getQuestion() { - $question = self::staticGet('id', $this->question_id); + $question = QnA_Question::staticGet('id', $this->question_id); if (empty($question)) { throw new Exception("No question with ID {$this->question_id}"); } - return question; + return $question; } function getProfile() diff --git a/plugins/QnA/lib/qnaansweredform.php b/plugins/QnA/lib/qnaansweredform.php index a229e7f870..b1500140f3 100644 --- a/plugins/QnA/lib/qnaansweredform.php +++ b/plugins/QnA/lib/qnaansweredform.php @@ -60,7 +60,7 @@ class QnaansweredForm extends Form function __construct(QnA_Answer $answer, HTMLOutputter $out) { parent::__construct($out); - $this->question = $answer->getQuestion(); + $this->question = $answer->getQuestion(); $this->answer = $answer; } diff --git a/plugins/QnA/lib/qnaanswerform.php b/plugins/QnA/lib/qnaanswerform.php index f89f6c7889..8d78213d7c 100644 --- a/plugins/QnA/lib/qnaanswerform.php +++ b/plugins/QnA/lib/qnaanswerform.php @@ -89,7 +89,7 @@ class QnaanswerForm extends Form */ function action() { - return common_local_url('qnanewanswer', array('id' => $this->question->id)); + return common_local_url('qnanewanswer'); } /** @@ -104,6 +104,7 @@ class QnaanswerForm extends Form $id = "question-" . $question->id; $out->element('p', 'answer', $question->title); + $out->hidden('id', $id); $out->element('input', array('type' => 'text', 'name' => 'answer')); } From 4292fa1fc4ed466a55d8129d87db475817cef044 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 31 Mar 2011 22:43:57 +0200 Subject: [PATCH 19/52] Tweak page titles. Thanks @evan for thinking with me. --- actions/showstream.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/actions/showstream.php b/actions/showstream.php index fed9685b35..a2320909fc 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -67,11 +67,11 @@ class ShowstreamAction extends ProfileAction if ($this->page == 1) { // TRANS: Page title showing tagged notices in one user's stream. // TRANS: %1$s is the username, %2$s is the hash tag. - return sprintf(_('%1$s tagged %2$s'), $base, $this->tag); + return sprintf(_('Notices by %1$s tagged %2$s'), $base, $this->tag); } else { // TRANS: Page title showing tagged notices in one user's stream. // TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. - return sprintf(_('%1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page); + return sprintf(_('Notices by %1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page); } } else { if ($this->page == 1) { @@ -79,7 +79,7 @@ class ShowstreamAction extends ProfileAction } else { // TRANS: Extended page title showing tagged notices in one user's stream. // TRANS: %1$s is the username, %2$d is the page number. - return sprintf(_('%1$s, page %2$d'), + return sprintf(_('Notices by %1$s, page %2$d'), $base, $this->page); } From f64c3129429e1084a5c3a6ddf81926e0c9dfe3bc Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 31 Mar 2011 22:48:03 +0200 Subject: [PATCH 20/52] Update translator documentation. --- actions/profilesettings.php | 2 +- classes/Notice.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 86afc23af2..fbaddaa5f9 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -205,7 +205,7 @@ class ProfilesettingsAction extends SettingsAction } $this->elementStart('li'); $this->checkbox('private_stream', - // TRANS: + // TRANS: Checkbox label in profile settings. _('Make updates visible only to my followers'), ($this->arg('private_stream')) ? $this->boolean('private_stream') : $user->private_stream); diff --git a/classes/Notice.php b/classes/Notice.php index 1b21819fbd..2fac7b9e2c 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -351,6 +351,7 @@ class Notice extends Memcached_DataObject $repeat = Notice::staticGet('id', $repeat_of); if (empty($repeat)) { + // TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. throw new ClientException(_('Cannot repeat; original notice is missing or deleted.')); } From 4ac471f380b1ca9e6ec61171d9e8549a53d2ec79 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 31 Mar 2011 23:30:07 +0200 Subject: [PATCH 21/52] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 853 +++++++----- locale/arz/LC_MESSAGES/statusnet.po | 571 +++++--- locale/bg/LC_MESSAGES/statusnet.po | 571 +++++--- locale/br/LC_MESSAGES/statusnet.po | 581 +++++--- locale/ca/LC_MESSAGES/statusnet.po | 592 ++++++--- locale/cs/LC_MESSAGES/statusnet.po | 587 +++++--- locale/de/LC_MESSAGES/statusnet.po | 589 +++++--- locale/en_GB/LC_MESSAGES/statusnet.po | 584 +++++--- locale/eo/LC_MESSAGES/statusnet.po | 755 +++++++---- locale/es/LC_MESSAGES/statusnet.po | 588 +++++--- locale/fa/LC_MESSAGES/statusnet.po | 607 ++++++--- locale/fi/LC_MESSAGES/statusnet.po | 590 ++++++--- locale/fr/LC_MESSAGES/statusnet.po | 621 ++++++--- locale/fur/LC_MESSAGES/statusnet.po | 562 +++++--- locale/gl/LC_MESSAGES/statusnet.po | 589 +++++--- locale/hsb/LC_MESSAGES/statusnet.po | 586 +++++--- locale/hu/LC_MESSAGES/statusnet.po | 580 +++++--- locale/ia/LC_MESSAGES/statusnet.po | 601 ++++++--- locale/it/LC_MESSAGES/statusnet.po | 585 +++++--- locale/ja/LC_MESSAGES/statusnet.po | 584 +++++--- locale/ka/LC_MESSAGES/statusnet.po | 584 +++++--- locale/ko/LC_MESSAGES/statusnet.po | 568 +++++--- locale/mk/LC_MESSAGES/statusnet.po | 598 ++++++--- locale/ml/LC_MESSAGES/statusnet.po | 583 +++++--- locale/nb/LC_MESSAGES/statusnet.po | 575 +++++--- locale/nl/LC_MESSAGES/statusnet.po | 604 ++++++--- locale/pl/LC_MESSAGES/statusnet.po | 594 ++++++--- locale/pt/LC_MESSAGES/statusnet.po | 592 ++++++--- locale/pt_BR/LC_MESSAGES/statusnet.po | 646 ++++++--- locale/ru/LC_MESSAGES/statusnet.po | 643 ++++++--- locale/statusnet.pot | 1180 ++++++++++------- locale/sv/LC_MESSAGES/statusnet.po | 587 +++++--- locale/te/LC_MESSAGES/statusnet.po | 712 ++++++---- locale/tr/LC_MESSAGES/statusnet.po | 565 +++++--- locale/uk/LC_MESSAGES/statusnet.po | 940 ++++++++----- locale/zh_CN/LC_MESSAGES/statusnet.po | 586 +++++--- plugins/APC/locale/APC.pot | 2 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 8 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 8 +- .../locale/de/LC_MESSAGES/AccountManager.po | 8 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 8 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 8 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 8 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 8 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 8 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 8 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 8 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 8 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 8 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/ru/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 8 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 8 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../be-tarask/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/br/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/fi/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/he/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/id/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ja/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/pt/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ru/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Autocomplete.po | 8 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 8 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 9 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/gl/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 12 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 8 +- .../locale/br/LC_MESSAGES/Blacklist.po | 8 +- .../locale/de/LC_MESSAGES/Blacklist.po | 8 +- .../locale/es/LC_MESSAGES/Blacklist.po | 8 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 8 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 8 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 8 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 8 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 7 +- .../be-tarask/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/br/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/es/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/fi/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/he/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/pt/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 12 +- .../locale/zh_CN/LC_MESSAGES/BlogspamNet.po | 12 +- plugins/Bookmark/locale/Bookmark.pot | 208 ++- .../locale/ar/LC_MESSAGES/Bookmark.po | 171 ++- .../locale/br/LC_MESSAGES/Bookmark.po | 169 ++- .../locale/de/LC_MESSAGES/Bookmark.po | 169 ++- .../locale/fr/LC_MESSAGES/Bookmark.po | 171 ++- .../locale/ia/LC_MESSAGES/Bookmark.po | 171 ++- .../locale/mk/LC_MESSAGES/Bookmark.po | 171 ++- .../locale/my/LC_MESSAGES/Bookmark.po | 169 ++- .../locale/nl/LC_MESSAGES/Bookmark.po | 171 ++- .../locale/ru/LC_MESSAGES/Bookmark.po | 169 ++- .../locale/te/LC_MESSAGES/Bookmark.po | 169 ++- .../locale/uk/LC_MESSAGES/Bookmark.po | 171 ++- .../locale/zh_CN/LC_MESSAGES/Bookmark.po | 169 ++- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 8 +- .../locale/br/LC_MESSAGES/CacheLog.po | 8 +- .../locale/es/LC_MESSAGES/CacheLog.po | 8 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 8 +- .../locale/he/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 8 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 8 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 8 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 8 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 8 +- .../br/LC_MESSAGES/CasAuthentication.po | 8 +- .../de/LC_MESSAGES/CasAuthentication.po | 8 +- .../es/LC_MESSAGES/CasAuthentication.po | 8 +- .../fr/LC_MESSAGES/CasAuthentication.po | 8 +- .../ia/LC_MESSAGES/CasAuthentication.po | 8 +- .../mk/LC_MESSAGES/CasAuthentication.po | 8 +- .../nl/LC_MESSAGES/CasAuthentication.po | 8 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 8 +- .../ru/LC_MESSAGES/CasAuthentication.po | 8 +- .../uk/LC_MESSAGES/CasAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 8 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 8 +- .../br/LC_MESSAGES/ClientSideShorten.po | 8 +- .../de/LC_MESSAGES/ClientSideShorten.po | 8 +- .../es/LC_MESSAGES/ClientSideShorten.po | 8 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 8 +- .../he/LC_MESSAGES/ClientSideShorten.po | 8 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 8 +- .../id/LC_MESSAGES/ClientSideShorten.po | 8 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 8 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 8 +- plugins/Comet/locale/Comet.pot | 8 +- .../locale/be-tarask/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/br/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/de/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/es/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/fi/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/he/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/id/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/pt/LC_MESSAGES/Comet.po | 13 +- .../Comet/locale/pt_BR/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 13 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 13 +- .../Comet/locale/zh_CN/LC_MESSAGES/Comet.po | 13 +- .../locale/DirectionDetector.pot | 2 +- .../LC_MESSAGES/DirectionDetector.po | 8 +- .../br/LC_MESSAGES/DirectionDetector.po | 8 +- .../de/LC_MESSAGES/DirectionDetector.po | 8 +- .../es/LC_MESSAGES/DirectionDetector.po | 8 +- .../fi/LC_MESSAGES/DirectionDetector.po | 8 +- .../fr/LC_MESSAGES/DirectionDetector.po | 8 +- .../he/LC_MESSAGES/DirectionDetector.po | 8 +- .../ia/LC_MESSAGES/DirectionDetector.po | 8 +- .../id/LC_MESSAGES/DirectionDetector.po | 8 +- .../ja/LC_MESSAGES/DirectionDetector.po | 8 +- .../lb/LC_MESSAGES/DirectionDetector.po | 8 +- .../mk/LC_MESSAGES/DirectionDetector.po | 8 +- .../nb/LC_MESSAGES/DirectionDetector.po | 8 +- .../nl/LC_MESSAGES/DirectionDetector.po | 8 +- .../pt/LC_MESSAGES/DirectionDetector.po | 8 +- .../ru/LC_MESSAGES/DirectionDetector.po | 8 +- .../tl/LC_MESSAGES/DirectionDetector.po | 8 +- .../uk/LC_MESSAGES/DirectionDetector.po | 8 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 8 +- plugins/Directory/locale/Directory.pot | 29 +- .../locale/ia/LC_MESSAGES/Directory.po | 32 +- .../locale/mk/LC_MESSAGES/Directory.po | 32 +- .../locale/nl/LC_MESSAGES/Directory.po | 32 +- .../locale/tl/LC_MESSAGES/Directory.po | 32 +- .../locale/uk/LC_MESSAGES/Directory.po | 32 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 8 +- .../locale/br/LC_MESSAGES/DiskCache.po | 8 +- .../locale/de/LC_MESSAGES/DiskCache.po | 8 +- .../locale/es/LC_MESSAGES/DiskCache.po | 8 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 8 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 8 +- .../locale/he/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 8 +- .../locale/id/LC_MESSAGES/DiskCache.po | 8 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 8 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 8 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 8 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 8 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 8 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 8 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 8 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 8 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 8 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 8 +- .../br/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 8 +- .../de/LC_MESSAGES/EmailAuthentication.po | 8 +- .../es/LC_MESSAGES/EmailAuthentication.po | 8 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 8 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 8 +- .../he/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 8 +- .../id/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 8 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 8 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 8 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 8 +- plugins/EmailSummary/locale/EmailSummary.pot | 25 +- .../be-tarask/LC_MESSAGES/EmailSummary.po | 28 +- .../locale/br/LC_MESSAGES/EmailSummary.po | 27 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 27 +- .../locale/de/LC_MESSAGES/EmailSummary.po | 28 +- .../locale/fr/LC_MESSAGES/EmailSummary.po | 29 +- .../locale/he/LC_MESSAGES/EmailSummary.po | 27 +- .../locale/ia/LC_MESSAGES/EmailSummary.po | 27 +- .../locale/id/LC_MESSAGES/EmailSummary.po | 27 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 27 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 27 +- .../locale/pt/LC_MESSAGES/EmailSummary.po | 27 +- .../locale/ru/LC_MESSAGES/EmailSummary.po | 28 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 29 +- .../locale/zh_CN/LC_MESSAGES/EmailSummary.po | 27 +- plugins/Event/locale/Event.pot | 255 +++- plugins/Event/locale/ar/LC_MESSAGES/Event.po | 250 ++++ plugins/Event/locale/ia/LC_MESSAGES/Event.po | 209 ++- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 209 ++- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 209 ++- plugins/Event/locale/te/LC_MESSAGES/Event.po | 208 ++- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 209 ++- plugins/Event/locale/tr/LC_MESSAGES/Event.po | 207 ++- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 209 ++- .../locale/ExtendedProfile.pot | 6 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 12 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 12 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 12 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 12 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 12 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 12 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 51 +- .../FacebookBridge/locale/FacebookBridge.pot | 9 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 16 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 8 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 8 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 8 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 8 +- .../FollowEveryone/locale/FollowEveryone.pot | 7 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 12 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 12 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 12 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 12 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 12 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 12 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 12 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 12 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 12 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 8 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 8 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/br/LC_MESSAGES/Geonames.po | 8 +- .../locale/ca/LC_MESSAGES/Geonames.po | 8 +- .../locale/de/LC_MESSAGES/Geonames.po | 8 +- .../locale/eo/LC_MESSAGES/Geonames.po | 8 +- .../locale/es/LC_MESSAGES/Geonames.po | 8 +- .../locale/fi/LC_MESSAGES/Geonames.po | 8 +- .../locale/fr/LC_MESSAGES/Geonames.po | 8 +- .../locale/he/LC_MESSAGES/Geonames.po | 8 +- .../locale/ia/LC_MESSAGES/Geonames.po | 8 +- .../locale/id/LC_MESSAGES/Geonames.po | 8 +- .../locale/mk/LC_MESSAGES/Geonames.po | 8 +- .../locale/nb/LC_MESSAGES/Geonames.po | 8 +- .../locale/nl/LC_MESSAGES/Geonames.po | 8 +- .../locale/pt/LC_MESSAGES/Geonames.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Geonames.po | 8 +- .../locale/ru/LC_MESSAGES/Geonames.po | 8 +- .../locale/tl/LC_MESSAGES/Geonames.po | 8 +- .../locale/uk/LC_MESSAGES/Geonames.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Geonames.po | 8 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 8 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 8 +- .../locale/de/LC_MESSAGES/Gravatar.po | 8 +- .../locale/es/LC_MESSAGES/Gravatar.po | 8 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 8 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 8 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 8 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 8 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/GroupPrivateMessage.pot | 218 ++- .../br/LC_MESSAGES/GroupPrivateMessage.po | 183 ++- .../ia/LC_MESSAGES/GroupPrivateMessage.po | 183 ++- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 183 ++- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 183 ++- .../pt/LC_MESSAGES/GroupPrivateMessage.po | 183 ++- .../sr-ec/LC_MESSAGES/GroupPrivateMessage.po | 183 ++- .../te/LC_MESSAGES/GroupPrivateMessage.po | 183 ++- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 189 ++- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 183 ++- .../zh_CN/LC_MESSAGES/GroupPrivateMessage.po | 183 ++- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 8 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 8 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 8 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 8 +- plugins/Irc/locale/Irc.pot | 17 +- plugins/Irc/locale/fi/LC_MESSAGES/Irc.po | 21 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 21 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 21 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 21 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 21 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 21 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 21 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 21 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 8 +- .../es/LC_MESSAGES/LdapAuthentication.po | 8 +- .../fi/LC_MESSAGES/LdapAuthentication.po | 8 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 8 +- .../he/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 8 +- .../id/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ja/LC_MESSAGES/LdapAuthentication.po | 8 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../nb/LC_MESSAGES/LdapAuthentication.po | 8 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../pt/LC_MESSAGES/LdapAuthentication.po | 8 +- .../pt_BR/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ru/LC_MESSAGES/LdapAuthentication.po | 8 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/LdapAuthentication.po | 8 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 8 +- .../es/LC_MESSAGES/LdapAuthorization.po | 8 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 8 +- .../he/LC_MESSAGES/LdapAuthorization.po | 8 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 8 +- .../id/LC_MESSAGES/LdapAuthorization.po | 8 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 8 +- .../nb/LC_MESSAGES/LdapAuthorization.po | 8 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../pt/LC_MESSAGES/LdapAuthorization.po | 8 +- .../pt_BR/LC_MESSAGES/LdapAuthorization.po | 8 +- .../ru/LC_MESSAGES/LdapAuthorization.po | 8 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 8 +- .../zh_CN/LC_MESSAGES/LdapAuthorization.po | 8 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 8 +- plugins/LinkPreview/locale/LinkPreview.pot | 6 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 11 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 11 +- .../locale/he/LC_MESSAGES/LinkPreview.po | 11 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 11 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 11 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 11 +- .../locale/pt/LC_MESSAGES/LinkPreview.po | 11 +- .../locale/ru/LC_MESSAGES/LinkPreview.po | 11 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 11 +- .../locale/zh_CN/LC_MESSAGES/LinkPreview.po | 11 +- plugins/Linkback/locale/Linkback.pot | 7 +- .../locale/de/LC_MESSAGES/Linkback.po | 12 +- .../locale/es/LC_MESSAGES/Linkback.po | 12 +- .../locale/fi/LC_MESSAGES/Linkback.po | 12 +- .../locale/fr/LC_MESSAGES/Linkback.po | 12 +- .../locale/he/LC_MESSAGES/Linkback.po | 12 +- .../locale/ia/LC_MESSAGES/Linkback.po | 12 +- .../locale/id/LC_MESSAGES/Linkback.po | 12 +- .../locale/mk/LC_MESSAGES/Linkback.po | 12 +- .../locale/nb/LC_MESSAGES/Linkback.po | 12 +- .../locale/nl/LC_MESSAGES/Linkback.po | 12 +- .../locale/pt/LC_MESSAGES/Linkback.po | 12 +- .../locale/ru/LC_MESSAGES/Linkback.po | 12 +- .../locale/tl/LC_MESSAGES/Linkback.po | 12 +- .../locale/uk/LC_MESSAGES/Linkback.po | 12 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 12 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 8 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 8 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 8 +- .../locale/he/LC_MESSAGES/LogFilter.po | 8 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 8 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 8 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 8 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 8 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 8 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 8 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 8 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 8 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 8 +- .../locale/es/LC_MESSAGES/Memcache.po | 8 +- .../locale/fi/LC_MESSAGES/Memcache.po | 8 +- .../locale/fr/LC_MESSAGES/Memcache.po | 8 +- .../locale/he/LC_MESSAGES/Memcache.po | 8 +- .../locale/ia/LC_MESSAGES/Memcache.po | 8 +- .../locale/mk/LC_MESSAGES/Memcache.po | 8 +- .../locale/nb/LC_MESSAGES/Memcache.po | 8 +- .../locale/nl/LC_MESSAGES/Memcache.po | 8 +- .../locale/pt/LC_MESSAGES/Memcache.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 8 +- .../locale/ru/LC_MESSAGES/Memcache.po | 8 +- .../locale/tl/LC_MESSAGES/Memcache.po | 8 +- .../locale/uk/LC_MESSAGES/Memcache.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 8 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 8 +- .../locale/es/LC_MESSAGES/Memcached.po | 8 +- .../locale/fi/LC_MESSAGES/Memcached.po | 8 +- .../locale/fr/LC_MESSAGES/Memcached.po | 8 +- .../locale/he/LC_MESSAGES/Memcached.po | 8 +- .../locale/ia/LC_MESSAGES/Memcached.po | 8 +- .../locale/id/LC_MESSAGES/Memcached.po | 8 +- .../locale/ja/LC_MESSAGES/Memcached.po | 8 +- .../locale/mk/LC_MESSAGES/Memcached.po | 8 +- .../locale/nb/LC_MESSAGES/Memcached.po | 8 +- .../locale/nl/LC_MESSAGES/Memcached.po | 8 +- .../locale/pt/LC_MESSAGES/Memcached.po | 8 +- .../locale/ru/LC_MESSAGES/Memcached.po | 8 +- .../locale/tl/LC_MESSAGES/Memcached.po | 8 +- .../locale/uk/LC_MESSAGES/Memcached.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 8 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/id/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po | 8 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 8 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/ar/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/br/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/gl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ps/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ta/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/te/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 8 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 8 +- .../locale/es/LC_MESSAGES/ModHelper.po | 8 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 8 +- .../locale/he/LC_MESSAGES/ModHelper.po | 8 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 8 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 8 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 8 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 8 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 8 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 8 +- plugins/ModPlus/locale/ModPlus.pot | 6 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 11 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 11 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 11 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 11 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 11 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 11 +- plugins/Mollom/locale/Mollom.pot | 21 + plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/br/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/el/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/fr/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/pt/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 8 +- .../NewMenu/locale/ar/LC_MESSAGES/NewMenu.po | 6 +- .../NewMenu/locale/br/LC_MESSAGES/NewMenu.po | 6 +- .../NewMenu/locale/de/LC_MESSAGES/NewMenu.po | 6 +- .../NewMenu/locale/ia/LC_MESSAGES/NewMenu.po | 6 +- .../NewMenu/locale/mk/LC_MESSAGES/NewMenu.po | 6 +- .../NewMenu/locale/nl/LC_MESSAGES/NewMenu.po | 6 +- .../NewMenu/locale/te/LC_MESSAGES/NewMenu.po | 6 +- .../NewMenu/locale/uk/LC_MESSAGES/NewMenu.po | 6 +- .../locale/zh_CN/LC_MESSAGES/NewMenu.po | 6 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/pl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/pt/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/te/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/zh_CN/LC_MESSAGES/NoticeTitle.po | 8 +- plugins/OStatus/locale/OStatus.pot | 46 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 15 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 15 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 15 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 15 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 15 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 15 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- plugins/OpenID/locale/OpenID.pot | 27 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 30 +- .../OpenID/locale/br/LC_MESSAGES/OpenID.po | 30 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 30 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 31 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 31 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 31 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 31 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 31 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 31 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 31 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 8 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 8 +- plugins/Poll/locale/Poll.pot | 22 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 25 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 25 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 25 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 25 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 25 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 8 +- .../locale/es/LC_MESSAGES/PostDebug.po | 8 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 8 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 8 +- .../locale/he/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 8 +- .../locale/id/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 8 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 8 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 8 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 8 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/PoweredByStatusNet.pot | 2 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 8 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 8 +- plugins/RSSCloud/locale/RSSCloud.pot | 6 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 11 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 11 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 11 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 11 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 11 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 11 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 11 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 8 +- .../locale/ar/LC_MESSAGES/Realtime.po | 8 +- .../locale/br/LC_MESSAGES/Realtime.po | 8 +- .../locale/ca/LC_MESSAGES/Realtime.po | 8 +- .../locale/de/LC_MESSAGES/Realtime.po | 8 +- .../locale/fr/LC_MESSAGES/Realtime.po | 8 +- .../locale/ia/LC_MESSAGES/Realtime.po | 8 +- .../locale/mk/LC_MESSAGES/Realtime.po | 8 +- .../locale/ne/LC_MESSAGES/Realtime.po | 8 +- .../locale/nl/LC_MESSAGES/Realtime.po | 8 +- .../locale/tr/LC_MESSAGES/Realtime.po | 8 +- .../locale/uk/LC_MESSAGES/Realtime.po | 8 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/RequireValidatedEmail.pot | 67 +- .../de/LC_MESSAGES/RequireValidatedEmail.po | 58 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 58 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 58 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 58 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 58 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 58 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 58 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 8 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 8 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 8 +- plugins/SearchSub/locale/SearchSub.pot | 33 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 35 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 35 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 35 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 35 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 212 +++ plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 8 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 8 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 8 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 8 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 8 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/StrictTransportSecurity.pot | 2 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 8 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 8 +- plugins/SubMirror/locale/SubMirror.pot | 6 +- .../locale/de/LC_MESSAGES/SubMirror.po | 11 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 11 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 11 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 11 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 11 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 11 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 24 +- .../locale/SubscriptionThrottle.pot | 10 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../es/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../he/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../id/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../nb/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../pt/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../ru/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 14 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 14 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 8 +- .../locale/es/LC_MESSAGES/TabFocus.po | 8 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 8 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/he/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 8 +- .../locale/id/LC_MESSAGES/TabFocus.po | 8 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 8 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 8 +- plugins/TagSub/locale/TagSub.pot | 46 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 45 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 45 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 45 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 45 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 129 ++ plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/de/LC_MESSAGES/TightUrl.po | 8 +- .../locale/es/LC_MESSAGES/TightUrl.po | 8 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 8 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/he/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 8 +- .../locale/id/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 8 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 8 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 8 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 8 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 8 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 8 +- .../TwitterBridge/locale/TwitterBridge.pot | 11 +- .../locale/br/LC_MESSAGES/TwitterBridge.po | 15 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 15 +- .../locale/fa/LC_MESSAGES/TwitterBridge.po | 15 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 15 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 16 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 18 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 18 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 15 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 16 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 15 +- plugins/UserFlag/locale/UserFlag.pot | 10 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 14 +- .../locale/de/LC_MESSAGES/UserFlag.po | 14 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 14 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 14 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 14 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 14 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 14 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 14 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 14 +- plugins/UserLimit/locale/UserLimit.pot | 9 +- .../locale/br/LC_MESSAGES/UserLimit.po | 12 +- .../locale/de/LC_MESSAGES/UserLimit.po | 12 +- .../locale/es/LC_MESSAGES/UserLimit.po | 12 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 12 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 12 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 12 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 12 +- .../locale/he/LC_MESSAGES/UserLimit.po | 12 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 12 +- .../locale/id/LC_MESSAGES/UserLimit.po | 12 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 12 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 12 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 12 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 12 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 12 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 12 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 12 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 12 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 12 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 12 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 12 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 20 +- .../locale/br/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/de/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/fr/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/he/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/id/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/nb/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/pt/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/pt_BR/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/ru/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/tr/LC_MESSAGES/WikiHashtags.po | 22 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 22 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 8 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 8 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 8 +- plugins/Xmpp/locale/Xmpp.pot | 10 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 13 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 13 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 13 +- plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po | 13 +- plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po | 13 +- plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po | 13 +- plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po | 13 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 8 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/gl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 8 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 8 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ru/LC_MESSAGES/YammerImport.po | 8 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 8 +- 1287 files changed, 30117 insertions(+), 11276 deletions(-) create mode 100644 plugins/Event/locale/ar/LC_MESSAGES/Event.po create mode 100644 plugins/Mollom/locale/Mollom.pot create mode 100644 plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po create mode 100644 plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 02a4a0a682..2711360353 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -12,19 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:07:59+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -79,7 +79,9 @@ msgstr "حفظ إعدادت الوصول" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +93,7 @@ msgstr "احفظ" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "لا صفحة كهذه." @@ -842,16 +845,6 @@ msgstr "لا يسمح لك بحذف حالة مستخدم آخر." msgid "No such notice." msgstr "لا إشعار كهذا." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "لا يمكنك تكرار ملحوظتك الخاصة." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "كرر بالفعل هذه الملاحظة." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1000,6 +993,8 @@ msgstr "الإشعارات الموسومة ب%s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "الإشعارات التي فضلها %1$s في %2$s!" @@ -1106,9 +1101,8 @@ msgstr "لا اسم مستعار." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "لست والجًا." +msgstr "يجب أن تلج." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without @@ -1117,11 +1111,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "ليس للمستخدم ملف شخصي." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1129,10 +1125,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "قائمة بمستخدمي هذه المجموعة." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1157,6 +1155,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "قائمة بمستخدمي هذه المجموعة." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "حالة %1$s في يوم %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "أُذِن للاشتراك" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "ألغي التصريح." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1192,8 +1218,8 @@ msgstr "مفضلة فعلا." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "عضوية %s في المجموعات" #. TRANS: Subtitle for group membership feed. @@ -1206,8 +1232,7 @@ msgstr "المجموعات التي %1$s عضو فيها على %2$s" msgid "Cannot add someone else's membership." msgstr "تعذّرت إضافة عضوية شخص آخر." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "يمكن التعامل مع نشاطات الانضمام فقط." @@ -1521,6 +1546,50 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ترك المجموعة %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "لست والجًا." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "لا طلب استيثاق." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "لا ملف شخصي بهذه الهوية." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "غير مشترك" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "لا رمز تأكيد." @@ -1692,15 +1761,15 @@ msgstr "لا يسمح لك بحذف هذه المجموعة." #. TRANS: Server error displayed if a group could not be deleted. #. TRANS: %s is the name of the group that could not be deleted. -#, fuzzy, php-format +#, php-format msgid "Could not delete group %s." -msgstr "تعذر تحديث المجموعة." +msgstr "تعذّر حذف المجموعة %s." #. TRANS: Message given after deleting a group. #. TRANS: %s is the deleted group's name. -#, fuzzy, php-format +#, php-format msgid "Deleted group %s" -msgstr "%1$s ترك المجموعة %2$s" +msgstr "حُذِفت المجموعة %s" #. TRANS: Title of delete group page. #. TRANS: Form legend for deleting a group. @@ -1725,24 +1794,6 @@ msgstr "لا تحذف هذه المجموعة." msgid "Delete this group." msgstr "احذف هذه المجموعة." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "لست والجًا." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2242,15 +2293,13 @@ msgstr "لا عنوان بريد إلكتروني وارد." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. #. TRANS: Server error displayed when the user could not be updated in SMS settings. -#, fuzzy msgid "Could not update user record." msgstr "تعذّر تحديث سجل المستخدم." #. TRANS: Message given after successfully removing an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. -#, fuzzy msgid "Incoming email address removed." -msgstr "لا عنوان بريد إلكتروني وارد." +msgstr "حُذِف عنوان البريد الإلكتروني الوارد." #. TRANS: Message given after successfully adding an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. @@ -2416,14 +2465,6 @@ msgstr "لدى المستخدم هذا الدور من قبل." msgid "No profile specified." msgstr "لا ملف شخصي مُحدّد." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "لا ملف شخصي بهذه الهوية." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2705,17 +2746,16 @@ msgid "IM Preferences" msgstr "تفضيلات المحادثة الفورية" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "أرسل إشعارًا" +msgstr "أرسل لي الإشعارات" #. TRANS: Checkbox label in IM preferences form. msgid "Post a notice when my status changes." -msgstr "" +msgstr "أرسل إشعارًا عندما تتغير حالتي." #. TRANS: Checkbox label in IM preferences form. msgid "Send me replies from people I'm not subscribed to." -msgstr "" +msgstr "أرسل لي ردود الأشخاص الذين لست مشتركا بهم." #. TRANS: Checkbox label in IM preferences form. msgid "Publish a MicroID" @@ -2799,20 +2839,19 @@ msgstr "تم تعطيل الدعوات." #. TRANS: Client error displayed when trying to sent invites while not logged in. #. TRANS: %s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "يجب أن تلج لتُعدّل المجموعات." +msgstr "يجب أن تلج لتدعو مستخدمين آخرين إلى استخدام %s." #. TRANS: Form validation message when providing an e-mail address that does not validate. #. TRANS: %s is an invalid e-mail address. -#, fuzzy, php-format +#, php-format msgid "Invalid email address: %s." -msgstr "عنوان بريد إلكتروني غير صالح: %s" +msgstr "عنوان بريد غير صالح: %s." #. TRANS: Page title when invitations have been sent. -#, fuzzy msgid "Invitations sent" -msgstr "أُرسلت الدعوة" +msgstr "أرسلت الدعوات" #. TRANS: Page title when inviting potential users. msgid "Invite new users" @@ -2845,9 +2884,9 @@ msgid "This person is already a user and you were automatically subscribed:" msgid_plural "" "These people are already users and you were automatically subscribed to them:" msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[1] "هذان الشخصان مستخدمان فعلا وتم اشتراكك بهما تلقائيًا:" +msgstr[2] "هذا الشخص مستخدم فعلا وتم اشتراكك به تلقائيًا:" +msgstr[3] "هؤلاء الأشخاص مستخدمون فعلا وتم اشتراكك بهم تلقائيًا:" msgstr[4] "" msgstr[5] "" @@ -2857,9 +2896,9 @@ msgstr[5] "" msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[1] "أرسلت الدعوة إلى الشخص التالي:" +msgstr[2] "أرسلت الدعوتين إلى الشخصين التاليين:" +msgstr[3] "أرسلت الدعوات إلى الأشخاص التالين:" msgstr[4] "" msgstr[5] "" @@ -2869,6 +2908,8 @@ msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" +"سوف يتم بإبلاغك عندما يقبل من دعوتهم دعوتك ويسجلوا في الموقع. شكرا لك على " +"إنماء المجتمع!" #. TRANS: Form instructions. msgid "" @@ -2881,7 +2922,7 @@ msgstr "عناوين البريد الإلكتروني" #. TRANS: Tooltip for field label for a list of e-mail addresses. msgid "Addresses of friends to invite (one per line)." -msgstr "" +msgstr "عناوين الأصدقاء الذين تريد دعوتهم (واحد لكل سطر)." #. TRANS: Field label for a personal message to send to invitees. msgid "Personal message" @@ -2889,7 +2930,7 @@ msgstr "رسالة شخصية" #. TRANS: Tooltip for field label for a personal message to send to invitees. msgid "Optionally add a personal message to the invitation." -msgstr "" +msgstr "يمكنك إضافة رسالة شخصية اختيارية إلى الدعوة." #. TRANS: Send button for inviting friends #. TRANS: Button text for sending notice. @@ -2900,9 +2941,9 @@ msgstr "أرسل" #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral #. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is #. TRANS: the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." +msgstr "يدعوك %1$s إلى الانضمام إلى %2$s" #. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral #. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, %2$s is the @@ -2938,21 +2979,43 @@ msgid "" "\n" "Sincerely, %2$s\n" msgstr "" +"يدعوك %1$s إلى الانضمام إلى %2$s (%3$s).\n" +"\n" +"%2$s خدمة تدوين مصغر تمكنك من التواصل مع الأشخاص الذين تعرفهم والذين " +"يشاركونك نفس الاهتمامات.\n" +"\n" +"تستطيع أيضًا أن تشارك أخبارك وآراءك وما تفعل على الإنترنت مع من تعرف كما أنها " +"مكان رائع للالتقاء بأشخاص جدد يشاركونك اهتماماتك.\n" +"\n" +"يقول %1$s:\n" +"\n" +"%4$s\n" +"\n" +"يمكنك رؤية صفحة %1$s الشخصية على %2$s هنا:\n" +"\n" +"%5$s\n" +"\n" +"إذا أردت تجربة الخدمة، انقر على الوصلة أدناه لتقبل الدعوة.\n" +"\n" +"%6$s\n" +"\n" +"يمكنك تجاهل هذه الرسالة إذا لم ترغب بذلك وشكرا على وقتك.\n" +"\n" +"مع التقدير، %2$s\n" #. TRANS: Client error displayed when trying to join a group while not logged in. msgid "You must be logged in to join a group." msgstr "يجب أن تلج لتنضم إلى مجموعة." #. TRANS: Title for join group page after joining. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s joined group %2$s" -msgstr "%1$s انضم للمجموعة %2$s" +msgstr "انضم %1$s إلى المجموعة %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "مجموعة غير معروفة." +msgstr "خطأ غير معروف عند الانضمام إلى المجموعة." #. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. @@ -2979,31 +3042,31 @@ msgid "" msgstr "" #. TRANS: Client error displayed selecting a too long license title in the license admin panel. -#, fuzzy msgid "Invalid license title. Maximum length is 255 characters." -msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف." +msgstr "رخصة غير صالحة. أقصى طول 255 حرف." #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "Invalid license URL." -msgstr "" +msgstr "مسار رخصة غير صالح." #. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. msgid "Invalid license image URL." -msgstr "" +msgstr "مسار صورة الرخصة غير صالح." #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "يمكن أن تترك مسار الرخصة فارغًا أو أن تضع عنوانًا صالحًا." #. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. msgid "License image must be blank or valid URL." -msgstr "" +msgstr "يمكن أن تترك مسار صورة الرخصة فارغًا أو أن تضع عنوانًا صالحًا." #. TRANS: Form legend in the license admin panel. msgid "License selection" -msgstr "" +msgstr "اختيار الرخصة" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "خاص" @@ -3025,7 +3088,7 @@ msgstr "اختر رخصة." #. TRANS: Form legend in the license admin panel. msgid "License details" -msgstr "" +msgstr "تفاصيل الرخصة" #. TRANS: Field label in the license admin panel. msgid "Owner" @@ -3037,11 +3100,11 @@ msgstr "" #. TRANS: Field label in the license admin panel. msgid "License Title" -msgstr "" +msgstr "عنوان الرخصة" #. TRANS: Field title in the license admin panel. msgid "The title of the license." -msgstr "" +msgstr "عنوان الرخصة" #. TRANS: Field label in the license admin panel. msgid "License URL" @@ -3361,21 +3424,20 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when path not found. #. TRANS: %s is a path. -#, fuzzy, php-format +#, php-format msgid "\"%s\" not found." -msgstr "لم يُعثرعلى المستخدم." +msgstr "لم يعثر على \"%s\"." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. -#, fuzzy, php-format +#, php-format msgid "Notice %s not found." -msgstr "لم يتم العثور على وسيلة API." +msgstr "لم يعثر على الإشعار %s." #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. -#, fuzzy msgid "Notice has no profile." -msgstr "ليس للمستخدم ملف شخصي." +msgstr "لا صفحة للإشعار." #. TRANS: oEmbed title. %1$s is the author name, %2$s is the creation date. #. TRANS: Title of the page that shows a notice. @@ -3386,9 +3448,9 @@ msgstr "حالة %1$s في يوم %2$s" #. TRANS: Server error displayed in oEmbed action when attachment not found. #. TRANS: %d is an attachment ID. -#, fuzzy, php-format +#, php-format msgid "Attachment %s not found." -msgstr "لم يُعثر على المستخدم المستلم." +msgstr "لم يعثر على المرفق %s." #. TRANS: Server error displayed in oEmbed request when a path is not supported. #. TRANS: %s is a path. @@ -3397,9 +3459,9 @@ msgid "\"%s\" not supported for oembed requests." msgstr "" #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "نوع المحتوى " +msgstr "نوع المحتوى %s غير مدعوم." #. TRANS: Error message displaying attachments. %s is the site's base URL. #, php-format @@ -3585,9 +3647,8 @@ msgid "Site path." msgstr "مسار الموقع." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Locale directory" -msgstr "دليل السمات" +msgstr "دليل المحليات" #. TRANS: Field title in Paths admin panel. #, fuzzy @@ -3723,6 +3784,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "مطلقا" @@ -3874,9 +3936,12 @@ msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك ا #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "تكلم عن نفسك واهتمامتك في %d حرف" msgstr[1] "تكلم عن نفسك واهتمامتك في %d حرف" msgstr[2] "تكلم عن نفسك واهتمامتك في %d حرف" @@ -3885,10 +3950,11 @@ msgstr[4] "تكلم عن نفسك واهتمامتك في %d حرف" msgstr[5] "تكلم عن نفسك واهتمامتك في %d حرف" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." msgstr "صِف نفسك واهتماماتك" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3901,7 +3967,9 @@ msgid "Location" msgstr "الموقع" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" #. TRANS: Checkbox label in form for profile settings. @@ -3909,6 +3977,7 @@ msgid "Share my current location when posting notices" msgstr "شارك مكاني الحالي عند إرسال إشعارات" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "الوسوم" @@ -3943,6 +4012,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "اشترك تلقائيًا بأي شخص يشترك بي (يفضل أن يستخدم لغير البشر)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "الاشتراكات" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3979,7 +4069,7 @@ msgstr "وسم غير صالح: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "تعذّر تحديث سجل المستخدم." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3988,6 +4078,7 @@ msgid "Could not save location prefs." msgstr "لم يمكن حفظ تفضيلات الموقع." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "تعذّر حفظ الوسوم." @@ -3998,9 +4089,8 @@ msgstr "حُفظت الإعدادات." #. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup. #. TRANS: Page title for page where a user account can be restored from backup. -#, fuzzy msgid "Restore account" -msgstr "أنشئ حسابًا" +msgstr "استعادة الحساب" #. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. #. TRANS: %s is the page limit. @@ -4009,9 +4099,8 @@ msgid "Beyond the page limit (%s)." msgstr "بعد حد الصفحة (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public stream." -msgstr "تعذّر إنشاء الكنى." +msgstr "تعذّرت استعادة الدفق العام." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4319,29 +4408,7 @@ msgstr "لا يُستخدم إلا للإبلاغ عن التطورات والت msgid "Longer name, preferably your \"real\" name." msgstr "اسم أطول. يُفضَّل أن يكون اسمك \"الحقيقي\"." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "تكلم عن نفسك واهتمامتك في %d حرف" -msgstr[1] "تكلم عن نفسك واهتمامتك في %d حرف" -msgstr[2] "تكلم عن نفسك واهتمامتك في %d حرف" -msgstr[3] "تكلم عن نفسك واهتمامتك في %d حرف" -msgstr[4] "تكلم عن نفسك واهتمامتك في %d حرف" -msgstr[5] "تكلم عن نفسك واهتمامتك في %d حرف" - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "صِف نفسك واهتماماتك" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "سجّل" @@ -4436,6 +4503,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4470,16 +4538,8 @@ msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار msgid "No notice specified." msgstr "لا ملاحظة محددة." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "لا يمكنك تكرار ملاحظتك الشخصية." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "أنت كررت هذه الملاحظة بالفعل." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "مكرر" @@ -4615,9 +4675,8 @@ msgid "" msgstr "" #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. -#, fuzzy msgid "Upload the file" -msgstr "ارفع ملفًا" +msgstr "ارفع الملف" #. TRANS: Client error displayed when trying to revoke a role without having the right to do that. msgid "You cannot revoke user roles on this site." @@ -4634,6 +4693,7 @@ msgid "StatusNet" msgstr "ستاتس نت" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." @@ -4654,7 +4714,6 @@ msgid "Session settings for this StatusNet site" msgstr "" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "الجلسات" @@ -4772,7 +4831,7 @@ msgstr "" #. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" @@ -4783,14 +4842,14 @@ msgstr "" #. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in. #. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page. #. TRANS: (link text)[link] is a Mark Down link. -#, fuzzy, php-format +#, php-format msgid "" "%s hasn't added any favorite notices yet. Why not [register an account](%%%%" "action.register%%%%) and then post something interesting they would add to " "their favorites :)" msgstr "" -"%s لم يضف أي إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action." -"register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)" +"%s لم يضف أي إشعارات إلى مفضلته إلى الآن. لمَ لا [تسجل حسابًا](%%%%action." +"register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته؟ :)" #. TRANS: Page notice for show favourites page. msgid "This is a way to share what you like." @@ -4915,6 +4974,11 @@ msgstr "الإشعارات التي فضلها %1$s في %2$s!" msgid "Message from %1$s on %2$s" msgstr "نتائج البحث ل\"%1$s\" على %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "المراسلة الفورية غير متوفرة." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "حُذف الإشعار." @@ -4922,20 +4986,20 @@ msgstr "حُذف الإشعار." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s، الصفحة %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s، الصفحة %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4985,6 +5049,8 @@ msgid "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." msgstr "" +"يمكن أن تجرب تنبيه %1$s أو [إرسال شيء ما](%%%%action.newnotice%%%%?" +"status_textarea=%2$s)." #. TRANS: Announcement for anonymous users showing a stream if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. @@ -5019,6 +5085,7 @@ msgid "Repeat of %s" msgstr "تكرار ل%s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." @@ -5027,7 +5094,6 @@ msgid "User is already silenced." msgstr "المستخدم مسكت من قبل." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "الموقع" @@ -5059,21 +5125,18 @@ msgid "Dupe limit must be one or more seconds." msgstr "" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "عام" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "اسم الموقع" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "اسم موقعك، \"التدوين المصغر لشركتك\" مثلا" +msgstr "اسم موقعك، \"مدونة شركتك المصغرة\" مثلا." #. TRANS: Field label on site settings panel. msgid "Brought by" @@ -5310,59 +5373,73 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#, fuzzy msgid "No code entered." -msgstr "لم تدخل رمزًا" +msgstr "لم تدخل رمزًا." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. #, fuzzy msgid "Manage snapshot configuration" msgstr "غيّر ضبط الموقع" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "محتوى إشعار غير صالح." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "مسار شعار غير صالح." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "في مهمة مُجدولة" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "التكرار" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "بلّغ عن المسار" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "أرسل" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "اذف إعدادت الموقع" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5375,6 +5452,27 @@ msgstr "لست مُشتركًا بأي أحد." msgid "Could not save subscription." msgstr "تعذّر حفظ الاشتراك." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "عضوية %s في المجموعات" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s أعضاء المجموعة, الصفحة %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "قائمة بمستخدمي هذه المجموعة." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5486,31 +5584,43 @@ msgstr "رسائل قصيرة" msgid "Notices tagged with %1$s, page %2$d" msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "لا مدخل هوية." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, fuzzy, php-format msgid "Tag %s" msgstr "الوسوم" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "ملف المستخدم الشخصي" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "اوسم المستخدم" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5518,14 +5628,23 @@ msgid "" msgstr "" "سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "الوسوم" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "استخدم هذا النموذج لتعدل تطبيقك." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "لا وسم كهذا." @@ -5533,24 +5652,29 @@ msgstr "لا وسم كهذا." msgid "You haven't blocked that user." msgstr "لم تمنع هذا المستخدم." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "المستخدم ليس في صندوق الرمل." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "المستخدم ليس مُسكتًا." -#, fuzzy -msgid "No profile ID in request." -msgstr "لا طلب استيثاق." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "غير مشترك" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "إعدادات المراسلة الفورية" @@ -5565,10 +5689,12 @@ msgstr "أدر خيارات أخرى عديدة." msgid " (free service)" msgstr " (خدمة حرة)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "لا شيء" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5580,15 +5706,19 @@ msgstr "قصّر المسارات بـ" msgid "Automatic shortening service to use." msgstr "خدمة التقصير المطلوب استخدامها." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5598,13 +5728,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "محتوى إشعار غير صالح." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "محتوى إشعار غير صالح." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5622,15 +5756,14 @@ msgid "Invalid bio limit. Must be numeric." msgstr "" #. TRANS: Form validation error in user admin panel when welcome text is too long. -#, fuzzy msgid "Invalid welcome text. Maximum length is 255 characters." -msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف." +msgstr "رسالة ترحيب غير صالحة. أقصى طول 255 حرف." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." -msgstr "" +msgstr "اشتراك مبدئي غير صالح: \"%1$s\" ليس مستخدمًا." msgid "Profile" msgstr "الملف الشخصي" @@ -5652,7 +5785,6 @@ msgid "New user welcome" msgstr "ترحيب المستخدمين الجدد" #. TRANS: Tooltip in user admin panel for setting new user welcome text. -#, fuzzy msgid "Welcome text for new users (maximum 255 characters)." msgstr "نص الترحيب بالمستخدمين الجدد (255 حرفًا كحد أقصى)." @@ -5681,41 +5813,37 @@ msgid "Save user settings." msgstr "احفظ إعدادات المستخدم." #. TRANS: Page title. -#, fuzzy msgid "Authorize subscription" -msgstr "جميع الاشتراكات" +msgstr "التصريح للاشتراكات" -#. TRANS: Page notice on "Auhtorize subscription" page. -#, fuzzy +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " "click \"Reject\"." msgstr "" -"يُرجى التحقق من هذه التفاصيل للتأكد من أنك تريد الاستماع لإشعارات هذا " +"يُرجى التحقق من هذه التفاصيل للتأكد من أنك تريد الاشتراك بإشعارات هذا " "المستخدم. إذا لم تطلب للتو الاستماع لإشعارات شخص ما فانقر \"ارفض\"." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. -#, fuzzy +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "اقبل" #. TRANS: Title for button on Authorise Subscription page. -#, fuzzy msgid "Subscribe to this user." msgstr "اشترك بهذا المستخدم" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. -#, fuzzy +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "ارفض" #. TRANS: Title for button on Authorise Subscription page. -#, fuzzy msgid "Reject this subscription." msgstr "ارفض هذا الاشتراك" @@ -5724,13 +5852,13 @@ msgid "No authorization request!" msgstr "لا طلب تصريح!" #. TRANS: Accept message header from Authorise subscription page. -#, fuzzy msgid "Subscription authorized" -msgstr "رُفض الاشتراك" +msgstr "أُذِن للاشتراك" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5738,9 +5866,10 @@ msgstr "" msgid "Subscription rejected" msgstr "رُفض الاشتراك" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5752,15 +5881,15 @@ msgstr "" #. TRANS: Exception thrown when listenee URI is too long for an authorisation request. #. TRANS: %s is a listenee URI. -#, fuzzy, php-format +#, php-format msgid "Listenee URI \"%s\" is too long." -msgstr "المسار المصدر طويل جدًا." +msgstr "مسار المستمع \"%s\" طويل للغاية." #. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. #. TRANS: %s is a listenee URI. #, php-format msgid "Listenee URI \"%s\" is a local user." -msgstr "" +msgstr "مسار المستمع \"%s\" لمستخدم محلي." #. TRANS: Exception thrown when profile URL is a local user for an authorisation request. #. TRANS: %s is a profile URL. @@ -5768,14 +5897,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -5811,9 +5932,8 @@ msgid "Enjoy your hotdog!" msgstr "استمتع بالنقانق!" #. TRANS: Form legend on Profile design page. -#, fuzzy msgid "Design settings" -msgstr "اذف إعدادت الموقع" +msgstr "إعدادات التصميم" #. TRANS: Checkbox label on Profile design page. msgid "View profile designs" @@ -5824,9 +5944,8 @@ msgid "Show or hide profile designs." msgstr "أظهر أو أخفِ تصاميم الملفات الشخصية." #. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy msgid "Background file" -msgstr "الخلفية" +msgstr "ملف الخلفية" #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. @@ -5999,18 +6118,6 @@ msgstr[5] "" msgid "Invalid filename." msgstr "اسم ملف غير صالح." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "الانضمام للمجموعة فشل." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "ليس جزءا من المجموعة." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "ترك المجموعة فشل." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6023,6 +6130,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "الانضمام للمجموعة فشل." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "ليس جزءا من المجموعة." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "ترك المجموعة فشل." + #. TRANS: Activity title. msgid "Join" msgstr "انضم" @@ -6031,7 +6150,7 @@ msgstr "انضم" #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "انضم %1$s إلى مجموعة %2$s." #. TRANS: Server exception thrown when updating a local group fails. msgid "Could not update local group." @@ -6095,6 +6214,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "أنت ممنوع من إرسال رسائل مباشرة." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "لا يمكنك تكرار ملحوظتك الخاصة." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "لا يمكنك تكرار ملاحظتك الشخصية." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "لا يمكنك تكرار ملحوظتك الخاصة." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "لا يمكنك تكرار ملحوظتك الخاصة." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "أنت كررت هذه الملاحظة بالفعل." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "ليس للمستخدم إشعار أخير" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6121,16 +6270,13 @@ msgstr "تعذر تحديث المجموعة المحلية." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6181,9 +6327,11 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "اسمح" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6249,18 +6397,24 @@ msgid "User deletion in progress..." msgstr "حذف المستخدم قيد التنفيذ..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "عدّل إعدادات الملف الشخصي" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "عدّل" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "أرسل رسالة مباشرة إلى هذا المستخدم" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "رسالة" @@ -6282,10 +6436,6 @@ msgctxt "role" msgid "Moderator" msgstr "مراقب" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "اشترك" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6298,10 +6448,9 @@ msgstr "صفحة غير مُعنونة" #. TRANS: Localized tooltip for '...' expansion button on overlong remote messages. msgctxt "TOOLTIP" msgid "Show more" -msgstr "" +msgstr "اعرض المزيد" #. TRANS: Inline reply form submit button: submits a reply comment. -#, fuzzy msgctxt "BUTTON" msgid "Reply" msgstr "رُد" @@ -6309,28 +6458,27 @@ msgstr "رُد" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. msgid "Write a reply..." -msgstr "" +msgstr "اكتب ردًا..." -#, fuzzy msgid "Status" -msgstr "ستاتس نت" +msgstr "الحالة" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" "**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." -"broughtbyurl%%). " +"broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "" +msgstr "**%%site.name%%** خدمة تدوين مصغر." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #. TRANS: Make sure there is no whitespace between "]" and "(". @@ -6350,23 +6498,23 @@ msgstr "" #. TRANS: %1$s is the site name. #, php-format msgid "Content and data of %1$s are private and confidential." -msgstr "" +msgstr "محتويات وبيانات%1$s خاصة وسرية." #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. #, php-format msgid "Content and data copyright by %1$s. All rights reserved." -msgstr "" +msgstr "حقوق نشر المحتويات والبيانات ل%1$s. كافة الحقوق محفوظة." #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. msgid "Content and data copyright by contributors. All rights reserved." -msgstr "" +msgstr "حقوق نشر المحتويات والبيانات للمساهمين. كافة الحقوق محفوظة." #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #, php-format msgid "All %1$s content and data are available under the %2$s license." -msgstr "" +msgstr "جميع محتويات وبيانات %1$s متاحة وفقا لرخصة %2$s." #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. @@ -6383,9 +6531,9 @@ msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "لغة غير معروفة \"%s\"." +msgstr "فعل غير معروف: \"%s\"." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." @@ -6542,9 +6690,13 @@ msgstr "إشعار الموقع" msgid "Snapshots configuration" msgstr "ضبط المسارات" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" -msgstr "" +msgstr "اضبط رخصة الموقع" #. TRANS: Menu item title/tooltip #, fuzzy @@ -6697,6 +6849,10 @@ msgstr "" msgid "Cancel" msgstr "ألغِ" +#. TRANS: Submit button title. +msgid "Save" +msgstr "احفظ" + msgid " by " msgstr "" @@ -6764,6 +6920,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "جميع الاشتراكات" + #. TRANS: Title for command results. msgid "Command results" msgstr "نتائج الأمر" @@ -6815,9 +6977,9 @@ msgstr "" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#, fuzzy, php-format +#, php-format msgid "Nudge sent to %s." -msgstr "أرسل التنبيه" +msgstr "أرسل تنبيه إلى %s." #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. @@ -6834,9 +6996,8 @@ msgstr "" "الإشعارات: %3$s" #. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. -#, fuzzy msgid "Could not create favorite: already favorited." -msgstr "تعذّر إنشاء مفضلة." +msgstr "تعذّر إنشاء مفضلة: مفضلة فعلا." #. TRANS: Text shown when a notice has been marked as favourite successfully. #, fuzzy @@ -6847,17 +7008,17 @@ msgstr "هذا الإشعار مفضلة مسبقًا!" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #, php-format msgid "%1$s joined group %2$s." -msgstr "" +msgstr "انضم %1$s إلى مجموعة %2$s." #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #, php-format msgid "%1$s left group %2$s." -msgstr "" +msgstr "غادر %1$s إلى مجموعة %2$s." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#, fuzzy, php-format +#, php-format msgctxt "WHOIS" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -6911,19 +7072,14 @@ msgid "You can't send a message to this user." msgstr "لا يمكنك إرسال رسائل إلى هذا المستخدم." #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#, fuzzy msgid "Error sending direct message." -msgstr "أنت ممنوع من إرسال رسائل مباشرة." +msgstr "خطأ عند إرسال رسالة مباشرة." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#, fuzzy, php-format +#, php-format msgid "Notice from %s repeated." -msgstr "الإشعار من %s مكرر" - -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "خطأ تكرار الإشعار." +msgstr "كُرّر إشعار %s." #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. @@ -7080,56 +7236,52 @@ msgstr "تعذّر إطفاء الإشعارات." #. TRANS: Help message for IM/SMS command "help" msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "يعرض هذه المساعدة" #. TRANS: Help message for IM/SMS command "follow " -#, fuzzy msgctxt "COMMANDHELP" msgid "subscribe to user" -msgstr "اشترك بهذا المستخدم" +msgstr "يشترك بمستخدم" #. TRANS: Help message for IM/SMS command "groups" msgctxt "COMMANDHELP" msgid "lists the groups you have joined" -msgstr "" +msgstr "يسرد المجموعات التي أنت مشترك بها" #. TRANS: Help message for IM/SMS command "subscriptions" msgctxt "COMMANDHELP" msgid "list the people you follow" -msgstr "" +msgstr "يسرد الأشخاص الذي تتباعهم" #. TRANS: Help message for IM/SMS command "subscribers" msgctxt "COMMANDHELP" msgid "list the people that follow you" -msgstr "" +msgstr "يسرد الأشخاص الذين يتابعونك" #. TRANS: Help message for IM/SMS command "leave " -#, fuzzy msgctxt "COMMANDHELP" msgid "unsubscribe from user" -msgstr "ألغِ الاشتراك مع هذا المستخدم" +msgstr "يلغي الاشتراك بالمستخدم" #. TRANS: Help message for IM/SMS command "d " -#, fuzzy msgctxt "COMMANDHELP" msgid "direct message to user" -msgstr "رسالة مباشرة %s" +msgstr "رسالة مباشرة إلى مستخدم" #. TRANS: Help message for IM/SMS command "get " msgctxt "COMMANDHELP" msgid "get last notice from user" -msgstr "" +msgstr "يجلب آخر إشعار من مستخدم" #. TRANS: Help message for IM/SMS command "whois " -#, fuzzy msgctxt "COMMANDHELP" msgid "get profile info on user" -msgstr "معلومات الملف الشخصي" +msgstr "يجلب معلومات الملف الشخصي لمستخدم" #. TRANS: Help message for IM/SMS command "lose " msgctxt "COMMANDHELP" msgid "force user to stop following you" -msgstr "" +msgstr "يجبر مستخدم على التوقف عن متابعتك" #. TRANS: Help message for IM/SMS command "fav " msgctxt "COMMANDHELP" @@ -7592,9 +7744,8 @@ msgid "Not an image or corrupt file." msgstr "" #. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there. -#, fuzzy msgid "Lost our file." -msgstr "لا ملف كهذا." +msgstr "ضاع الملف." #. TRANS: Exception thrown when trying to resize an unknown file type. #. TRANS: Exception thrown when trying resize an unknown file type. @@ -7711,6 +7862,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7867,12 +8032,15 @@ msgid "" "\n" "\t%s" msgstr "" +"يمكن تقرأ المحادثة كاملة هنا:\n" +"\n" +"%s" #. TRANS: E-mail subject for notice notification. #. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s (@%2$s) sent a notice to your attention" -msgstr "لقد أرسل %s (@%s) إشعارًا إليك" +msgstr "أرسل %1$s (@%2$s) إشعارًا إليك" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, @@ -8140,7 +8308,9 @@ msgstr "رُد" msgid "Delete this notice" msgstr "احذف هذا الإشعار" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "الإشعار مكرر" msgid "Update your status..." @@ -8423,28 +8593,77 @@ msgstr "أسكِت" msgid "Silence this user" msgstr "أسكِت هذا المستخدم" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "الملف الشخصي" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "الاشتراكات" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "الأشخاص الذين اشترك بهم %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "المشتركون" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "الأشخاص المشتركون ب%s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "مجموعات" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "المجموعات التي %s عضو فيها" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "ادعُ" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s" msgid "Subscribe to this user" msgstr "اشترك بهذا المستخدم" +msgid "Subscribe" +msgstr "اشترك" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8519,11 +8738,11 @@ msgstr[5] "" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" msgid "You" -msgstr "" +msgstr "أنت" #. TRANS: Separator in list of user names like "You, Bob, Mary". msgid ", " -msgstr "" +msgstr " و " #. TRANS: For building a list such as "You, bob, mary and 5 others have favored this notice". #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. @@ -8568,6 +8787,28 @@ msgstr[5] "كرّر %d شخص هذا الإشعار." msgid "Top posters" msgstr "أعلى المرسلين" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "إلى" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "فعل غير معروف: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8699,6 +8940,28 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" +#~ msgid "Already repeated that notice." +#~ msgstr "كرر بالفعل هذه الملاحظة." + #, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "هذه طويلة جدًا. أطول حجم للإشعار %d حرفًا." +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "تكلم عن نفسك واهتمامتك في %d حرف" +#~ msgstr[1] "تكلم عن نفسك واهتمامتك في %d حرف" +#~ msgstr[2] "تكلم عن نفسك واهتمامتك في %d حرف" +#~ msgstr[3] "تكلم عن نفسك واهتمامتك في %d حرف" +#~ msgstr[4] "تكلم عن نفسك واهتمامتك في %d حرف" +#~ msgstr[5] "تكلم عن نفسك واهتمامتك في %d حرف" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "صِف نفسك واهتماماتك" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "" +#~ "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s، الصفحة %2$d" + +#~ msgid "Error repeating notice." +#~ msgstr "خطأ تكرار الإشعار." diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index dad6c27d00..52678f2287 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:01+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -81,7 +81,9 @@ msgstr "اذف إعدادت الموقع" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -94,6 +96,7 @@ msgstr "أرسل" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "لا وسم كهذا." @@ -857,16 +860,6 @@ msgstr "لا يمكنك حذف المستخدمين." msgid "No such notice." msgstr "لا إشعار كهذا." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "الملاحظه اتكررت فعلا." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1018,6 +1011,8 @@ msgstr "الإشعارات الموسومه ب%s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "الإشعارات الموسومه ب%s" @@ -1137,11 +1132,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "ليس للمستخدم ملف شخصى." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1149,10 +1146,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "قائمه بمستخدمى هذه المجموعه." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1177,6 +1176,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "قائمه بمستخدمى هذه المجموعه." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "ما نفعش يضم %1$s للجروپ %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s ساب جروپ %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "رُفض الاشتراك" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "لا رمز تأكيد." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1219,7 +1246,7 @@ msgstr "أضف إلى المفضلات" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "أعضاء مجموعه %s" #. TRANS: Subtitle for group membership feed. @@ -1233,8 +1260,7 @@ msgstr "المجموعات التى %s عضو فيها" msgid "Cannot add someone else's membership." msgstr "تعذّر إدراج اشتراك جديد." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "ابحث عن محتويات فى الإشعارات" @@ -1555,6 +1581,50 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ساب جروپ %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "لست والجًا." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "ما فيش طلب تسجيل دخول مطلوب." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "لا ملف شخصى بهذه الهويه." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "ألغِ الاشتراك" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "لا رمز تأكيد." @@ -1768,24 +1838,6 @@ msgstr "لا تحذف هذا الإشعار" msgid "Delete this group." msgstr "احذف هذا المستخدم" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "لست والجًا." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2484,14 +2536,6 @@ msgstr "المستخدم مسكت من قبل." msgid "No profile specified." msgstr "لا ملف شخصى مُحدّد." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "لا ملف شخصى بهذه الهويه." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3078,6 +3122,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "خاص" @@ -3825,6 +3870,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "مطلقا" @@ -3975,9 +4021,12 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "صِف نفسك واهتماماتك" msgstr[1] "صِف نفسك واهتماماتك" msgstr[2] "صِف نفسك واهتماماتك" @@ -3986,10 +4035,12 @@ msgstr[4] "صِف نفسك واهتماماتك" msgstr[5] "صِف نفسك واهتماماتك" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "صِف نفسك واهتماماتك" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4002,7 +4053,8 @@ msgid "Location" msgstr "الموقع" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "" #. TRANS: Checkbox label in form for profile settings. @@ -4010,6 +4062,7 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "الوسوم" @@ -4042,6 +4095,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "الاشتراكات" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4078,7 +4152,7 @@ msgstr "وسم غير صالح: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "تعذّر تحديث المستخدم." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4087,6 +4161,7 @@ msgid "Could not save location prefs." msgstr "لم يمكن حفظ تفضيلات الموقع." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "تعذّر حفظ الوسوم." @@ -4428,29 +4503,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "صِف نفسك واهتماماتك" -msgstr[1] "صِف نفسك واهتماماتك" -msgstr[2] "صِف نفسك واهتماماتك" -msgstr[3] "صِف نفسك واهتماماتك" -msgstr[4] "صِف نفسك واهتماماتك" -msgstr[5] "صِف نفسك واهتماماتك" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "صِف نفسك واهتماماتك" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4546,6 +4599,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4580,16 +4634,8 @@ msgstr "" msgid "No notice specified." msgstr "ما فيش ملاحظه متحدده." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "ما ينفعش تكرر الملاحظه بتاعتك." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "انت عيدت الملاحظه دى فعلا." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "مكرر" @@ -4748,6 +4794,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." @@ -5030,6 +5077,11 @@ msgstr "أهلا بكم فى %1$s يا @%2$s!" msgid "Message from %1$s on %2$s" msgstr "نتايج التدوير لـ\"%1$s\" على %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "المراسله الفوريه غير متوفره." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "حُذف الإشعار." @@ -5037,20 +5089,20 @@ msgstr "حُذف الإشعار." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s و الصحاب, صفحه %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "الإشعارات الموسومه ب%s" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s و الصحاب, صفحه %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "الإشعارات الموسومه ب%s" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5132,6 +5184,7 @@ msgid "Repeat of %s" msgstr "تكرارات %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." @@ -5434,53 +5487,68 @@ msgstr "" msgid "No code entered." msgstr "لا محتوى!" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "ضبط التصميم" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "مسار شعار غير صالح." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "فى مهمه مُجدولة" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "التكرار" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "بلّغ عن المسار" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "أرسل" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "اذف إعدادت الموقع" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5493,6 +5561,27 @@ msgstr "لست مُشتركًا بأى أحد." msgid "Could not save subscription." msgstr "تعذّر حفظ الاشتراك." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "أعضاء مجموعه %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s اعضاء الجروپ, صفحه %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "قائمه بمستخدمى هذه المجموعه." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5604,44 +5693,65 @@ msgstr "رسائل قصيرة" msgid "Notices tagged with %1$s, page %2$d" msgstr "الإشعارات الموسومه ب%s" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "لا مدخل هويه." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, fuzzy, php-format msgid "Tag %s" msgstr "الوسوم" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "ملف المستخدم الشخصي" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "اعمل tag لليوزر" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "الوسوم" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "استعمل الفورمه دى علشان تعدّل الapplication بتاعتك." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "لا وسم كهذا." @@ -5649,25 +5759,30 @@ msgstr "لا وسم كهذا." msgid "You haven't blocked that user." msgstr "لم تمنع هذا المستخدم." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "اليوزر مش فى السبوره." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "المستخدم ليس مُسكتًا." -#, fuzzy -msgid "No profile ID in request." -msgstr "ما فيش طلب تسجيل دخول مطلوب." - +#. TRANS: Page title for page to unsubscribe. #, fuzzy msgid "Unsubscribed" msgstr "ألغِ الاشتراك" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "تظبيطات بعت الرسايل الفوريه" @@ -5682,10 +5797,12 @@ msgstr "أدر خيارات أخرى عديده." msgid " (free service)" msgstr " (خدمه حرة)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "لا شيء" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5697,15 +5814,19 @@ msgstr "قصّر المسارات بـ" msgid "Automatic shortening service to use." msgstr "خدمه التقصير المطلوب استخدامها." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5715,13 +5836,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "حجم غير صالح." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "حجم غير صالح." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5804,7 +5929,7 @@ msgstr "اذف إعدادت الموقع" msgid "Authorize subscription" msgstr "جميع الاشتراكات" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5813,6 +5938,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5825,6 +5951,7 @@ msgstr "اشترك بهذا المستخدم" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5844,9 +5971,10 @@ msgstr "لا طلب استيثاق!" msgid "Subscription authorized" msgstr "رُفض الاشتراك" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5854,9 +5982,10 @@ msgstr "" msgid "Subscription rejected" msgstr "رُفض الاشتراك" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5884,14 +6013,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6116,18 +6237,6 @@ msgstr[5] "" msgid "Invalid filename." msgstr "حجم غير صالح." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "دخول الجروپ فشل." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "مش جزء من الجروپ." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "الخروج من الجروپ فشل." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6140,6 +6249,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "دخول الجروپ فشل." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "مش جزء من الجروپ." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "الخروج من الجروپ فشل." + #. TRANS: Activity title. msgid "Join" msgstr "انضم" @@ -6213,6 +6334,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "أنت ممنوع من إرسال رسائل مباشره." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "ما ينفعش تكرر الملاحظه بتاعتك." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "انت عيدت الملاحظه دى فعلا." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "ليس للمستخدم إشعار أخير" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6239,16 +6390,13 @@ msgstr "تعذّر حفظ الاشتراك." msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6298,9 +6446,11 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Could not delete subscription." msgstr "تعذّر حفظ الاشتراك." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "اسمح" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6367,18 +6517,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "عدّل إعدادات الملف الشخصي" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "عدّل" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "أرسل رساله مباشره إلى هذا المستخدم" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "رسالة" @@ -6402,10 +6558,6 @@ msgctxt "role" msgid "Moderator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "اشترك" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6668,6 +6820,10 @@ msgstr "إشعار الموقع" msgid "Snapshots configuration" msgstr "ضبط المسارات" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6825,6 +6981,10 @@ msgstr "" msgid "Cancel" msgstr "ألغِ" +#. TRANS: Submit button title. +msgid "Save" +msgstr "أرسل" + msgid " by " msgstr "" @@ -6892,6 +7052,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "جميع الاشتراكات" + #. TRANS: Title for command results. msgid "Command results" msgstr "نتائج الأمر" @@ -7049,10 +7215,6 @@ msgstr "أنت ممنوع من إرسال رسائل مباشره." msgid "Notice from %s repeated." msgstr "الإشعار من %s مكرر" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "خطأ تكرار الإشعار." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7838,6 +8000,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8259,7 +8435,9 @@ msgstr "رُد" msgid "Delete this notice" msgstr "احذف هذا الإشعار" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "الإشعار مكرر" msgid "Update your status..." @@ -8546,28 +8724,77 @@ msgstr "أسكت" msgid "Silence this user" msgstr "أسكت هذا المستخدم" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "الملف الشخصي" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "الاشتراكات" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "الأشخاص الذين اشترك بهم %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "المشتركون" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "الأشخاص المشتركون ب%s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "مجموعات" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "المجموعات التى %s عضو فيها" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "ادعُ" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Invite friends and colleagues to join you on %s." msgstr "" msgid "Subscribe to this user" msgstr "اشترك بهذا المستخدم" +msgid "Subscribe" +msgstr "اشترك" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8696,6 +8923,28 @@ msgstr[5] "الملاحظه اتكررت فعلا." msgid "Top posters" msgstr "أعلى المرسلين" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "إلى" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "لغه مش معروفه \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8830,6 +9079,24 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" +#~ msgid "Already repeated that notice." +#~ msgstr "الملاحظه اتكررت فعلا." + #, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d." +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "صِف نفسك واهتماماتك" +#~ msgstr[1] "صِف نفسك واهتماماتك" +#~ msgstr[2] "صِف نفسك واهتماماتك" +#~ msgstr[3] "صِف نفسك واهتماماتك" +#~ msgstr[4] "صِف نفسك واهتماماتك" +#~ msgstr[5] "صِف نفسك واهتماماتك" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "صِف نفسك واهتماماتك" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s و الصحاب, صفحه %2$d" + +#~ msgid "Error repeating notice." +#~ msgstr "خطأ تكرار الإشعار." diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 18230761b3..cceba2c44f 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:02+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -76,7 +76,9 @@ msgstr "Запазване настройките за достъп" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -88,6 +90,7 @@ msgstr "Запазване" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Няма такака страница." @@ -834,16 +837,6 @@ msgstr "Не може да изтривате бележки на друг по msgid "No such notice." msgstr "Няма такава бележка." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Не можете да повтаряте собствени бележки." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Вече сте повторили тази бележка." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -986,6 +979,8 @@ msgstr "Бележки с етикет %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -1102,11 +1097,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Потребителят няма профил." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1114,10 +1111,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Списък с потребителите в тази група." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1142,6 +1141,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Списък с потребителите в тази група." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Грешка при обновяване на групата." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Бележка на %1$s от %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Абонаментът е одобрен" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Няма код за потвърждение." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1182,7 +1209,7 @@ msgstr "Вече е в любимите." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Членове на групата %s" #. TRANS: Subtitle for group membership feed. @@ -1196,8 +1223,7 @@ msgstr "Групи, в които участва %s" msgid "Cannot add someone else's membership." msgstr "Грешка при добавяне на нов абонамент." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Търсене в съдържанието на бележките" @@ -1515,6 +1541,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s напусна групата %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Не сте влезли в системата." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Не е открит профил с такъв идентификатор." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Не е открит профил с такъв идентификатор." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Отписване" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Няма код за потвърждение." @@ -1724,24 +1793,6 @@ msgstr "Да не се изтрива бележката" msgid "Delete this group." msgstr "Изтриване на този потребител" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Не сте влезли в системата." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2446,14 +2497,6 @@ msgstr "Потребителят вече е заглушен." msgid "No profile specified." msgstr "Не е указан профил." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Не е открит профил с такъв идентификатор." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3071,6 +3114,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Частен" @@ -3825,6 +3869,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Никога" @@ -3981,17 +4026,22 @@ msgstr "Адрес на личната ви страница, блог или п #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Опишете себе си и интересите си в до %d букви" msgstr[1] "Опишете себе си и интересите си в до %d букви" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Опишете себе си и интересите си" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4004,7 +4054,9 @@ msgid "Location" msgstr "Местоположение" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Къде се намирате (град, община, държава и т.н.)" #. TRANS: Checkbox label in form for profile settings. @@ -4012,6 +4064,7 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Етикети" @@ -4046,6 +4099,27 @@ msgstr "" "Автоматично абониране за всеки, който се абонира за мен (подходящо за " "ботове)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Абонаменти" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4078,7 +4152,7 @@ msgstr "Неправилен етикет: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Грешка при обновяване записа на потребител." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4087,6 +4161,7 @@ msgid "Could not save location prefs." msgstr "Грешка при запазване етикетите." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Грешка при запазване на етикетите." @@ -4424,26 +4499,7 @@ msgstr "Използва се само за промени, обяви или в msgid "Longer name, preferably your \"real\" name." msgstr "По-дълго име, за предпочитане \"истинското\" ви име." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Опишете себе си и интересите си в до %d букви" -msgstr[1] "Опишете себе си и интересите си в до %d букви" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Опишете себе си и интересите си" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Къде се намирате (град, община, държава и т.н.)" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4561,6 +4617,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4596,16 +4653,8 @@ msgstr "Само влезли потребители могат да повта msgid "No notice specified." msgstr "Не е указана бележка." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Не можете да повтаряте собствена бележка." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Вече сте повторили тази бележка." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Повторено" @@ -4764,6 +4813,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Не можете да заглушавате потребители на този сайт." @@ -5026,6 +5076,11 @@ msgstr "Съобщение до %1$s в %2$s" msgid "Message from %1$s on %2$s" msgstr "Съобщение от %1$s в %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Бележката е изтрита." @@ -5033,20 +5088,20 @@ msgstr "Бележката е изтрита." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, страница %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Бележки с етикет %s" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, страница %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Бележки с етикет %s" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5122,6 +5177,7 @@ msgid "Repeat of %s" msgstr "Повторения на %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Не можете да заглушавате потребители на този сайт." @@ -5420,53 +5476,68 @@ msgstr "" msgid "No code entered." msgstr "Не е въведен код." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. #, fuzzy msgid "Manage snapshot configuration" msgstr "Промяна настройките на сайта" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Честота" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Запазване" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "Запазване настройките на сайта" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5478,6 +5549,27 @@ msgstr "Не сте абонирани за този профил" msgid "Could not save subscription." msgstr "Грешка при добавяне на нов абонамент." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Членове на групата %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Абонати на %1$s, страница %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Списък с потребителите в тази група." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5591,44 +5683,65 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Бележки с етикет %s" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Емисия с бележки на %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Емисия с бележки на %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Емисия с бележки на %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Липсват аргументи return-to." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, fuzzy, php-format msgid "Tag %s" msgstr "Етикети" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Потребителски профил" +#. TRANS: Fieldset legend on "tag other users" page. #, fuzzy msgid "Tag user" msgstr "Етикети" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Етикети" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Няма такъв етикет." @@ -5636,24 +5749,30 @@ msgstr "Няма такъв етикет." msgid "You haven't blocked that user." msgstr "Не сте блокирали този потребител." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Потребителят не е заглушен." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Потребителят не е заглушен." -msgid "No profile ID in request." -msgstr "Не е открит профил с такъв идентификатор." - +#. TRANS: Page title for page to unsubscribe. #, fuzzy msgid "Unsubscribed" msgstr "Отписване" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Настройки за SMS" @@ -5668,10 +5787,12 @@ msgstr "Управление на различни други настройки msgid " (free service)" msgstr " (свободна услуга)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Без" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5683,15 +5804,19 @@ msgstr "Съкращаване на адресите с" msgid "Automatic shortening service to use." msgstr "Услуга за автоматично съкращаване, която да се ползва." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5701,13 +5826,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Неправилен размер." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Неправилен размер." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5793,7 +5922,7 @@ msgstr "Запазване настройките на сайта" msgid "Authorize subscription" msgstr "Одобряване на абонамента" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5805,6 +5934,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5817,6 +5947,7 @@ msgstr "Абониране за този потребител" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5835,10 +5966,11 @@ msgstr "Няма заявка за одобрение." msgid "Subscription authorized" msgstr "Абонаментът е одобрен" +#. TRANS: Accept message text from Authorise subscription page. #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Абонаментът е одобрен, но не е зададен callback URL. За да завършите " @@ -5848,10 +5980,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Абонаментът е отказан" +#. TRANS: Reject message from Authorise subscription page. #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " @@ -5881,14 +6014,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6101,6 +6226,18 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Неправилен размер." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Грешка при запазване на потребител — невалидност." + #. TRANS: Exception thrown when joining a group fails. #, fuzzy msgid "Group join failed." @@ -6116,18 +6253,6 @@ msgstr "Грешка при обновяване на групата." msgid "Group leave failed." msgstr "Профил на групата" -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "Грешка при запазване на потребител — невалидност." - #. TRANS: Activity title. msgid "Join" msgstr "Присъединяване" @@ -6206,6 +6331,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Забранено ви е да публикувате бележки в този сайт." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Не можете да повтаряте собствени бележки." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Не можете да повтаряте собствена бележка." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Не можете да повтаряте собствени бележки." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Не можете да повтаряте собствени бележки." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Вече сте повторили тази бележка." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Потребителят няма последна бележка" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6232,16 +6387,13 @@ msgstr "Грешка при запазване на етикетите." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6294,9 +6446,11 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "Could not delete subscription." msgstr "Грешка при добавяне на нов абонамент." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Разрешение" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6362,18 +6516,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Редактиране на профила" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Редактиране" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Изпращате на пряко съобщение до този потребител." #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Съобщение" @@ -6396,10 +6556,6 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Абониране" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6663,6 +6819,10 @@ msgstr "Нова бележка" msgid "Snapshots configuration" msgstr "Настройка на пътищата" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6817,6 +6977,10 @@ msgstr "" msgid "Cancel" msgstr "Отказ" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Запазване" + msgid " by " msgstr "" @@ -6885,6 +7049,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Всички абонаменти" + #. TRANS: Title for command results. msgid "Command results" msgstr "Резултат от командата" @@ -7039,10 +7209,6 @@ msgstr "Грешка при изпращане на прякото съобще msgid "Notice from %s repeated." msgstr "Бележката от %s е повторена" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Грешка при повтаряне на бележката." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7791,6 +7957,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s вече получава бележките ви в %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s вече получава бележките ви в %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8216,7 +8396,9 @@ msgstr "Отговор" msgid "Delete this notice" msgstr "Изтриване на бележката" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Бележката е повторена." msgid "Update your status..." @@ -8504,28 +8686,77 @@ msgstr "Заглушаване" msgid "Silence this user" msgstr "Заглушаване на този потребител." -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Профил" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Абонаменти" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Абонаменти на %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Абонати" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Абонирани за %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Групи" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Групи, в които участва %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Покани" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Поканете приятели и колеги да се присъединят към вас в %s" msgid "Subscribe to this user" msgstr "Абониране за този потребител" +msgid "Subscribe" +msgstr "Абониране" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8638,6 +8869,28 @@ msgstr[1] "Вече сте повторили тази бележка." msgid "Top posters" msgstr "Най-често пишещи" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "До" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Непознат език \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8758,7 +9011,23 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Съобщението е твърде дълго. Най-много може да е %1$d знака, а сте въвели %" -#~ "2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Вече сте повторили тази бележка." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Опишете себе си и интересите си в до %d букви" +#~ msgstr[1] "Опишете себе си и интересите си в до %d букви" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Опишете себе си и интересите си" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Къде се намирате (град, община, държава и т.н.)" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, страница %2$d" + +#~ msgid "Error repeating notice." +#~ msgstr "Грешка при повтаряне на бележката." diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 276fde06d2..400877fad1 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -78,7 +78,9 @@ msgstr "Enrollañ an arventennoù moned" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -90,6 +92,7 @@ msgstr "Enrollañ" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "N'eus ket eus ar bajenn-se." @@ -833,16 +836,6 @@ msgstr "Ne c'helloc'h ket dilemel statud un implijer all." msgid "No such notice." msgstr "N'eus ket eus an ali-se." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Ne c'helloc'h ket adlavar ho alioù." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Kemenn bet adkemeret dija." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -983,6 +976,8 @@ msgstr "Alioù merket gant %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Hizivadennoù merket gant %1$s e %2$s !" @@ -1098,11 +1093,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Mankout a ra ar profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1110,10 +1107,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Roll an implijerien enrollet er strollad-mañ." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1138,6 +1137,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Roll an implijerien enrollet er strollad-mañ." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Dibosupl eo stagañ an implijer %1$s d'ar strollad %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Statud %1$s war %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Koumanant aotreet" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Nullet eo bet aotre." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1177,7 +1204,7 @@ msgstr "Er pennroll dija." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Izili ar strollad %s" #. TRANS: Subtitle for group membership feed. @@ -1191,8 +1218,7 @@ msgstr "Ezel eo %s eus ar strolladoù" msgid "Cannot add someone else's membership." msgstr "Dibosupl eo dilemel ar c'houmanant." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Klask alioù en danvez" @@ -1503,6 +1529,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s en deus kuitaet ar strollad %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Nann-kevreet." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "N'eus profil ID ebet er reked." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "N'eus profil ebet gant an ID-mañ." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Digoumanantet" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Kod kadarnaat ebet." @@ -1705,24 +1774,6 @@ msgstr "Arabat dilemel ar strollad-mañ" msgid "Delete this group." msgstr "Dilemel ar strollad-mañ" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Nann-kevreet." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2402,14 +2453,6 @@ msgstr "An implijer-mañ en deus dija ar roll-mañ." msgid "No profile specified." msgstr "N'eo bet resisaet profil ebet" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "N'eus profil ebet gant an ID-mañ." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2994,6 +3037,7 @@ msgid "License selection" msgstr "Diuzadenn un aotre-implijout" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Prevez" @@ -3749,6 +3793,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Morse" @@ -3910,17 +3955,22 @@ msgstr "URL ho pajenn degemer, ho blog, pe ho profil en ul lec'hienn all" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" msgstr[1] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Deskrivit hoc'h-unan hag ar pezh a zedenn ac'hanoc'h" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3933,7 +3983,9 @@ msgid "Location" msgstr "Lec'hiadur" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\"" #. TRANS: Checkbox label in form for profile settings. @@ -3941,6 +3993,7 @@ msgid "Share my current location when posting notices" msgstr "Rannañ va lec'hiadur pa bostan un ali." #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Balizennoù" @@ -3978,6 +4031,27 @@ msgstr "" "En em enskrivañ ez emgefre d'an holl re hag en em goumanant din (erbedet " "evit an implijerien nann-denel)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Koumanantoù" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4010,7 +4084,7 @@ msgstr "Balizenn direizh : \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Dibosupl eo hizivaat ar c'houmanant ez emgefre." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4019,6 +4093,7 @@ msgid "Could not save location prefs." msgstr "Dibosupl eo enrollañ an dibaboù lec'hiadur." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Dibosupl eo enrollañ ar merkoù." @@ -4369,26 +4444,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Anv hiroc'h, ho anv \"gwir\" a zo gwelloc'h" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" -msgstr[1] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Deskrivit hoc'h-unan hag ar pezh a zedenn ac'hanoc'h" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4487,6 +4543,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4521,16 +4578,8 @@ msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù." msgid "No notice specified." msgstr "N'eus bet diferet ali ebet." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Adkemeret ho peus ar c'hemenn-mañ c'hoazh." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Adlavaret" @@ -4690,6 +4739,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." @@ -4956,6 +5006,11 @@ msgstr "Kemanadenn kaset da %1$s d'an %2$s" msgid "Message from %1$s on %2$s" msgstr "Kemenadenn resevet eus %1$s d'an %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Dizimplijadus eo ar bostelerezh prim" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Ali dilammet." @@ -4963,20 +5018,20 @@ msgstr "Ali dilammet." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, pajenn %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Alioù merket gant %1$s, pajenn %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pajenn %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Alioù merket gant %1$s, pajenn %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5058,6 +5113,7 @@ msgid "Repeat of %s" msgstr "Adkemeret eus %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. #, fuzzy msgid "You cannot silence users on this site." msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." @@ -5352,55 +5408,73 @@ msgstr "" msgid "No code entered." msgstr "N'eo bet lakaet kod ebet" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Prim" +#. TRANS: Instructions for admin panel to configure snapshots. #, fuzzy msgid "Manage snapshot configuration" msgstr "Kefluniadur ar primoù" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "Roll direizh." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "URL fall evit al logo." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Prim" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. #, fuzzy msgid "Data snapshots" msgstr "Prim" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Stankter" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL an danevell" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Enrollañ" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Enrollañ arventennoù al lec'hienn" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5413,6 +5487,27 @@ msgstr "N'oc'h ket koumanantet d'ar profil-se." msgid "Could not save subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Izili ar strollad %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Izili ar strollad %1$s, pajenn %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Roll an implijerien enrollet er strollad-mañ." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5529,31 +5624,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Alioù merket gant %1$s, pajenn %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Gwazh an alioù evit ar merk %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Gwazh an alioù evit ar merk %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Gwazh an alioù evit ar merk %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Arguzenn ID ebet." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Merk %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profil an implijer" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Merkañ an implijer" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5562,14 +5669,23 @@ msgstr "" "Merkoù evit an implijer-mañ (lizherennoù, sifroù, -, ., ha _), dispartiet " "gant virgulennoù pe gant esaouennoù" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Balizennoù" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Implijit ar furmskrid-mañ evit kemmañ ho poellad." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. #, fuzzy msgid "No such tag." msgstr "N'eus ket eus ar bajenn-se." @@ -5578,27 +5694,33 @@ msgstr "N'eus ket eus ar bajenn-se." msgid "You haven't blocked that user." msgstr "N'ho peus ket stanket an implijer-mañ." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "Er poull-traezh emañ dija an implijer." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "Lakaet eo bet da mut an implijer-mañ dija." -msgid "No profile ID in request." -msgstr "N'eus profil ID ebet er reked." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Digoumanantet" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Aotre-implijout ar menegoù \"%1$s\" ne ya ket gant aotre-implijout al " "lec'hienn \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Arventennoù ar bostelerezh prim" @@ -5613,10 +5735,12 @@ msgstr "Dibarzhioù all da gefluniañ." msgid " (free service)" msgstr " (servij digoust)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Hini ebet" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[diabarzh]" @@ -5628,15 +5752,19 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5646,13 +5774,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Re hir eo ar yezh (255 arouezenn d'ar muiañ)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Danvez direizh an ali." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Danvez direizh an ali." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5736,7 +5868,7 @@ msgstr "Enrollañ arventennoù an implijer" msgid "Authorize subscription" msgstr "Aotreañ ar c'houmanant" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5745,6 +5877,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Asantiñ" @@ -5756,6 +5889,7 @@ msgstr "En em goumanantiñ d'an implijer-mañ" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Disteurel" @@ -5773,9 +5907,10 @@ msgstr "Reked aotreañ ebet !" msgid "Subscription authorized" msgstr "Koumanant aotreet" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5783,9 +5918,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Koumanant bet nac'het" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5813,16 +5949,6 @@ msgstr "An URI \"%s\" ez oc'h koumanantet dezhi a zo un implijer lec'hel." msgid "Profile URL \"%s\" is for a local user." msgstr "URI ar profil \"%s\" a zo evit un implijer lec'hel." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Aotre-implijout ar menegoù \"%1$s\" ne ya ket gant aotre-implijout al " -"lec'hienn \"%2$s\"." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6035,18 +6161,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ment direizh." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "C'hwitet eo bet an enskrivadur d'ar strollad." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "N'eo ezel eus strollad ebet." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "C'hwitet eo bet an disenskrivadur d'ar strollad." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6059,6 +6173,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Ur fazi 'zo bet e-pad enolladenn an implijer ; diwiriek." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "C'hwitet eo bet an enskrivadur d'ar strollad." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "N'eo ezel eus strollad ebet." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "C'hwitet eo bet an disenskrivadur d'ar strollad." + #. TRANS: Activity title. msgid "Join" msgstr "Stagañ" @@ -6132,6 +6258,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Ne c'helloc'h ket adlavar ho alioù." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Ne c'helloc'h ket adlavar ho alioù." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Ne c'helloc'h ket adlavar ho alioù." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Adkemeret ho peus ar c'hemenn-mañ c'hoazh." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Ne heuilh %s den ebet." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6157,16 +6313,13 @@ msgstr "Dibosupl eo enrollañ titouroù ar strollad lec'hel." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6215,7 +6368,9 @@ msgstr "Dibosupl eo dilemel ar c'houmanant." msgid "Could not delete subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Heuliañ" @@ -6283,18 +6438,24 @@ msgid "User deletion in progress..." msgstr "Diverkadenn an implijer o vont war-raok..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Kemmañ arventennoù ar profil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Aozañ" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Kas ur gemennadenn war-eeun d'an implijer-mañ" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Kemennadenn" @@ -6316,10 +6477,6 @@ msgctxt "role" msgid "Moderator" msgstr "Habasker" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "En em enskrivañ" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6569,6 +6726,10 @@ msgstr "Ali al lec'hienn" msgid "Snapshots configuration" msgstr "Kefluniadur ar primoù" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Prim" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6718,6 +6879,10 @@ msgstr "" msgid "Cancel" msgstr "Nullañ" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Enrollañ" + msgid " by " msgstr " gant " @@ -6785,6 +6950,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "An holl koumanantoù" + #. TRANS: Title for command results. msgid "Command results" msgstr "Disoc'hoù an urzhiad" @@ -6938,11 +7109,6 @@ msgstr "Ur gudenn 'zo bet pa veze kaset ho kemennadenn." msgid "Notice from %s repeated." msgstr "" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#, fuzzy -msgid "Error repeating notice." -msgstr "Fazi en ur hizivaat ar profil a-bell." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7691,6 +7857,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "Ne heuilh %s den ebet." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "Ne heuilh %s den ebet." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8110,7 +8290,9 @@ msgstr "Respont" msgid "Delete this notice" msgstr "Dilemel ar c'hemenn-mañ" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Ali adkemeret" msgid "Update your status..." @@ -8394,28 +8576,77 @@ msgstr "Didrouz" msgid "Silence this user" msgstr "Diverkañ an implijer-mañ" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Koumanantoù" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Koumanantoù %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Ar re koumanantet" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Koumananterien %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Strolladoù" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Ezel eo %s eus ar strolladoù" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Pediñ" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s" msgid "Subscribe to this user" msgstr "En em goumanantiñ d'an implijer-mañ" +msgid "Subscribe" +msgstr "En em enskrivañ" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8529,6 +8760,28 @@ msgstr[1] "Kemenn bet adkemeret dija." msgid "Top posters" msgstr "An implijerien an efedusañ" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Da" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Verb dizanv : \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8649,7 +8902,31 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Kemenn bet adkemeret dija." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" +#~ msgstr[1] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Deskrivit hoc'h-unan hag ar pezh a zedenn ac'hanoc'h" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, pajenn %2$d" + +#, fuzzy +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." #~ msgstr "" -#~ "Re hir eo ar gemennadenn - ar ment brasañ a zo %1$d arouezenn, %2$d " -#~ "arouezenn ho peus lakaet." +#~ "Aotre-implijout ar menegoù \"%1$s\" ne ya ket gant aotre-implijout al " +#~ "lec'hienn \"%2$s\"." + +#, fuzzy +#~ msgid "Error repeating notice." +#~ msgstr "Fazi en ur hizivaat ar profil a-bell." diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index c448f2dc7e..cc40ee96e5 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:40+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:05+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -83,7 +83,9 @@ msgstr "Desa els paràmetres d'accés" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -95,6 +97,7 @@ msgstr "Desa" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "No existeix la pàgina." @@ -847,16 +850,6 @@ msgstr "No podeu eliminar l'estat d'un altre usuari." msgid "No such notice." msgstr "No existeix aquest avís." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "No podeu repetir els vostres propis avisos." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Avís duplicat." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -997,6 +990,8 @@ msgstr "Avisos etiquetats amb %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualitzacions etiquetades amb %1$s el %2$s!" @@ -1111,11 +1106,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Manca el perfil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1123,10 +1120,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "La llista dels usuaris d'aquest grup." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1151,6 +1150,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "La llista dels usuaris d'aquest grup." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "estat de %1$s a %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Subscripció autoritzada" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "S'ha cancel·lat l'autorització." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1187,8 +1214,8 @@ msgstr "Ja és una preferit." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s pertinències a grup" #. TRANS: Subtitle for group membership feed. @@ -1201,8 +1228,7 @@ msgstr "Els grups en què %1$s n'és membre a %2$s" msgid "Cannot add someone else's membership." msgstr "No es pot afegir la pertinència d'algú altre." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Només es poden gestionar les activitats d'unió." @@ -1518,6 +1544,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ha abandonat el grup %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "No heu iniciat una sessió." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "No hi ha cap identificador del perfil en la sol·licitud." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "No hi ha cap perfil amb aquesta ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "No subscrit" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Cap codi de confirmació." @@ -1726,24 +1795,6 @@ msgstr "No eliminis el grup." msgid "Delete this group." msgstr "Elimina el grup." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "No heu iniciat una sessió." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2420,14 +2471,6 @@ msgstr "L'usuari ja té aquest rol." msgid "No profile specified." msgstr "No s'ha especificat cap perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "No hi ha cap perfil amb aquesta ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3052,6 +3095,7 @@ msgid "License selection" msgstr "Selecció de llicència" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privat" @@ -3789,6 +3833,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Mai" @@ -3950,17 +3995,22 @@ msgstr "URL del vostre web, blog o perfil en un altre lloc." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Descriviu qui sou i els vostres interessos en %d caràcter" msgstr[1] "Descriviu qui sou i els vostres interessos en %d caràcters" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Feu una descripció personal i interessos" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3973,14 +4023,16 @@ msgid "Location" msgstr "Ubicació" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Comparteix la ubicació on estic en enviar avisos" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etiquetes" @@ -4015,6 +4067,28 @@ msgstr "" "Subscriu automàticament a qualsevol qui em tingui subscrit (ideal per no-" "humans)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subscripcions" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Només es pot seguir gent." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4045,7 +4119,8 @@ msgstr "Etiqueta no vàlida: «%s»." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "No es pot actualitzar l'usuari per autosubscriure." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4053,6 +4128,7 @@ msgid "Could not save location prefs." msgstr "No s'han pogut desar les preferències d'ubicació." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "No s'han pogut guardar les etiquetes." @@ -4399,25 +4475,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nom més llarg, preferiblement el vostre nom «real»." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descriviu qui sou i els vostres interessos en %d caràcter" -msgstr[1] "Descriviu qui sou i els vostres interessos en %d caràcters" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Feu una descripció personal i interessos" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4537,6 +4595,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL del vostre perfil en un altre servei de microblogging compatible." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4570,15 +4629,8 @@ msgstr "Només els usuaris que han iniciat una sessió poden enviar avisos." msgid "No notice specified." msgstr "No s'ha especificat cap avís." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "No podeu repetir el vostre propi avís." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Ja havíeu repetit l'avís." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetit" @@ -4745,6 +4797,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "No podeu posar els usuaris en un entorn de prova en aquest lloc." @@ -5024,27 +5077,32 @@ msgstr "Missatge per a %1$s a %2$s" msgid "Message from %1$s on %2$s" msgstr "Missatge de %1$s a %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "La MI no és disponible." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "S'ha eliminat l'avís." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s etiquetats %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s etiquetats %2$s, pàgina %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pàgina %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Avisos etiquetats amb %1$s, pàgina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5134,6 +5192,7 @@ msgid "Repeat of %s" msgstr "Repetició de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "No podeu silenciar els usuaris d'aquest lloc." @@ -5432,51 +5491,72 @@ msgstr "" msgid "No code entered." msgstr "No s'ha introduït cap codi." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantànies" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gestiona la configuració de les instantànies" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "El valor d'execució d'instantànies no és vàlid." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "La freqüència de les instantànies ha de ser un nombre." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "L'URL d'informe d'instantànies no és vàlid." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantànies" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "A l'atzar durant les sol·licituds web" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "En una tasca planificada" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantànies de dades" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quan enviar dades estadístiques als servidors de l'status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Freqüència" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Les instantànies s'enviaran una vegada cada N sol·licituds web" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Informa de l'URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Les instantànies s'enviaran a aquest URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Desa" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Desa els paràmetres de les instantànies" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5488,6 +5568,27 @@ msgstr "No estàs subscrit a aquest perfil." msgid "Could not save subscription." msgstr "No s'ha pogut guardar la subscripció." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s pertinències a grup" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s membres del grup, pàgina %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "La llista dels usuaris d'aquest grup." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "No podeu subscriure-us a un perfil remot OMB 0.1 amb aquesta acció." @@ -5609,31 +5710,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Avisos etiquetats amb %1$s, pàgina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Canal d'avisos de l'etiqueta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Canal d'avisos de l'etiqueta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Canal d'avisos de l'etiqueta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "No hi ha cap argument ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etiqueta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil de l'usuari" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiqueta usuari" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5642,17 +5755,26 @@ msgstr "" "Etiquetes d'aquest usuari (lletres, nombres,, -, ., i _), comes o separades " "amb espais" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Només podeu etiquetar gent a la qual estigueu subscrit o que us hagin " "subscrit." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquetes" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Utilitzeu aquest formulari per afegir etiquetes als vostres subscriptors i " "subscripcions." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "No existeix aquesta etiqueta." @@ -5660,25 +5782,31 @@ msgstr "No existeix aquesta etiqueta." msgid "You haven't blocked that user." msgstr "No heu blocat l'usuari." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "L'usuari no està a l'entorn de proves." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "L'usuari no està silenciat." -msgid "No profile ID in request." -msgstr "No hi ha cap identificador del perfil en la sol·licitud." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "No subscrit" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "La llicència del flux de qui escolteu, «%1$s», no és compatible amb la " "llicència del lloc, «%2$s»." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Paràmetres de missatgeria instantània" @@ -5693,10 +5821,12 @@ msgstr "Gestiona altres opcions diferents." msgid " (free service)" msgstr " (servei lliure)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Cap" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[intern]" @@ -5708,15 +5838,19 @@ msgstr "Escurça els URL amb" msgid "Automatic shortening service to use." msgstr "Servei d'auto-escurçament a utilitzar." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5726,13 +5860,17 @@ msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" "El servei d'autoescurçament d'URL és massa llarga (màxim 50 caràcters)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "El contingut de l'avís no és vàlid." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "El contingut de l'avís no és vàlid." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5811,7 +5949,7 @@ msgstr "Desa els paràmetres d'usuari." msgid "Authorize subscription" msgstr "Autoritza la subscripció" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5824,6 +5962,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Accepta" @@ -5834,6 +5973,7 @@ msgstr "Subscriu-me a aquest usuari" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5852,9 +5992,11 @@ msgstr "No és una sol·licitud d'autorització!" msgid "Subscription authorized" msgstr "Subscripció autoritzada" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "S'ha autoritzat la subscripció, però no s'ha enviat cap URL de la crida de " @@ -5865,9 +6007,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Subscripció rebutjada" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "S'ha rebutjat la subscripció, però no s'ha enviat cap URL de la crida de " @@ -5898,16 +6042,6 @@ msgstr "L'URI de qui escolteu, «%s», és un usuari local." msgid "Profile URL \"%s\" is for a local user." msgstr "L'URL del perfil «%s» és només per a un usuari local." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"La llicència del flux de qui escolteu, «%1$s», no és compatible amb la " -"llicència del lloc, «%2$s»." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6139,18 +6273,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "El nom del fitxer no és vàlid." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "No s'ha pogut unir al grup." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "No s'és part del grup." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "La sortida del grup ha fallat." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6163,6 +6285,18 @@ msgstr "L'identificador del perfil %s no és vàlid." msgid "Group ID %s is invalid." msgstr "L'identificador del grup %s no és vàlid." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "No s'ha pogut unir al grup." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "No s'és part del grup." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "La sortida del grup ha fallat." + #. TRANS: Activity title. msgid "Join" msgstr "Inici de sessió" @@ -6238,6 +6372,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar avisos en aquest lloc." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "No podeu repetir els vostres propis avisos." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "No podeu repetir el vostre propi avís." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "No podeu repetir els vostres propis avisos." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "No podeu repetir els vostres propis avisos." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Ja havíeu repetit l'avís." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "L'usuari no té un darrer avís." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6263,16 +6426,13 @@ msgstr "No s'ha pogut desar la resposta de %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6323,7 +6483,9 @@ msgstr "No s'ha pogut eliminar el testimoni OMB de la subscripció." msgid "Could not delete subscription." msgstr "No s'ha pogut eliminar la subscripció." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Segueix" @@ -6391,18 +6553,24 @@ msgid "User deletion in progress..." msgstr "S'està eliminant l'usuari..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Edita la configuració del perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Edita" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Envia un missatge directe a aquest usuari" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Missatge" @@ -6424,10 +6592,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscriu-m'hi" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6686,6 +6850,10 @@ msgstr "Avís del lloc" msgid "Snapshots configuration" msgstr "Configuració de les instantànies" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Instantànies" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Defineix la llicència del lloc" @@ -6836,6 +7004,10 @@ msgstr "" msgid "Cancel" msgstr "Cancel·la" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Desa" + msgid " by " msgstr " per " @@ -6899,6 +7071,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Totes les subscripcions" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultats de les comandes" @@ -7049,10 +7227,6 @@ msgstr "S'ha produït un error en enviar el missatge directe." msgid "Notice from %s repeated." msgstr "S'ha repetit l'avís de %s." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "S'ha produït un error en repetir l'avís." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7801,6 +7975,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ara està escoltant els vostres avisos a %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s ara està escoltant els vostres avisos a %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8306,7 +8494,9 @@ msgstr "Respon" msgid "Delete this notice" msgstr "Elimina aquest avís" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Avís repetit" msgid "Update your status..." @@ -8583,28 +8773,77 @@ msgstr "Silencia" msgid "Silence this user" msgstr "Silencia l'usuari" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscripcions" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Persones %s subscrites a" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscriptors" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Gent subscrita a %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grups" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s grups són membres de" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Convida" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Convida amics i companys perquè participin a %s" msgid "Subscribe to this user" msgstr "Subscriu-me a aquest usuari" +msgid "Subscribe" +msgstr "Subscriu-m'hi" + msgid "People Tagcloud as self-tagged" msgstr "Núvol d'etiquetes personals (etiquetes pròpies)" @@ -8719,6 +8958,28 @@ msgstr[1] "Avís duplicat." msgid "Top posters" msgstr "Qui més publica" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "A" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Verb desconegut: «%s»." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8834,7 +9095,28 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Avís duplicat." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Descriviu qui sou i els vostres interessos en %d caràcter" +#~ msgstr[1] "Descriviu qui sou i els vostres interessos en %d caràcters" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Feu una descripció personal i interessos" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, pàgina %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." #~ msgstr "" -#~ "El missatge és massa llarg - el màxim és %1$d caràcters, i n'heu enviat %2" -#~ "$d." +#~ "La llicència del flux de qui escolteu, «%1$s», no és compatible amb la " +#~ "llicència del lloc, «%2$s»." + +#~ msgid "Error repeating notice." +#~ msgstr "S'ha produït un error en repetir l'avís." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 364e992df1..d18e497e85 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:06+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -78,7 +78,9 @@ msgstr "uložit nastavení přístupu" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -90,6 +92,7 @@ msgstr "Uložit" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Tady žádná taková stránka není." @@ -855,16 +858,6 @@ msgstr "Nesmíte odstraňovat status jiného uživatele." msgid "No such notice." msgstr "Žádné takové oznámení." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Nelze opakovat své vlastní oznámení." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Již jste zopakoval toto oznámení." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1007,6 +1000,8 @@ msgstr "Noticy taglé %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizace označené %1$s na %2$s!" @@ -1123,11 +1118,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "Pouze správce skupiny smí schválit nebo zrušit požadavky k připojení." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Chybějící profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1135,10 +1132,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Seznam uživatelů v této skupině." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1163,6 +1162,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Seznam uživatelů v této skupině." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Nemohu připojit uživatele %1$s do skupiny %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "status %1 na %2" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Odběr autorizován" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "IM potvrzení zrušeno." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1204,7 +1231,7 @@ msgstr "Přidat do oblíbených" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "členové skupiny %s" #. TRANS: Subtitle for group membership feed. @@ -1218,8 +1245,7 @@ msgstr "Skupiny kterých je %s členem" msgid "Cannot add someone else's membership." msgstr "Nelze vložit odebírání" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Najít v obsahu oznámení" @@ -1541,6 +1567,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s opustil(a) skupinu %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Nejste přihlášen(a)." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "CHybí ID profilu v žádosti." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Neexistuje profil s tímto ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Odhlášeno" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Žádný potvrzující kód." @@ -1757,24 +1826,6 @@ msgstr "Neodstraňujte toto oznámení" msgid "Delete this group." msgstr "Odstranit tohoto uživatele" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Nejste přihlášen(a)." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2466,14 +2517,6 @@ msgstr "Uživatel již tuto roli má." msgid "No profile specified." msgstr "Nebyl vybrán profil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Neexistuje profil s tímto ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3102,6 +3145,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. #, fuzzy msgid "Private" msgstr "Soukromí" @@ -3861,6 +3905,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nikdy" @@ -4020,18 +4065,23 @@ msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Popište sebe a své zájmy" msgstr[1] "Popište sebe a své zájmy" msgstr[2] "Popište sebe a své zájmy" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Popište sebe a své zájmy" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4044,7 +4094,9 @@ msgid "Location" msgstr "Umístění" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Místo. Město, stát." #. TRANS: Checkbox label in form for profile settings. @@ -4052,6 +4104,7 @@ msgid "Share my current location when posting notices" msgstr "Sdělit mou aktuální polohu při posílání hlášek" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Tagy" @@ -4087,6 +4140,27 @@ msgstr "" "Automaticky se přihlásit k odběru toho kdo se přihlásil ke mně (nejlepší pro " "ne-lidi)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Odběry" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4120,7 +4194,7 @@ msgstr "Neplatná velikost" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Nelze aktualizovat nastavení automatického přihlašování." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4129,6 +4203,7 @@ msgid "Could not save location prefs." msgstr "Nelze uložit nastavení umístění." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Nelze uložit nálepky" @@ -4477,27 +4552,7 @@ msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla." msgid "Longer name, preferably your \"real\" name." msgstr "Delší jméno, nejlépe vaše \"skutečné\" jméno" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Popište sebe a své zájmy" -msgstr[1] "Popište sebe a své zájmy" -msgstr[2] "Popište sebe a své zájmy" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Popište sebe a své zájmy" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Místo. Město, stát." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4616,6 +4671,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Adresa profilu na jiných kompatibilních mikroblozích." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4652,16 +4708,8 @@ msgstr "Pouze přihlášení uživatelé mohou opakovat oznámení." msgid "No notice specified." msgstr "Oznámení neuvedeno." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Nemůžete opakovat své vlastní oznámení." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Již jste zopakoval toto oznámení." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Opakované" @@ -4828,6 +4876,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Nemůžete sandboxovat uživatele na této stránce." @@ -5111,6 +5160,11 @@ msgstr "Zpráva pro %1$s na %2$s" msgid "Message from %1$s on %2$s" msgstr "Zpráva od %1$s na %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM není k dispozici." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Oznámení smazáno." @@ -5118,20 +5172,20 @@ msgstr "Oznámení smazáno." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, strana %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Oznámení označená %1$s, strana %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, strana %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Oznámení označená %1$s, strana %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5218,6 +5272,7 @@ msgid "Repeat of %s" msgstr "Opakování %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Na tomto webu nemůžete ztišovat uživatele." @@ -5514,51 +5569,72 @@ msgstr "" msgid "No code entered." msgstr "Nezadán kód" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Snímky (snapshoty)" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Konfigurace snímků" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Neplatná hodnota run. (kdy provádět snapshoty)" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Frekvence snímků musí být číslo." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Neplatná URL na reportování snímků" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Snímky (snapshoty)" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Náhodně při dodávání stránek" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "V naplánovaném úkolu" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Snímky dat" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Kdy posílat statistická data na status.net servery" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frekvence" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Snímky budou odeslány jednou za N web hitů" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Reportovací URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Na tuto adresu budou poslány snímky" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Uložit" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Uložit nastavení snímkování" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5570,6 +5646,27 @@ msgstr "Nejste přihlášen k tomuto profilu." msgid "Could not save subscription." msgstr "Nelze uložit odebírání" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "členové skupiny %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "členové skupiny %1$s, strana %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Seznam uživatelů v této skupině." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5692,31 +5789,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Oznámení označená %1$s, strana %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed oznámení označených %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed oznámení označených %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed oznámení označených %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Žádný argument ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Otagujte %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Uživatelský profil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Otagujte uživatele" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5725,17 +5834,26 @@ msgstr "" "Tagy pro tohoto uživatele (písmena, číslice, -,., a _), oddělené čárkou nebo " "mezerou" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Můžete označovat pouze lidi, ke kterým jste přihlášen nebo kteří jsou " "přihlášeni k vám." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tagy" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Použijte tento formulář k přidání nálepek na vaše posluchače nebo ty které " "posloucháte." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Žádná taková nálepka." @@ -5743,24 +5861,30 @@ msgstr "Žádná taková nálepka." msgid "You haven't blocked that user." msgstr "Nemáte zablokováno tohoto uživatele." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Uživatel není sandboxován." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Uživatel není umlčen." -msgid "No profile ID in request." -msgstr "CHybí ID profilu v žádosti." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Odhlášeno" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licence naslouchaného '%1$s' není kompatibilní s licencí stránky '%2$s'." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Nastavení IM" @@ -5775,10 +5899,12 @@ msgstr "Správa různých dalších možností." msgid " (free service)" msgstr " (Služba zdarma)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Nic" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5790,15 +5916,19 @@ msgstr "Zkrácovat URL s" msgid "Automatic shortening service to use." msgstr "Služba automatického zkracování, kterou použít." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5808,13 +5938,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "adresa služby zkracování URL je příliš dlouhá (max. 50 znaků)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Neplatná velikost" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Neplatná velikost" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5895,7 +6029,7 @@ msgstr "Uložit Nastavení webu" msgid "Authorize subscription" msgstr "Autorizujte přihlášení" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5908,6 +6042,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5920,6 +6055,7 @@ msgstr "Přihlásit se k tomuto uživateli" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5938,9 +6074,11 @@ msgstr "Žádná žádost o autorizaci!" msgid "Subscription authorized" msgstr "Odběr autorizován" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Odběr byl autorizován, ale nepřišla žádná callback adresa. Zkontrolujte v " @@ -5951,9 +6089,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Odběr odmítnut" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Odebírání bylo zamítnuto, ale nepřišla žádná callback adresa. Zkontrolujte v " @@ -5983,15 +6123,6 @@ msgstr "Naslouchací URI ‘%s’ je místní uživatel." msgid "Profile URL \"%s\" is for a local user." msgstr "URL profilu '%s' je pro místního uživatele." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Licence naslouchaného '%1$s' není kompatibilní s licencí stránky '%2$s'." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6226,18 +6357,6 @@ msgstr[2] "Takto velký soubor by překročil vaši měsíční kvótu %d bajtů msgid "Invalid filename." msgstr "Neplatné jméno souboru." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Nepodařilo se připojit ke skupině." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Není součástí skupiny." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Nepodařilo se opustit skupinu." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6250,6 +6369,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Chyba při ukládaní uživatele; neplatný." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Nepodařilo se připojit ke skupině." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Není součástí skupiny." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Nepodařilo se opustit skupinu." + #. TRANS: Activity title. msgid "Join" msgstr "Připojit se" @@ -6324,6 +6455,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Máte zakázáno (banned) posílat upozornění na tomto webu." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Nelze opakovat své vlastní oznámení." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Nemůžete opakovat své vlastní oznámení." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Nelze opakovat své vlastní oznámení." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Nelze opakovat své vlastní oznámení." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Již jste zopakoval toto oznámení." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Uživatel nemá žádné poslední oznámení" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6350,16 +6511,13 @@ msgstr "Nelze uložit místní info skupiny." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6408,9 +6566,11 @@ msgstr "Nelze smazat OMB token přihlášení." msgid "Could not delete subscription." msgstr "Nelze smazat odebírání" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Povolit" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6476,18 +6636,24 @@ msgid "User deletion in progress..." msgstr "Probíhá mazání uživatele..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Upravit nastavení profilu" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Editovat" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Odeslat přímou zprávu tomuto uživateli" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Zpráva" @@ -6509,10 +6675,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderátor" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Odebírat" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6766,6 +6928,10 @@ msgstr "Sdělení" msgid "Snapshots configuration" msgstr "Konfigurace snímků" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Snímky (snapshoty)" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6918,6 +7084,10 @@ msgstr "Výchozí přístup pro tuto aplikaci: pouze pro čtení, nebo číst-ps msgid "Cancel" msgstr "Zrušit" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Uložit" + msgid " by " msgstr "" @@ -6984,6 +7154,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Všechny odběry" + #. TRANS: Title for command results. msgid "Command results" msgstr "Výsledky příkazu" @@ -7136,10 +7312,6 @@ msgstr "Chyba při odesílání přímé zprávy." msgid "Notice from %s repeated." msgstr "Oznámení od %s opakováno." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Chyba nastavení uživatele" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7902,6 +8074,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s od teď naslouchá tvým sdělením na %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s od teď naslouchá tvým sdělením na %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8408,7 +8594,9 @@ msgstr "Odpovědět" msgid "Delete this notice" msgstr "Odstranit toto oznámení" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Sdělení opakováno" msgid "Update your status..." @@ -8691,28 +8879,77 @@ msgstr "Uťišit" msgid "Silence this user" msgstr "Utišit tohoto uživatele" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Odběry" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Lidé ke kterým je %s přihlášen" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Odběratelé" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Lidé přihlášení k %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Skupiny" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Skupiny kterých je %s členem" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Pozvat" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Pozvěte přátele a kolegy, aby se k vám připojili na %s" msgid "Subscribe to this user" msgstr "Přihlásit se k tomuto uživateli" +msgid "Subscribe" +msgstr "Odebírat" + msgid "People Tagcloud as self-tagged" msgstr "Mrak štítků kterými se uživatelé sami označili" @@ -8833,6 +9070,28 @@ msgstr[2] "Již jste zopakoval toto oznámení." msgid "Top posters" msgstr "Nejlepší pisálci" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Komu:" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Neznámý jazyk \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8955,5 +9214,29 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Zpráva je příliš dlouhá - maximum je %1$d znaků, poslal jsi %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Již jste zopakoval toto oznámení." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Popište sebe a své zájmy" +#~ msgstr[1] "Popište sebe a své zájmy" +#~ msgstr[2] "Popište sebe a své zájmy" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Popište sebe a své zájmy" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Místo. Město, stát." + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, strana %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "Licence naslouchaného '%1$s' není kompatibilní s licencí stránky '%2$s'." + +#~ msgid "Error repeating notice." +#~ msgstr "Chyba nastavení uživatele" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index be9f8a136b..8d04acb517 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -22,17 +22,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -88,7 +88,9 @@ msgstr "Zugangs-Einstellungen speichern" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -100,6 +102,7 @@ msgstr "Speichern" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Seite nicht vorhanden" @@ -856,16 +859,6 @@ msgstr "Du kannst den Status eines anderen Benutzers nicht löschen." msgid "No such notice." msgstr "Unbekannte Nachricht." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Nachricht bereits wiederholt" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1012,6 +1005,8 @@ msgstr "Mit „%s“ getaggte Nachrichten" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mit „%1$s“ getaggte Nachrichten auf „%2$s“!" @@ -1126,11 +1121,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Benutzer hat kein Profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1138,10 +1135,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Liste der Benutzer in dieser Gruppe." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1166,6 +1165,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Liste der Benutzer in dieser Gruppe." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Status von %1$s auf %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abonnement autorisiert" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Authorisierung abgebrochen." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1204,8 +1231,8 @@ msgstr "Bereits ein Favorit." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s Gruppen-Mitgliedschaften" #. TRANS: Subtitle for group membership feed. @@ -1219,8 +1246,7 @@ msgstr "Gruppen %1$s ist ein Mitglied von %2$s" msgid "Cannot add someone else's membership." msgstr "Kann Abonnement von jemand anderem nicht eintragen." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Kann nur Beitritts-Aktivitäten durchführen." @@ -1539,6 +1565,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s hat die Gruppe %2$s verlassen" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Nicht angemeldet." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Keine Profil-ID in der Anfrage." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Kein Benutzer-Profil mit dieser ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Abbestellt" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Kein Bestätigungs-Code." @@ -1752,24 +1821,6 @@ msgstr "Diese Gruppe nicht löschen" msgid "Delete this group." msgstr "Diese Gruppe löschen" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Nicht angemeldet." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2462,14 +2513,6 @@ msgstr "Benutzer hat bereits diese Aufgabe" msgid "No profile specified." msgstr "Kein Profil angegeben." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Kein Benutzer-Profil mit dieser ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3105,6 +3148,7 @@ msgid "License selection" msgstr "Lizenzauswahl" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privat" @@ -3850,6 +3894,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nie" @@ -4013,17 +4058,22 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Beschreibe dich selbst und deine Interessen in einem Zeichen" msgstr[1] "Beschreibe dich selbst und deine Interessen in %d Zeichen" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Beschreibe dich selbst und deine Interessen" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4036,7 +4086,9 @@ msgid "Location" msgstr "Aufenthaltsort" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“" #. TRANS: Checkbox label in form for profile settings. @@ -4044,6 +4096,7 @@ msgid "Share my current location when posting notices" msgstr "Teile meine aktuelle Position, wenn ich Nachrichten sende" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Tags" @@ -4081,6 +4134,28 @@ msgstr "" "Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" "Menschen)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonnements" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Man kann nur Personen folgen" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4112,7 +4187,7 @@ msgstr "Ungültiges Stichwort: „%s“" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Autosubscribe konnte nicht aktiviert werden." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4121,6 +4196,7 @@ msgid "Could not save location prefs." msgstr "Konnte Positions-Einstellungen nicht speichern." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Konnte Tags nicht speichern." @@ -4476,26 +4552,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Längerer Name, bevorzugt dein bürgerlicher Name" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Beschreibe dich selbst und deine Interessen in einem Zeichen" -msgstr[1] "Beschreibe dich selbst und deine Interessen in %d Zeichen" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Beschreibe dich selbst und deine Interessen" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4616,6 +4673,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Profil-URL bei einem anderen kompatiblen Mikrobloggingdienst" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4651,16 +4709,8 @@ msgstr "Nur angemeldete Benutzer können Nachrichten wiederholen." msgid "No notice specified." msgstr "Keine Nachricht angegeben." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Du kannst deine eigene Nachricht nicht wiederholen." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Nachricht bereits wiederholt" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Wiederholt" @@ -4830,6 +4880,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Du kannst Benutzer auf dieser Seite nicht auf den Spielplaz schicken." @@ -5109,27 +5160,32 @@ msgstr "Nachricht an %1$s auf %2$s" msgid "Message from %1$s on %2$s" msgstr "Nachricht von %1$s auf %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM ist nicht verfügbar." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Nachricht gelöscht." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten, Seite %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, Seite %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Mit „%1$s“ getaggte Nachrichten, Seite %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5218,6 +5274,7 @@ msgid "Repeat of %s" msgstr "Wiederholung von %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Du kannst Benutzer dieser Seite nicht ruhig stellen." @@ -5519,51 +5576,72 @@ msgstr "" msgid "No code entered." msgstr "Kein Code eingegeben" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Snapshots" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Snapshot-Konfiguration verwalten" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Der Wert zum Ausführen von Snapshots ist ungültig." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Die Snapshot-Frequenz muss eine Zahl sein." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Ungültige Snapshot-Berichts-URL." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Snapshots" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Zufällig während Webseitenbesuchen" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Als zeitlich geplanten Auftrag" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Daten-Snapshot" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Wann sollen Statistiken zum status.net-Server geschickt werden" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequenz" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Snapshots werden alle N Webseitenbesuche gesendet" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL melden" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "An diese Adresse werden Snapshots gesendet" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Speichern" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Snapshot-Einstellungen speichern" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5575,6 +5653,27 @@ msgstr "Du hast dieses Profil nicht abonniert." msgid "Could not save subscription." msgstr "Konnte Abonnement nicht erstellen." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s Gruppen-Mitgliedschaften" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s Gruppen-Mitglieder, Seite %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Liste der Benutzer in dieser Gruppe." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Du hast dieses OMB 0.1 Profil nicht abonniert." @@ -5695,31 +5794,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Mit „%1$s“ getaggte Nachrichten, Seite %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Nachrichten-Feed des Tags „%s“ (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Nachrichten-Feed des Tag „%s“ (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Nachrichten-Feed des Tags „%s“ (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Kein ID-Argument." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Tag „%s“" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Benutzerprofil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Benutzer taggen" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5728,17 +5839,26 @@ msgstr "" "Tags dieses Benutzers (Buchstaben, Nummer, -, ., und _), durch Komma oder " "Leerzeichen getrennt" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert " "haben." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tags" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Benutze dieses Formular, um Tags deinen Abonnenten oder Abonnements " "hinzuzufügen." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Tag nicht vorhanden." @@ -5746,25 +5866,31 @@ msgstr "Tag nicht vorhanden." msgid "You haven't blocked that user." msgstr "Du hast diesen Benutzer nicht blockiert." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Benutzer ist nicht blockiert." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Der Benutzer ist nicht ruhig gestellt." -msgid "No profile ID in request." -msgstr "Keine Profil-ID in der Anfrage." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Abbestellt" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Die Benutzerlizenz „%1$s“ ist nicht kompatibel mit der Lizenz der Seite „%2" "$s“." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM-Einstellungen" @@ -5779,10 +5905,12 @@ msgstr "Verwalte zahlreiche andere Einstellungen." msgid " (free service)" msgstr " (freier Dienst)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Nichts" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[internal]" @@ -5794,15 +5922,19 @@ msgstr "URLs kürzen mit" msgid "Automatic shortening service to use." msgstr "URL-Auto-Kürzungs-Dienst." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL länger als" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "längere URLs werden gekürzt. 0 bedeutet immer verkürzen." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Text länger als" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "längere URLs werden gekürzt. 0 bedeutet immer verkürzen." @@ -5811,12 +5943,17 @@ msgstr "längere URLs werden gekürzt. 0 bedeutet immer verkürzen." msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL-Auto-Kürzungs-Dienst ist zu lang (maximal 50 Zeichen)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum URL length." msgstr "Ungültige Zahl für maximale URL-Länge." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." msgstr "Ungültige Zahl für maximale Nachrichten-Länge." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "Fehler beim speichern der URL-Verkürzungs-Einstellungen." @@ -5895,7 +6032,7 @@ msgstr "Benutzer-Einstellungen speichern" msgid "Authorize subscription" msgstr "Abonnement bestätigen" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5908,6 +6045,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5920,6 +6058,7 @@ msgstr "Abonniere diesen Benutzer" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5938,9 +6077,11 @@ msgstr "Keine Bestätigungsanfrage!" msgid "Subscription authorized" msgstr "Abonnement autorisiert" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Das Abonnement wurde bestätigt, aber es wurde keine Antwort-URL angegeben. " @@ -5951,9 +6092,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonnement abgelehnt" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " @@ -5984,16 +6127,6 @@ msgstr "Die URI „%s“ für den Stream ist ein lokaler Benutzer." msgid "Profile URL \"%s\" is for a local user." msgstr "Profiladresse „%s“ ist für einen lokalen Benutzer." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Die Benutzerlizenz „%1$s“ ist nicht kompatibel mit der Lizenz der Seite „%2" -"$s“." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6229,18 +6362,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ungültiger Dateiname." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Konnte Gruppe nicht beitreten" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Nicht Mitglied der Gruppe" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Konnte Gruppe nicht verlassen" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6253,6 +6374,18 @@ msgstr "Profil-ID %s ist ungültig." msgid "Group ID %s is invalid." msgstr "Gruppen-ID %s ist ungültig." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Konnte Gruppe nicht beitreten" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Nicht Mitglied der Gruppe" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Konnte Gruppe nicht verlassen" + #. TRANS: Activity title. msgid "Join" msgstr "Beitreten" @@ -6328,6 +6461,36 @@ msgid "You are banned from posting notices on this site." msgstr "" "Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Du kannst deine eigene Nachricht nicht wiederholen." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Nachricht bereits wiederholt" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Benutzer hat keine letzte Nachricht." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6355,16 +6518,13 @@ msgstr "Konnte Antwort auf %1$d, %2$d nicht speichern." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6417,7 +6577,9 @@ msgstr "Konnte OMB-Abonnement-Token nicht löschen." msgid "Could not delete subscription." msgstr "Konnte Abonnement nicht löschen." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Folgen" @@ -6485,18 +6647,24 @@ msgid "User deletion in progress..." msgstr "Löschung des Benutzers in Arbeit …" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Profil-Einstellungen ändern" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Bearbeiten" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Direkte Nachricht an Benutzer versenden" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Nachricht" @@ -6518,10 +6686,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abonnieren" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6779,6 +6943,10 @@ msgstr "Seitennachricht" msgid "Snapshots configuration" msgstr "Snapshot-Konfiguration" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Snapshots" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Website-Lizenz einstellen" @@ -6928,6 +7096,10 @@ msgstr "" msgid "Cancel" msgstr "Abbrechen" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Speichern" + msgid " by " msgstr " von " @@ -6993,6 +7165,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Alle Abonnements" + #. TRANS: Title for command results. msgid "Command results" msgstr "Befehl-Ergebnisse" @@ -7144,10 +7322,6 @@ msgstr "Fehler beim Senden der Nachricht." msgid "Notice from %s repeated." msgstr "Nachricht von „%s“ wiederholt." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Fehler beim Wiederholen der Nachricht." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7898,6 +8072,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s hat deine Nachrichten auf „%2$s“ abonniert." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s hat deine Nachrichten auf „%2$s“ abonniert." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8405,7 +8593,9 @@ msgstr "Antworten" msgid "Delete this notice" msgstr "Nachricht löschen" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Nachricht wiederholt" msgid "Update your status..." @@ -8686,28 +8876,77 @@ msgstr "Stummschalten" msgid "Silence this user" msgstr "Benutzer verstummen lassen" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonnements" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Leute, die „%s“ abonniert hat" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonnenten" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Leute, die „%s“ abonniert haben" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppen" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Gruppen, in denen „%s“ Mitglied ist" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Einladen" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Lade Freunde und Kollegen ein, dir auf „%s“ zu folgen" msgid "Subscribe to this user" msgstr "Abonniere diesen Benutzer" +msgid "Subscribe" +msgstr "Abonnieren" + msgid "People Tagcloud as self-tagged" msgstr "Personen-Tagwolke, wie man sich selbst markiert hat." @@ -8825,6 +9064,28 @@ msgstr[1] "Nachricht bereits wiederholt" msgid "Top posters" msgstr "Top-Schreiber" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "An" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Unbekanntes Verb: „%s“" + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8941,6 +9202,28 @@ msgstr "Ungültiges XML, XRD-Root fehlt." msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Nachricht bereits wiederholt" + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Beschreibe dich selbst und deine Interessen in einem Zeichen" +#~ msgstr[1] "Beschreibe dich selbst und deine Interessen in %d Zeichen" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Beschreibe dich selbst und deine Interessen" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, Seite %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." #~ msgstr "" -#~ "Nachricht zu lang - maximal %1$d Zeichen erlaubt, du hast %2$d gesendet." +#~ "Die Benutzerlizenz „%1$s“ ist nicht kompatibel mit der Lizenz der Seite „%" +#~ "2$s“." + +#~ msgid "Error repeating notice." +#~ msgstr "Fehler beim Wiederholen der Nachricht." diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 10440f927b..c3006d54f6 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:09+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -79,7 +79,9 @@ msgstr "Save access settings" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +93,7 @@ msgstr "Save" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "No such page." @@ -844,16 +847,6 @@ msgstr "You may not delete another user's status." msgid "No such notice." msgstr "No such notice." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Cannot repeat your own notice." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Already repeated that notice." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -996,6 +989,8 @@ msgstr "Notices tagged with %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates tagged with %1$s on %2$s!" @@ -1111,11 +1106,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Missing profile." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1123,10 +1120,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "A list of the users in this group." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1151,6 +1150,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "A list of the users in this group." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Could not join user %1$s to group %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s's status on %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Subscription authorised" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Authorisation cancelled." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1192,7 +1219,7 @@ msgstr "Add to favourites" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s group members" #. TRANS: Subtitle for group membership feed. @@ -1206,8 +1233,7 @@ msgstr "Groups %s is a member of" msgid "Cannot add someone else's membership." msgstr "Couldn't insert new subscription." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Find content of notices" @@ -1529,6 +1555,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s left group %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Not logged in." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "No profile ID in request." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "No profile with that ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Unsubscribed" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "No confirmation code." @@ -1743,24 +1812,6 @@ msgstr "Do not delete this group" msgid "Delete this group." msgstr "Delete this group" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Not logged in." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2449,14 +2500,6 @@ msgstr "User already has this role." msgid "No profile specified." msgstr "No profile specified." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "No profile with that ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3084,6 +3127,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Private" @@ -3830,6 +3874,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Never" @@ -3985,17 +4030,22 @@ msgstr "URL of your homepage, blog, or profile on another site" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Describe yourself and your interests in %d chars" msgstr[1] "Describe yourself and your interests in %d chars" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Describe yourself and your interests" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4008,7 +4058,9 @@ msgid "Location" msgstr "Location" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Where you are, like \"City, State (or Region), Country\"" #. TRANS: Checkbox label in form for profile settings. @@ -4016,6 +4068,7 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Tags" @@ -4051,6 +4104,27 @@ msgid "" msgstr "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subscriptions" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4083,7 +4157,7 @@ msgstr "Invalid tag: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Couldn't update user for autosubscribe." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4092,6 +4166,7 @@ msgid "Could not save location prefs." msgstr "Couldn't save location prefs." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Could not save tags." @@ -4439,26 +4514,7 @@ msgstr "Used only for updates, announcements, and password recovery" msgid "Longer name, preferably your \"real\" name." msgstr "Longer name, preferably your \"real\" name" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Describe yourself and your interests in %d chars" -msgstr[1] "Describe yourself and your interests in %d chars" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Describe yourself and your interests" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Where you are, like \"City, State (or Region), Country\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4577,6 +4633,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL of your profile on another compatible microblogging service" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4611,16 +4668,8 @@ msgstr "Only logged-in users can repeat notices." msgid "No notice specified." msgstr "No notice specified." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "You can't repeat your own notice." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "You already repeated that notice." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repeated" @@ -4782,6 +4831,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "You cannot sandbox users on this site." @@ -5057,6 +5107,11 @@ msgstr "Message to %1$s on %2$s" msgid "Message from %1$s on %2$s" msgstr "Message from %1$s on %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM is not available." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Notice deleted." @@ -5064,20 +5119,20 @@ msgstr "Notice deleted." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, page %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Notices tagged with %1$s, page %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, page %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Notices tagged with %1$s, page %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5162,6 +5217,7 @@ msgid "Repeat of %s" msgstr "Repeat of %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "You cannot silence users on this site." @@ -5450,51 +5506,69 @@ msgstr "" msgid "No code entered." msgstr "No code entered" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" -msgstr "" +msgstr "Data snapshots" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Manage snapshot configuration" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Invalid snapshot run value." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Invalid snapshot report URL." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Data snapshots" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Data snapshots" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Report URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Save" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Save snapshot settings" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5506,6 +5580,27 @@ msgstr "You are not subscribed to that profile." msgid "Could not save subscription." msgstr "Could not save subscription." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s group members" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s group members, page %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "A list of the users in this group." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5622,31 +5717,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notices tagged with %1$s, page %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Notice feed for tag %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Notice feed for tag %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Notice feed for tag %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "No ID argument." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Tag %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "User profile" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Tag user" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5655,14 +5762,23 @@ msgstr "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "You can only tag people you are subscribed to or who are subscribed to you." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tags" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Use this form to add tags to your subscribers or subscriptions." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "No such tag." @@ -5670,24 +5786,30 @@ msgstr "No such tag." msgid "You haven't blocked that user." msgstr "You haven't blocked that user." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "User is not sandboxed." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "User is not silenced." -msgid "No profile ID in request." -msgstr "No profile ID in request." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Unsubscribed" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM settings" @@ -5702,10 +5824,12 @@ msgstr "Manage various other options." msgid " (free service)" msgstr "" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "None" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5717,15 +5841,19 @@ msgstr "Shorten URLs with" msgid "Automatic shortening service to use." msgstr "Automatic shortening service to use." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5735,13 +5863,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL shortening service is too long (max 50 chars)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Invalid notice content." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Invalid notice content." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5821,7 +5953,7 @@ msgstr "Save site settings" msgid "Authorize subscription" msgstr "Authorise subscription" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5834,6 +5966,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5846,6 +5979,7 @@ msgstr "Subscribe to this user" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5864,9 +5998,11 @@ msgstr "No authorisation request!" msgid "Subscription authorized" msgstr "Subscription authorised" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "The subscription has been authorized, but no callback URL was passed. Check " @@ -5877,9 +6013,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Subscription rejected" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "The subscription has been rejected, but no callback URL was passed. Check " @@ -5910,15 +6048,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6140,18 +6269,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Invalid filename." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Group join failed." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Not part of group." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Group leave failed." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6164,6 +6281,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Group ID %s is invalid." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Group join failed." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Not part of group." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Group leave failed." + #. TRANS: Activity title. msgid "Join" msgstr "Join" @@ -6237,6 +6366,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Cannot repeat your own notice." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "You can't repeat your own notice." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Cannot repeat your own notice." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Cannot repeat your own notice." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "You already repeated that notice." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "User has no last notice." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6262,16 +6421,13 @@ msgstr "Could not save reply for %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6320,9 +6476,11 @@ msgstr "Could not delete subscription OMB token." msgid "Could not delete subscription." msgstr "Could not delete subscription." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Allow" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6388,18 +6546,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Edit profile settings" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Edit" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Send a direct message to this user" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Message" @@ -6421,10 +6585,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscribe" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6678,6 +6838,10 @@ msgstr "Site notice" msgid "Snapshots configuration" msgstr "Snapshots configuration" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6827,6 +6991,10 @@ msgstr "" msgid "Cancel" msgstr "Cancel" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Save" + msgid " by " msgstr "" @@ -6891,6 +7059,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "All subscriptions" + #. TRANS: Title for command results. msgid "Command results" msgstr "Command results" @@ -7035,10 +7209,6 @@ msgstr "Error sending direct message." msgid "Notice from %s repeated." msgstr "Notice from %s repeated." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Error repeating notice." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7776,6 +7946,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s is now listening to your notices on %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s is now listening to your notices on %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8205,7 +8389,9 @@ msgstr "Reply" msgid "Delete this notice" msgstr "Delete this notice" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Notice repeated" msgid "Update your status..." @@ -8487,28 +8673,77 @@ msgstr "Silence" msgid "Silence this user" msgstr "Silence this user" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profile" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscriptions" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "People %s subscribes to" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscribers" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Groups" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Groups %s is a member of" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Invite" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Invite friends and colleagues to join you on %s" msgid "Subscribe to this user" msgstr "Subscribe to this user" +msgid "Subscribe" +msgstr "Subscribe" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8620,6 +8855,28 @@ msgstr[1] "Already repeated that notice." msgid "Top posters" msgstr "Top posters" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "To" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Unknown file type" + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8738,5 +8995,28 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Already repeated that notice." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Describe yourself and your interests in %d chars" +#~ msgstr[1] "Describe yourself and your interests in %d chars" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Describe yourself and your interests" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Where you are, like \"City, State (or Region), Country\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, page %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." + +#~ msgid "Error repeating notice." +#~ msgstr "Error repeating notice." diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index b467fb6df5..f2a54afd36 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:10+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -82,7 +82,9 @@ msgstr "Konservi atingan agordon" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -94,6 +96,7 @@ msgstr "Konservi" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Ne estas tiu paĝo." @@ -734,9 +737,8 @@ msgid "" "account data. You should only give access to your %4$s account to third " "parties you trust." msgstr "" -"La aplikaĵo %1$s de %2$s volas la kapablon " -"%3$s vian %4$s kontdatumon. Vi devas doni atingon nur al " -"via %4$s konto al triaj partioj, kiujn vi fidas." +"Aplikaĵo volas povi %3$s viajn kontodatumojn ĉe %4$s. Vi " +"ebligu atingon al via konto ĉe %4$s nur al aliuloj fidataj de vi." #. TRANS: User notification of external application requesting account access. #. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application, @@ -801,9 +803,8 @@ msgid "The request token %s has been revoked." msgstr "La peto-ĵetono %s estis eksvalidigita." #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. -#, fuzzy msgid "You have successfully authorized the application" -msgstr "Vi sukcese rajtigis %s." +msgstr "Vi sukcese rajtigis la aplikaĵon" #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. #, fuzzy @@ -816,9 +817,9 @@ msgstr "" #. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. -#, fuzzy, php-format +#, php-format msgid "You have successfully authorized %s" -msgstr "Vi sukcese rajtigis %s." +msgstr "Vi sukcese donis la rajton al %s." #. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. @@ -846,16 +847,6 @@ msgstr "Vi ne povas forigi la staton de alia uzanto." msgid "No such notice." msgstr "Ne estas tiu avizo." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Vi ne povas ripeti vian propran avizon." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "La avizo jam ripetiĝis." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -908,8 +899,9 @@ msgstr[0] "Tro longa. Longlimo por avizo estas %d signo." msgstr[1] "Tro longas. Longlimo por avizo estas %d signoj." #. TRANS: Client error displayed when replying to a non-existing notice. +#, fuzzy msgid "Parent notice not found." -msgstr "" +msgstr "Respondata avizo ne trovitas." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. @@ -966,7 +958,7 @@ msgstr "%s ĝisdatigoj de ĉiuj!" #. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. #, fuzzy msgid "Unimplemented." -msgstr "Nerealigita" +msgstr "Nerealigita metodo." #. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. #, php-format @@ -999,6 +991,8 @@ msgstr "Avizoj etikeditaj %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Ĝisdatigoj etikeditaj %1$s ĉe %2$s!" @@ -1103,9 +1097,8 @@ msgstr "Ne estas alinomo aŭ ID." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "Ne konektita." +msgstr "Estas necese esti ensalutinta." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without @@ -1114,22 +1107,25 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. -#, fuzzy +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." -msgstr "Mankas profilo." +msgstr "Estas necese indiki profilon." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Listo de uzantoj en tiu ĉi grupo" +msgstr "%s ne estas en la atendovico por aliĝo al tiu ĉi grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1137,14 +1133,14 @@ msgstr "" #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. #, fuzzy, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "La uzanto %1$*s ne povas aliĝi al la grupo %2$*s." +msgstr "Malsukcesis nuligi peton de uzanto %1$s pri aliĝo al grupo %2$s." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. #, fuzzy, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "Stato de %1$s ĉe %2$s" +msgstr "Peto de %1$s je %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." @@ -1154,6 +1150,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s ne estas en la atendovico por aliĝo al tiu ĉi grupo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Malsukcesis nuligi peton de uzanto %1$s pri aliĝo al grupo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Peto de %1$s je %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abono permesiĝis" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Rajtigo nuliĝis." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1184,7 +1208,7 @@ msgstr "Nur avizoj estas ŝatmarkeblaj." #. TRANS: Client exception thrown when trying favorite a notice without content. #, fuzzy msgid "Unknown notice." -msgstr "Nekonata" +msgstr "Nekonata avizo." #. TRANS: Client exception thrown when trying favorite an already favorited notice. #, fuzzy @@ -1194,7 +1218,7 @@ msgstr "Jam en la ŝatolisto." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Grupanecoj de %s" #. TRANS: Subtitle for group membership feed. @@ -1207,8 +1231,7 @@ msgstr "Grupoj, kies ano %1$s estas ĉe %2$s" msgid "Cannot add someone else's membership." msgstr "Estas neeble aldoni anecon de aliulo." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "" @@ -1529,6 +1552,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s eksaniĝis de grupo %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Ne konektita." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Neniu profila ID petiĝas." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ne estas profilo kun tiu ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Malabonita" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Neniu konfirma kodo." @@ -1740,24 +1806,6 @@ msgstr "Ne forigi ĉi tiun grupon" msgid "Delete this group." msgstr "Forigi ĉi tiun grupon." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Ne konektita." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2440,14 +2488,6 @@ msgstr "Uzanto jam havas la rolon." msgid "No profile specified." msgstr "Neniu profilo elektita." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ne estas profilo kun tiu ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2750,7 +2790,7 @@ msgstr "Sendi al mi respondojn de personoj, kiujn mi ne abonas." #. TRANS: Checkbox label in IM preferences form. #, fuzzy msgid "Publish a MicroID" -msgstr "Publikigi MikroID por mia retpoŝtadreso." +msgstr "Publikigi «MicroID»’on" #. TRANS: Server error thrown on database error updating IM preferences. #, fuzzy @@ -2796,7 +2836,6 @@ msgid "That is the wrong IM address." msgstr "Tiu tujmesaĝila adreso estas malĝusta." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." msgstr "Malsukcesis forigo de adreskonfirmo." @@ -2858,15 +2897,14 @@ msgstr "Inviti novajn uzantojn" #. TRANS: is already subscribed to one or more users with the given e-mail address(es). #. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses. #. TRANS: Followed by a bullet list. -#, fuzzy msgid "You are already subscribed to this user:" msgid_plural "You are already subscribed to these users:" -msgstr[0] "Vi jam abonas jenajn uzantojn:" -msgstr[1] "Vi jam abonas jenajn uzantojn:" +msgstr[0] "Vi jam abonas avizojn de ĉi tiu uzanto:" +msgstr[1] "Vi jam abonas avizojn de ĉi tiuj uzantoj:" #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). #. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address). -#, fuzzy, php-format +#, php-format msgctxt "INVITE" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -2999,7 +3037,7 @@ msgid "You must be logged in to join a group." msgstr "Ensalutu por aniĝi al grupo." #. TRANS: Title for join group page after joining. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s joined group %2$s" msgstr "%1$s aniĝis al grupo %2$s" @@ -3007,7 +3045,7 @@ msgstr "%1$s aniĝis al grupo %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. #, fuzzy msgid "Unknown error joining group." -msgstr "Nekonata grupo." +msgstr "Nekonata eraro je grupaniĝo." #. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. @@ -3028,10 +3066,13 @@ msgid "Invalid license selection." msgstr "Nevalida permesila elekto" #. TRANS: Client error displayed when not specifying an owner for the all rights reserved license in the license admin panel. +#, fuzzy msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Vi devas specifi la posedanton de la materialoj kiam vi uzas la " +"neperemesilon «Ĉiuj rajtoj estas rezervitaj»." #. TRANS: Client error displayed selecting a too long license title in the license admin panel. #, fuzzy @@ -3062,6 +3103,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privata" @@ -3080,7 +3122,7 @@ msgstr "Speco" #. TRANS: Dropdown field instructions in the license admin panel. #, fuzzy msgid "Select a license." -msgstr "Elektu peranton" +msgstr "Elektu permesilon" #. TRANS: Form legend in the license admin panel. msgid "License details" @@ -3088,11 +3130,14 @@ msgstr "" #. TRANS: Field label in the license admin panel. msgid "Owner" -msgstr "" +msgstr "Rajtposedanto" #. TRANS: Field title in the license admin panel. +#, fuzzy msgid "Name of the owner of the site's content (if applicable)." msgstr "" +"Nomo de la posedanto de kopirajto pri la enhavo de la retpaĝaro (if " +"applicable)." #. TRANS: Field label in the license admin panel. msgid "License Title" @@ -3121,7 +3166,7 @@ msgstr "" #. TRANS: Button title in the license admin panel. #, fuzzy msgid "Save license settings." -msgstr "Konservi retejan agordon" +msgstr "Konservi la permesilan agordon." #. TRANS: Client error displayed when trying to log in while already logged in. #. TRANS: Client error displayed trying to use "one time password login" when already logged in. @@ -3215,7 +3260,7 @@ msgstr "Ne estas kuranta stato." #. TRANS: This is the title of the form for adding a new application. #, fuzzy msgid "New application" -msgstr "Nova Apliko" +msgstr "Nova aplikaĵo" #. TRANS: Client error displayed trying to add a new application while not logged in. msgid "You must be logged in to register an application." @@ -3236,7 +3281,7 @@ msgstr "Malsukcesis krei aplikaĵon." #. TRANS: Form validation error on New application page when providing an invalid image upload. #, fuzzy msgid "Invalid image." -msgstr "Grando nevalida." +msgstr "Nevalida bildo." #. TRANS: Title for form to create a group. msgid "New group" @@ -3351,7 +3396,7 @@ msgstr "Ĝisdatiĝo enhavante \"%s\"" #. TRANS: %1$s is the query, %2$s is the StatusNet site name. #, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s." -msgstr "Ĝisdatiĝo kongruanta al serĉvorto \"%1$s\" ĉe %2$s!" +msgstr "Avizoj kongruaj kun la serĉfrazo «%1$s» ĉe %2$s." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. #, fuzzy @@ -3577,7 +3622,6 @@ msgstr "Pasvorto devas esti 6-litera aŭ pli longa." #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#, fuzzy msgid "Passwords do not match." msgstr "La pasvortoj diferencas." @@ -3593,9 +3637,8 @@ msgstr "Eraris konservi uzanton: nevalida." #. TRANS: Server error displayed on page where to change password when password change #. TRANS: could not be made because of a server error. #. TRANS: Reset password form validation error message. -#, fuzzy msgid "Cannot save new password." -msgstr "Malsukcesis konservi novan pasvorton." +msgstr "Malsukcesis konservo de nova pasvorto." #. TRANS: Form validation notice on page where to change password. msgid "Password saved." @@ -3798,6 +3841,7 @@ msgid "SSL" msgstr "\"SSL\"" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Neniam" @@ -3871,7 +3915,7 @@ msgstr "Vi ne povas forigi uzantojn." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. #, fuzzy msgid "No such plugin." -msgstr "Ne estas tiu paĝo." +msgstr "Ne estas tiu kromprogramo." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" @@ -3882,7 +3926,7 @@ msgstr "" #, fuzzy msgctxt "TITLE" msgid "Plugins" -msgstr "Kromprogramo" +msgstr "Kromprogramoj" #. TRANS: Instructions at top of plugin admin page. msgid "" @@ -3955,17 +3999,22 @@ msgstr "URL de via hejmpaĝo, blogo aŭ profilo ĉe alia retejo" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" msgstr[1] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Priskribu vin mem kaj viajn ŝatokupojn" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3978,7 +4027,9 @@ msgid "Location" msgstr "Loko" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\"" #. TRANS: Checkbox label in form for profile settings. @@ -3986,6 +4037,7 @@ msgid "Share my current location when posting notices" msgstr "Sciigu mian nunan lokon, kiam mi sendas avizon." #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Markiloj" @@ -4020,6 +4072,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "Aŭtomate aboni iun ajn, kiu abonas min (prefereble por ne-homoj)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonatoj" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4052,7 +4125,7 @@ msgstr "Nevalida markilo: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Malsukcesis ĝisdatigi uzanton por aŭtomatabonado." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4061,6 +4134,7 @@ msgid "Could not save location prefs." msgstr "Malsukcesis konservi lokan preferon." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Malsukcesis konservi etikedojn." @@ -4408,30 +4482,10 @@ msgstr "Uzu nur por ĝisdatigo, anonco, kaj rehavi pasvorton." msgid "Longer name, preferably your \"real\" name." msgstr "Pli longa nomo, prefere via \"vera\" nomo." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" -msgstr[1] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Priskribu vin mem kaj viajn ŝatokupojn" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\"" - -#. TRANS: Field label on account registration page. -#, fuzzy +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" -msgstr "Registri" +msgstr "Registriĝi" #. TRANS: Copyright checkbox label in registration dialog, for private sites. #. TRANS: %1$s is the StatusNet sitename. @@ -4545,6 +4599,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL de via profilo ĉe alia kongrua mikroblogilo-servo" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4580,15 +4635,8 @@ msgstr "Nur ensalutinto rajtas ripeti avizon." msgid "No notice specified." msgstr "Neniu profilo specifiĝas." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Vi ne povas ripeti vian propran avizon." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "La avizo jam ripetiĝis." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Ripetita" @@ -4756,6 +4804,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Vi ne rajtas provejigi uzantojn ĉe tiu ĉi retejo." @@ -4847,7 +4896,7 @@ msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Rimarku: Ni subtenas HMAC-SHA1-subskribo. Ni ne subtenas platteksta " +"Rimarku: Ni subtenas HMAC-SHA1-subskribadon. Ni ne subtenas plattekstan " "subskribado-metodon." #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. @@ -4964,16 +5013,14 @@ msgid "Statistics" msgstr "Statistiko" #. TRANS: Label for group creation date. -#, fuzzy msgctxt "LABEL" msgid "Created" -msgstr "Kreita" +msgstr "Kreita je" #. TRANS: Label for member count in statistics on group page. -#, fuzzy msgctxt "LABEL" msgid "Members" -msgstr "Grupanoj" +msgstr "Anoj" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. #. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, @@ -5008,10 +5055,9 @@ msgstr "" "siaj vivoj kaj ŝatokupoj. " #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" -msgstr "Administrantoj" +msgstr "Estroj" #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5033,6 +5079,11 @@ msgstr "Mesaĝo al %1$s ĉe %2$s" msgid "Message from %1$s on %2$s" msgstr "Mesaĝo de %1$s ĉe %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Tujmesaĝilo ne estas disponebla." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Avizo viŝiĝas" @@ -5040,20 +5091,20 @@ msgstr "Avizo viŝiĝas" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, paĝo %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, paĝo %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5139,6 +5190,7 @@ msgid "Repeat of %s" msgstr "Ripeto de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Vi ne rajtas silentigi uzanton ĉe ĉi tiu retejo." @@ -5193,7 +5245,7 @@ msgstr "Nomo de retejo" #. TRANS: Field title on site settings panel. #, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "Nomo de via retejo, ekzemple \"Viafirmo Mikroblogo\"" +msgstr "Nomo de via retpaĝaro, ekzemple «Mikroblogaro de Viafirmo»." #. TRANS: Field label on site settings panel. msgid "Brought by" @@ -5435,51 +5487,72 @@ msgstr "" msgid "No code entered." msgstr "Neniu kodo entajpita" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Momentfotoj" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Administri agordon pri momentfoto" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Momentfota ofteco nevalida." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Momentfota ofteco estu nombro." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Momentfota alraporta URL nevalida." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Momentfotoj" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Harzarde dum ret-alklako." +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Laŭplane" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Datumaj momentfotoj" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Kiam sendu statistikan datumon al status.net serviloj" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Ofteco" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Momentfotoj sendiĝos post po N alklakoj" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Alraporta URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Momentfotoj sendiĝos al ĉi tiu URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Konservi" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Konservi retejan agordon" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5491,6 +5564,27 @@ msgstr "Vi ne abonis tiun profilon." msgid "Could not save subscription." msgstr "Malsukcesis konservi abonon." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Grupanecoj de %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Grupanoj de %1$s, paĝo %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Listo de uzantoj en tiu ĉi grupo" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Vi ne povas aboni foran OMB 0.1-an profilon per ĉi tiu ago." @@ -5609,31 +5703,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Avizofluo pri etikedo %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Avizofluo pri etikedo %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Avizofluo pri etikedo %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Neniu ID-argumento" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etikedo %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Uzanta profilo" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etikedi uzanton" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5642,13 +5748,22 @@ msgstr "" "Etikedoj por ĉi tiuj uzanto (literoj, ciferoj, -, . Kaj _), apartigu per " "komo aŭ spaco." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "Vi rajtas entikedi nur abonanton aŭ abonaton." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Markiloj" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Uzu ĉi tiun formularon por etikedi viajn abonantojn aŭ abonatojn." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Ne estas tiu etikedo." @@ -5656,27 +5771,33 @@ msgstr "Ne estas tiu etikedo." msgid "You haven't blocked that user." msgstr "Vi ne jam blokis la uzanton." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "La uzanto ne estas provejigita." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Uzanto ne estas silentigita." -msgid "No profile ID in request." -msgstr "Neniu profila ID petiĝas." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Malabonita" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Rigardato-flua permesilo \"%1$s\" ne konformas al reteja permesilo \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" -msgstr "Tujmesaĝila agordo." +msgstr "Agordo pri URLoj." #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -5688,10 +5809,12 @@ msgstr "Agordi diversajn aliajn elektojn." msgid " (free service)" msgstr " (libera servo)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" -msgstr "Nenio" +msgstr "[neniu]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[interna]" @@ -5703,17 +5826,21 @@ msgstr "Mallongigu URLojn per" msgid "Automatic shortening service to use." msgstr "Uzota aŭtomata mallongigad-servo." +#. TRANS: Field label in URL settings in profile. #, fuzzy msgid "URL longer than" msgstr "URL pli longa, ol" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "URLoj pli longaj ol tio mallongigatos, uzu «0» por ĉiam mallongigi." +#. TRANS: Field label in URL settings in profile. #, fuzzy msgid "Text longer than" msgstr "Teksto pli longa, ol" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5725,13 +5852,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL-mallongigado-servo tro longas (maksimume 50 literojn)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Nevalida avizo-enhavo" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Nevalida avizo-enhavo" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5812,7 +5943,7 @@ msgstr "Konservi retejan agordon" msgid "Authorize subscription" msgstr "Rajtigi abonon" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5824,6 +5955,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5836,6 +5968,7 @@ msgstr "Aboni la uzanton" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5854,9 +5987,11 @@ msgstr "Ne bezonas permesado!" msgid "Subscription authorized" msgstr "Abono permesiĝis" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "La abono permesiĝis, sed ne pasiĝis revoka URL. Legu gvidon de la retejo pro " @@ -5866,9 +6001,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Abono rifuziĝis" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "La abono rifuziĝis sed ne pasiĝis revoka URL. Legu gvidon de la retejo pro " @@ -5898,15 +6035,6 @@ msgstr "URL de abonito ‘%s’ estas de loka uzanto." msgid "Profile URL \"%s\" is for a local user." msgstr "Profila URL ‘%s’ estas de loka uzanto." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Rigardato-flua permesilo \"%1$s\" ne konformas al reteja permesilo \"%2$s\"." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6053,25 +6181,21 @@ msgid "Plugins" msgstr "Kromprogramo" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "Nomo" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "Versio" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" msgstr "Aŭtoro(j)" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Description" msgstr "Priskribo" @@ -6132,6 +6256,18 @@ msgstr[1] "Dosiero tiel granda superos vian monatan kvoton kun %d bajtoj." msgid "Invalid filename." msgstr "Nevalida dosiernomo." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "Profil-identigilo %s estas nevalida." + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, php-format +msgid "Group ID %s is invalid." +msgstr "Grup-identigilo %s estas nevalida." + #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." msgstr "Malsukcesis aniĝi al grupon." @@ -6144,18 +6280,6 @@ msgstr "Ne grupano." msgid "Group leave failed." msgstr "Malsukcesis foriri de grupo." -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "Eraris konservi uzanton: nevalida." - #. TRANS: Activity title. msgid "Join" msgstr "Aniĝi" @@ -6228,6 +6352,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Vi estas blokita de afiŝi ĉe tiu ĉi retejo." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Vi ne povas ripeti vian propran avizon." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Vi ne povas ripeti vian propran avizon." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Vi ne povas ripeti vian propran avizon." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Vi ne povas ripeti vian propran avizon." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "La avizo jam ripetiĝis." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "La uzanto ne havas lastan averton." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6254,16 +6407,13 @@ msgstr "Malsukcesis lokan grupan informon." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6312,7 +6462,9 @@ msgstr "Malsukcesis forigi abonan OMB-ĵetonon." msgid "Could not delete subscription." msgstr "Malsukcesis forigi abonon." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Sekvi" @@ -6356,7 +6508,7 @@ msgstr "Malsukcesis lokan grupan informon." #. TRANS: %s is the remote site. #, fuzzy, php-format msgid "Cannot locate account %s." -msgstr "Vi ne povas forigi uzantojn." +msgstr "Ne trovitas la konto %s." #. TRANS: Exception thrown when a service document could not be located account move. #. TRANS: %s is the remote site. @@ -6380,18 +6532,24 @@ msgid "User deletion in progress..." msgstr "Forigante uzanton..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Redakti profilan agordon" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Redakti" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Sendi rektan mesaĝon a ĉi tiu uzanto" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mesaĝo" @@ -6413,10 +6571,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderanto" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Aboni" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6429,18 +6583,18 @@ msgstr "Sentitola paĝo" #. TRANS: Localized tooltip for '...' expansion button on overlong remote messages. msgctxt "TOOLTIP" msgid "Show more" -msgstr "" +msgstr "Montri pli" #. TRANS: Inline reply form submit button: submits a reply comment. -#, fuzzy msgctxt "BUTTON" msgid "Reply" msgstr "Respondi" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. +#, fuzzy msgid "Write a reply..." -msgstr "" +msgstr "Skribi respondon…" #, fuzzy msgid "Status" @@ -6519,7 +6673,7 @@ msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #, fuzzy, php-format msgid "Unknown verb: \"%s\"." -msgstr "Nekonata lingvo \"%s\"." +msgstr "Nekonata verbo: «%s»." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." @@ -6562,7 +6716,7 @@ msgstr "" #. TRANS: %s is the notice URI. #, fuzzy, php-format msgid "No content for notice %s." -msgstr "Serĉi enhavon ĉe la retejo" +msgstr "Ne troviĝas la enhavo por la avizo %s." #, fuzzy, php-format msgid "No such user %s." @@ -6674,6 +6828,10 @@ msgstr "Reteja anonco" msgid "Snapshots configuration" msgstr "Momentfota Agordo" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Momentfotoj" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6681,7 +6839,7 @@ msgstr "" #. TRANS: Menu item title/tooltip #, fuzzy msgid "Plugins configuration" -msgstr "Voja agordo" +msgstr "Agordo pri kromprogramoj" #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." @@ -6823,6 +6981,10 @@ msgstr "Defaŭta aliro por la aplikaĵo: nur-lege aŭ leg-skribe." msgid "Cancel" msgstr "Nuligi" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Konservi" + msgid " by " msgstr " De " @@ -6867,7 +7029,6 @@ msgid "Tags for this attachment" msgstr "Etikedoj por ĉi tiu aldonaĵo" #. TRANS: Exception thrown when a password change fails. -#, fuzzy msgid "Password changing failed." msgstr "Ŝanĝo de pasvorto malsukcesis." @@ -6885,9 +7046,16 @@ msgid "Block this user" msgstr "Bloki la uzanton" #. TRANS: Submit button text on form to cancel group join request. +#, fuzzy msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Nuligi aliĝpeton" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Nuligi aliĝpeton" #. TRANS: Title for command results. msgid "Command results" @@ -7039,10 +7207,6 @@ msgstr "Eraris sendi rektan mesaĝon." msgid "Notice from %s repeated." msgstr "Avizo de %s ripetiĝas." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Eraris ripeti avizon." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7166,10 +7330,9 @@ msgstr[0] "Vi estas grupano de jena grupo:" msgstr[1] "Vi estas grupano de jenaj grupoj:" #. TRANS: Header line of help text for commands. -#, fuzzy msgctxt "COMMANDHELP" msgid "Commands:" -msgstr "Komandaj rezultoj" +msgstr "Komandoj:" #. TRANS: Help message for IM/SMS command "on" #, fuzzy @@ -7186,7 +7349,7 @@ msgstr "Malsukcesis malŝalti sciigon." #. TRANS: Help message for IM/SMS command "help" msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "montri ĉi tiun helpilon" #. TRANS: Help message for IM/SMS command "follow " #, fuzzy @@ -7321,10 +7484,9 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all" #. TRANS: Help message for IM/SMS command "tracks" #. TRANS: Help message for IM/SMS command "tracking" -#, fuzzy msgctxt "COMMANDHELP" msgid "not yet implemented." -msgstr "Komando ankoraŭ ne realigita." +msgstr "ankoraŭ ne realigita." #. TRANS: Help message for IM/SMS command "nudge " msgctxt "COMMANDHELP" @@ -7550,7 +7712,7 @@ msgstr[1] "" #. TRANS: Dropdown fieldd label on group edit form. #, fuzzy msgid "Membership policy" -msgstr "Ano ekde" +msgstr "Membriĝpolitiko" msgid "Open to all" msgstr "" @@ -7563,10 +7725,9 @@ msgid "Whether admin approval is required to join this group." msgstr "" #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" -msgstr "Administranto" +msgstr "Grupestrarano" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" @@ -7763,7 +7924,7 @@ msgstr "Retpoŝtadresa konfirmo" #. TRANS: Body for address confirmation email. #. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename, #. TRANS: %3$s is the URL to confirm at. -#, fuzzy, php-format +#, php-format msgid "" "Hey, %1$s.\n" "\n" @@ -7778,18 +7939,18 @@ msgid "" "Thanks for your time, \n" "%2$s\n" msgstr "" -"Saluton, %s.\n" +"Saluton, %1$s.\n" "\n" -"Iu ĵus entajpis tiun ĉi retpoŝtadreson ĉe %s.\n" +"Iu ĵus enigis ĉi tiun retpoŝtadreson ĉe %2$s.\n" "\n" -"Se faris vi tion, kaj vi volas konfirmi vian eniron, uzu la URL sube:\n" +"Se tio estis vi, kaj vi volas konfirmi vian enigon, uzu la jenan URLon:\n" "\n" -"%s\n" +"\t%3$s\n" "\n" -"Se ne, simple ignoru ĉi mesaĝon.\n" +"Se ne, simple ignoru ĉi tiun mesaĝon.\n" "\n" -"Dankon por via tempo,\n" -"%s\n" +"Dankon por via tempo, \n" +"%2$s\n" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -7799,6 +7960,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s nun rigardas viajn avizojn ĉe %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s nun rigardas viajn avizojn ĉe %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7825,7 +8000,7 @@ msgstr "" #. TRANS: %s is a URL. #, fuzzy, php-format msgid "Profile: %s" -msgstr "Profilo" +msgstr "Profilo: %s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -7835,13 +8010,13 @@ msgstr "Biografio: %s" #. TRANS: This is a paragraph in a new-subscriber e-mail. #. TRANS: %s is a URL where the subscriber can be reported as abusive. -#, fuzzy, php-format +#, php-format msgid "" "If you believe this account is being used abusively, you can block them from " "your subscribers list and report as spam to site administrators at %s." msgstr "" -"Se vi kredas, ke ĉi tiun konton iu misuzas, vi rajtas bloki ĝin de via " -"abonanto-listo kaj raporti ĝin kiel rubmesaĝanto al administrantoj ĉe %s" +"Se vi kredas, ke ĉi tiun konton iu misuzas, vi povas bloki ĝin de via " +"abonanto-listo kaj raporti ĝin kiel rubmesaĝanton al administrantoj de %s." #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. @@ -7926,7 +8101,7 @@ msgstr "Nova privata mesaĝo de %s" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" "\n" @@ -7946,14 +8121,11 @@ msgstr "" "%3$s\n" "------------------------------------------------------\n" "\n" -"Vi povas respondi al lia mesaĝon jene:\n" +"Vi povas respondi al lia mesaĝo ĉe:\n" "\n" "%4$s\n" "\n" -"Ne respondu al tiu ĉi mesaĝon; li ne ricevos ĝin.\n" -"\n" -"Kun bona espero,\n" -"%5$s\n" +"Ne respondu al ĉi tiu retpoŝtadreso; respondo ne atingos lin.\n" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -8070,9 +8242,9 @@ msgstr "" #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. #. TRANS: %5$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "%1$s has joined your group %2$s on %3$s." -msgstr "%1$s aniĝis grupon %2$s." +msgstr "%1$s aliĝis vian grupon %2$s ĉe %3$s." #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. @@ -8113,7 +8285,7 @@ msgstr "Viaj senditaj mesaĝoj" #, fuzzy msgid "Could not parse message." -msgstr "Malsukcesis ĝisdatigi uzanton" +msgstr "Malsukcesis analizo de mesaĝo" msgid "Not a registered user." msgstr "Ne registrita uzanto" @@ -8181,12 +8353,10 @@ msgid "Send a direct notice" msgstr "Sendi rektan avizon" #. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. -#, fuzzy msgid "Select recipient:" -msgstr "Elektu peranton" +msgstr "Elektu ricevonton:" #. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. -#, fuzzy msgid "No mutual subscribers." msgstr "Mankas abonantoj reciprokaj." @@ -8209,7 +8379,7 @@ msgstr "" #, fuzzy msgid "Bookmark not posted to this group." -msgstr "Vi ne rajtas forigi ĉi tiun grupon." +msgstr "" #, fuzzy msgid "Object not posted to this user." @@ -8304,7 +8474,9 @@ msgstr "Respondi" msgid "Delete this notice" msgstr "Forigi la avizon" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Avizo ripetiĝas" msgid "Update your status..." @@ -8583,28 +8755,77 @@ msgstr "Silento" msgid "Silence this user" msgstr "Silentigi la uzanton" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profilo" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonatoj" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Abonatoj de %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonantoj" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Abonantoj de %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupoj" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupoj de %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Inviti" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Inviti amikojn kaj kolegojn al %s kun vi" msgid "Subscribe to this user" msgstr "Aboni la uzanton" +msgid "Subscribe" +msgstr "Aboni" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8720,6 +8941,28 @@ msgstr[1] "La avizo jam ripetiĝis." msgid "Top posters" msgstr "Pintaj afiŝantoj" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Al" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Nekonata verbo: «%s»." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8838,5 +9081,29 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Mesaĝo tro longas - longlimo estas %1$d, via estas %2$d" +#~ msgid "Already repeated that notice." +#~ msgstr "La avizo jam ripetiĝis." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" +#~ msgstr[1] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Priskribu vin mem kaj viajn ŝatokupojn" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, paĝo %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "Rigardato-flua permesilo \"%1$s\" ne konformas al reteja permesilo \"%2$s" +#~ "\"." + +#~ msgid "Error repeating notice." +#~ msgstr "Eraris ripeti avizon." diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index cb1b4faac1..d247543ebd 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:11+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -84,7 +84,9 @@ msgstr "Guardar la configuración de acceso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -96,6 +98,7 @@ msgstr "Guardar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "No existe tal página." @@ -850,16 +853,6 @@ msgstr "No puedes borrar el estado de otro usuario." msgid "No such notice." msgstr "No existe ese mensaje." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "No puedes repetir tus propios mensajes" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Este mensaje ya se ha repetido." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1003,6 +996,8 @@ msgstr "Mensajes etiquetados con %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizaciones etiquetadas con %1$s en %2$s!" @@ -1117,11 +1112,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Perfil ausente." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1129,10 +1126,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Lista de los usuarios en este grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1157,6 +1156,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Lista de los usuarios en este grupo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "No se pudo unir el usuario %s al grupo %s" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "estado de %1$s en %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Suscripción autorizada" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorización cancelada" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1192,8 +1219,8 @@ msgstr "Ya incluido en favoritos." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s miembros en el grupo" #. TRANS: Subtitle for group membership feed. @@ -1207,8 +1234,7 @@ msgstr "%s es miembro de los grupos" msgid "Cannot add someone else's membership." msgstr "No se pudo insertar una nueva suscripción." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Buscar en el contenido de mensajes" @@ -1527,6 +1553,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ha dejado el grupo %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "No conectado." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "No hay id de perfil en solicitud." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "No existe perfil con ese ID" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Desuscrito" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Ningún código de confirmación." @@ -1741,24 +1810,6 @@ msgstr "No eliminar este grupo" msgid "Delete this group." msgstr "Eliminar este grupo." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "No conectado." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2449,14 +2500,6 @@ msgstr "El usuario ya tiene esta función." msgid "No profile specified." msgstr "No se especificó perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "No existe perfil con ese ID" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3087,6 +3130,7 @@ msgid "License selection" msgstr "Selección de Licencia" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privado" @@ -3837,6 +3881,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunca" @@ -3994,17 +4039,22 @@ msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Descríbete y cuéntanos tus intereses en %d caracteres" msgstr[1] "Descríbete y cuéntanos tus intereses en %d caracteres" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Descríbete y cuéntanos acerca de tus intereses" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4017,7 +4067,8 @@ msgid "Location" msgstr "Ubicación" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" #. TRANS: Checkbox label in form for profile settings. @@ -4025,6 +4076,7 @@ msgid "Share my current location when posting notices" msgstr "Compartir mi ubicación actual al publicar los mensajes" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etiquetas" @@ -4062,6 +4114,28 @@ msgstr "" "Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor " "para no-humanos)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Suscripciones" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Sólo puede seguir personas" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4094,7 +4168,7 @@ msgstr "Etiqueta inválida: \"% s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "No se pudo actualizar el usuario para autosuscribirse." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4103,6 +4177,7 @@ msgid "Could not save location prefs." msgstr "No se han podido guardar las preferencias de ubicación." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "No se han podido guardar las etiquetas." @@ -4454,25 +4529,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nombre largo, preferiblemente tu nombre \"real\"" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descríbete y cuéntanos tus intereses en %d caracteres" -msgstr[1] "Descríbete y cuéntanos tus intereses en %d caracteres" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descríbete y cuéntanos acerca de tus intereses" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4594,6 +4651,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4630,16 +4688,8 @@ msgstr "Sólo los usuarios que hayan accedido pueden repetir mensajes." msgid "No notice specified." msgstr "No se ha especificado un mensaje." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "No puedes repetir tus propios mensajes." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Ya has repetido este mensaje." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetido" @@ -4805,6 +4855,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "No puedes imponer restricciones a los usuarios en este sitio." @@ -5084,6 +5135,11 @@ msgstr "Mensaje a %1$s en %2$s" msgid "Message from %1$s on %2$s" msgstr "Mensaje de %1$s en %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "La mensajería instantánea no está disponible." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Mensaje borrado" @@ -5091,20 +5147,20 @@ msgstr "Mensaje borrado" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, página %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Mensajes etiquetados con %1$s, página %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, página %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Mensajes etiquetados con %1$s, página %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5192,6 +5248,7 @@ msgid "Repeat of %s" msgstr "Repetición de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "No puedes silenciar a otros usuarios en este sitio." @@ -5495,51 +5552,72 @@ msgstr "" msgid "No code entered." msgstr "No ingresó el código" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Capturas" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Administrar la configuración de instantáneas" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valor de ejecución de instantánea inválido" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "La frecuencia de captura debe ser un número." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL de instantánea de reporte inválido" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Capturas" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Aleatoriamente durante visita Web" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "En un trabajo programado" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Capturas de datos" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Cuándo enviar datos estadísticos a los servidores status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frecuencia" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Las instantáneas se enviarán una vez cada N visitas Web" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Reportar URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Las capturas se enviarán a este URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Guardar" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Guardar la configuración de instantáneas" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5551,6 +5629,27 @@ msgstr "No te has suscrito a ese perfil." msgid "Could not save subscription." msgstr "No se ha podido guardar la suscripción." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s miembros en el grupo" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s miembros de grupo, página %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Lista de los usuarios en este grupo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "No puedes suscribirte a un perfil remoto 0.1 de OMB con esta acción." @@ -5672,31 +5771,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Mensajes etiquetados con %1$s, página %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Canal de mensajes con etiqueta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Canal de mensajes con etiqueta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Canal de mensajes con etiqueta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "No existe argumento de ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "%s etiqueta" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil de usuario" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiquetar usuario" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5705,17 +5816,26 @@ msgstr "" "Etiquetas para este usuario (letras, números, -, ., y _), separadas por " "comas o espacios" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Sólo puedes marcar a las personas a quienes estás suscrito o que están " "suscritas a ti." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usa este formulario para agregar etiquetas a tus suscriptores o " "suscripciones." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "No existe tal etiqueta." @@ -5723,25 +5843,31 @@ msgstr "No existe tal etiqueta." msgid "You haven't blocked that user." msgstr "No has bloqueado ese usuario." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Al usuario no se le ha impuesto restricciones." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "El usuario no ha sido silenciado." -msgid "No profile ID in request." -msgstr "No hay id de perfil en solicitud." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Desuscrito" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licencia de flujo del emisor ‘%1$s’ es incompatible con la licencia del " "sitio ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Configuración de mensajería instantánea" @@ -5756,10 +5882,12 @@ msgstr "Manejo de varias opciones adicionales." msgid " (free service)" msgstr " (servicio libre)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ninguno" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5771,15 +5899,19 @@ msgstr "Acortar los URL con" msgid "Automatic shortening service to use." msgstr "Servicio de acorte automático a usar." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5789,13 +5921,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "El servicio de acortamiento de URL es muy largo (máx. 50 caracteres)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Contenido de mensaje inválido." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Contenido de mensaje inválido." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5876,7 +6012,7 @@ msgstr "Guardar la configuración del sitio" msgid "Authorize subscription" msgstr "Autorizar la suscripción" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5889,6 +6025,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Aceptar" @@ -5899,6 +6036,7 @@ msgstr "Suscribirse a este usuario." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Rechazar" @@ -5915,9 +6053,11 @@ msgstr "¡Ninguna petición de autorización!" msgid "Subscription authorized" msgstr "Suscripción autorizada" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "La suscripción ha sido autorizada, pero no se ha pasado un URL de retorno. " @@ -5928,9 +6068,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Suscripción rechazada" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "!Se ha rechazado la suscripción, pero no se ha pasado un URL de retorno. Lee " @@ -5961,16 +6103,6 @@ msgstr "El URI ‘%s’ del receptor es un usuario local." msgid "Profile URL \"%s\" is for a local user." msgstr "El URL ‘%s’ de perfil es para un usuario local." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Licencia de flujo del emisor ‘%1$s’ es incompatible con la licencia del " -"sitio ‘%2$s’." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6203,18 +6335,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Nombre de archivo inválido." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Ha fallado la acción de unirse el grupo" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "No es parte del grupo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Ha fallado la acción de abandonar el grupo" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6227,6 +6347,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Error al guardar el usuario; inválido." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Ha fallado la acción de unirse el grupo" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "No es parte del grupo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Ha fallado la acción de abandonar el grupo" + #. TRANS: Activity title. msgid "Join" msgstr "Unirse" @@ -6301,6 +6433,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "No puedes repetir tus propios mensajes" + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "No puedes repetir tus propios mensajes." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "No puedes repetir tus propios mensajes" + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "No puedes repetir tus propios mensajes" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Ya has repetido este mensaje." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "El/La usuario/a no tiene ningún último mensaje" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6327,16 +6489,13 @@ msgstr "No se ha podido guardar la información del grupo local." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6387,9 +6546,11 @@ msgstr "No se pudo eliminar la ficha OMB de suscripción." msgid "Could not delete subscription." msgstr "No se pudo eliminar la suscripción." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Permitir" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6455,18 +6616,24 @@ msgid "User deletion in progress..." msgstr "Eliminación de usuario en curso..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Editar configuración del perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Editar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Enviar un mensaje directo a este usuario" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mensaje" @@ -6488,10 +6655,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Suscribirse" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6750,6 +6913,10 @@ msgstr "Mensaje de sitio" msgid "Snapshots configuration" msgstr "Configuración de instantáneas" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Capturas" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6900,6 +7067,10 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Guardar" + msgid " by " msgstr "por " @@ -6965,6 +7136,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Todas las suscripciones" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados de comando" @@ -7116,10 +7293,6 @@ msgstr "Error al enviar mensaje directo." msgid "Notice from %s repeated." msgstr "Se ha repetido el mensaje de %s." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Ha habido un error al repetir el mensaje." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7877,6 +8050,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ahora está escuchando tus avisos en %2$s" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s ahora está escuchando tus avisos en %2$s" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8385,7 +8572,9 @@ msgstr "Responder" msgid "Delete this notice" msgstr "Borrar este mensaje" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Mensaje repetido" msgid "Update your status..." @@ -8665,28 +8854,77 @@ msgstr "Silenciar" msgid "Silence this user" msgstr "Silenciar a este usuario" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Suscripciones" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Personas a las que %s está suscrito" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Suscriptores" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Personas suscritas a %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s es miembro de los grupos" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Invitar" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Invita a amigos y colegas a unirse a %s" msgid "Subscribe to this user" msgstr "Suscribirse a este usuario" +msgid "Subscribe" +msgstr "Suscribirse" + msgid "People Tagcloud as self-tagged" msgstr "Nube de etiquetas de personas auto-etiquetadas" @@ -8804,6 +9042,28 @@ msgstr[1] "Este mensaje ya se ha repetido." msgid "Top posters" msgstr "Principales posteadores" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Para" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Idioma desconocido \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8921,5 +9181,29 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Mensaje muy largo - máximo %1$d caracteres, enviaste %2$d" +#~ msgid "Already repeated that notice." +#~ msgstr "Este mensaje ya se ha repetido." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Descríbete y cuéntanos tus intereses en %d caracteres" +#~ msgstr[1] "Descríbete y cuéntanos tus intereses en %d caracteres" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Descríbete y cuéntanos acerca de tus intereses" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, página %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "Licencia de flujo del emisor ‘%1$s’ es incompatible con la licencia del " +#~ "sitio ‘%2$s’." + +#~ msgid "Error repeating notice." +#~ msgstr "Ha habido un error al repetir el mensaje." diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 67cc7c6682..652696c575 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:13+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -84,7 +84,9 @@ msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -96,6 +98,7 @@ msgstr "ذخیره" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "چنین صفحه‌ای وجود ندارد." @@ -846,16 +849,6 @@ msgstr "شما توانایی حذف وضعیت کاربر دیگری را ند msgid "No such notice." msgstr "چنین پیامی وجود ندارد." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "نمی توانید پیام خود را تکرار کنید." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "قبلا آن پیام تکرار شده است." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -996,6 +989,8 @@ msgstr "پیام‌هایی که با %s نشانه گزاری شده اند." #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "پیام‌های نشانه گزاری شده با %1$s در %2$s" @@ -1112,11 +1107,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "نمایه وجود ندارد." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1124,10 +1121,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "یک فهرست از کاربران در این گروه" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1152,6 +1151,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "یک فهرست از کاربران در این گروه" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "نمی‌توان کاربر %1$s را عضو گروه %2$s کرد." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "وضعیت %1$s در %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "اشتراک تصدیق شد" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "تایید پیام‌رسان فوری لغو شد." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1192,7 +1219,7 @@ msgstr "افزودن به برگزیده‌ها" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "اعضای گروه %s" #. TRANS: Subtitle for group membership feed. @@ -1206,8 +1233,7 @@ msgstr "هست عضو %s گروه" msgid "Cannot add someone else's membership." msgstr "نمی‌توان اشتراک تازه‌ای افزود." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "پیدا کردن محتوای پیام‌ها" @@ -1528,6 +1554,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s گروه %2$s را ترک کرد" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "شما به سیستم وارد نشده اید." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "هیچ شناسهٔ نمایه‌ای درخواست نشده است." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "کاربری با چنین شناسه‌ای وجود ندارد." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "لغو اشتراک شده" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "بدون کد تصدیق." @@ -1742,24 +1811,6 @@ msgstr "این پیام را پاک نکن" msgid "Delete this group." msgstr "حذف این کاربر" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "شما به سیستم وارد نشده اید." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2457,14 +2508,6 @@ msgstr "کاربر از قبل این وظیفه را داشته است." msgid "No profile specified." msgstr "نمایه‌ای مشخص نشده است." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "کاربری با چنین شناسه‌ای وجود ندارد." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2997,15 +3040,15 @@ msgstr "" "و کسانی که به شما توجه دارند، به‌روز بمانید.\n" "\n" "شما همچنین می‌توانید خبرهایی دربارهٔ خودتان، افکارتان و یا زندگی‌تان با کسانی " -"که شما را می‌شناسند، به صورت آنلاین به اشتراک بگذارید.همچنین این راهی خوب " +"که شما را می‌شناسند، به صورت آنلاین به اشتراک بگذارید. همچنین این راهی خوب " "برای ملاقات افراد تازه‌ای است که علاقه‌مندی‌هایتان را با آن‌ها به اشتراک " "می‌گذارید.\n" "\n" -"%1$sگفته است:\n" +"%1$s گفته‌است:\n" "\n" "%4$s\n" "\n" -"شما می‌توانید صفحهٔ نمایهٔ %1$s' را در %2$s این‌جا ببینید:\n" +"شما می‌توانید صفحهٔ نمایهٔ %1$s' را در %2$s اینجا ببینید:\n" "\n" "%5$s\n" "\n" @@ -3084,6 +3127,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "خصوصی" @@ -3840,6 +3884,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "هیچ وقت" @@ -3999,16 +4044,21 @@ msgstr "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نم #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "خودتان و علاقه‌مندی‌هایتان را در %d نویسه توصیف کنید" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "خودتان و علاقه‌مندی‌هایتان را توصیف کنید" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4021,7 +4071,9 @@ msgid "Location" msgstr "موقعیت" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»" #. TRANS: Checkbox label in form for profile settings. @@ -4029,6 +4081,7 @@ msgid "Share my current location when posting notices" msgstr "مکان کنونی من هنگام فرستادن پیام‌ها به اشتراک گذاشته شود" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "برچسب‌ها" @@ -4064,6 +4117,27 @@ msgid "" msgstr "" "به صورت خودکار مشترک هر کسی بشو که مشترک من می‌شود (بهترین برای غیر انسان‌ها)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "اشتراک‌ها" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4095,7 +4169,7 @@ msgstr "نشان نادرست »%s«" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "نمی‌توان کاربر را برای اشتراک خودکار به‌هنگام‌سازی کرد." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4104,6 +4178,7 @@ msgid "Could not save location prefs." msgstr "نمی‌توان تنظیمات مکانی را تنظیم کرد." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "نمی‌توان برچسب‌ها را ذخیره کرد." @@ -4454,25 +4529,7 @@ msgstr "تنها برای به‌هنگام‌سازی‌ها، اعلامیه msgid "Longer name, preferably your \"real\" name." msgstr "نام بلند تر، به طور بهتر نام واقعیتان" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "خودتان و علاقه‌مندی‌هایتان را در %d نویسه توصیف کنید" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "خودتان و علاقه‌مندی‌هایتان را توصیف کنید" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4529,7 +4586,7 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"به شما تبریک می‌گوییم، %1$s! و به %%%%site.name%%%% خوش آمدید. از این‌جا، شما " +"به شما تبریک می‌گوییم، %1$s! و به %%%%site.name%%%% خوش آمدید. از اینجا، شما " "ممکن است بخواهید...\n" "\n" "* به [نمایه‌تان](%2$s) بروید و اولین پیام‌تان را بفرستید.\n" @@ -4592,6 +4649,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "نشانی اینترنتی نمایهٔ شما در سرویس میکروبلاگینگ سازگار دیگری" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4628,16 +4686,8 @@ msgstr "تنها کاربران وارد شده می توانند پیام‌ه msgid "No notice specified." msgstr "هیچ پیامی مشخص نشده است." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "شما نمی‌توانید پیام خودتان را تکرار کنید." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "شما قبلا آن پیام را تکرار کرده‌اید." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "تکرار شده" @@ -4799,6 +4849,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "شما نمی توانید کاربری را در این سایت ساکت کنید." @@ -5082,6 +5133,11 @@ msgstr "پیام به %1$s در %2$s" msgid "Message from %1$s on %2$s" msgstr "پیام از %1$s در %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "پیام‌رسان فوری در دسترس نیست." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "پیام پاک شد." @@ -5089,20 +5145,20 @@ msgstr "پیام پاک شد." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s، صفحهٔ %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "پیام‌های برچسب‌دار شده با %1$s، صفحهٔ %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s، صفحهٔ %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "پیام‌های برچسب‌دار شده با %1$s، صفحهٔ %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5190,6 +5246,7 @@ msgid "Repeat of %s" msgstr "تکرار %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "شما نمی توانید کاربری را در این سایت ساکت کنید." @@ -5480,7 +5537,7 @@ msgid "" "email but isn't listed here, send email to let us know at %s." msgstr "" "اپراتور موبایل برای گوشی شما. اگر شما اپراتوری را می‌شناسید که از پیامک از " -"راه پست الکترونیک پشتیبانی می‌کند، اما این‌جا فهرست نشده است، در %s نامه " +"راه پست الکترونیک پشتیبانی می‌کند، اما اینجا فهرست نشده است، در %s نامه " "بفرستید تا ما باخبر شویم." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. @@ -5488,52 +5545,72 @@ msgstr "" msgid "No code entered." msgstr "کدی وارد نشد" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "تصاویر لحظه‌ای" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "مدیریت پیکربندی تصویر لحظه‌ای" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "مقدار اجرای تصویر لحظه‌ای نامعتبر است." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "تناوب تصویر لحظه‌ای باید یک عدد باشد." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "نشانی اینترنتی گزارش تصویر لحظه‌ای نامعتبر است." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "تصاویر لحظه‌ای" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "در یک وظیفهٔ برنامه‌ریزی‌شده" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "داده‌های تصاویر لحظه‌ای" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "زمان فرستادن داده‌های آماری به کارگزارهای status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "فرکانس" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. #, fuzzy -msgid "Snapshots will be sent once every N web hits" +msgid "Snapshots will be sent once every N web hits." msgstr "تصاویر لحظه‌ای به این نشانی اینترنتی فرستاده می‌شوند" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "نشانی اینترنتی گزارش" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "تصاویر لحظه‌ای به این نشانی اینترنتی فرستاده می‌شوند" -#. TRANS: Submit button title. -msgid "Save" -msgstr "ذخیره‌کردن" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "ذخیرهٔ تنظیمات تصویر لحظه‌ای" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5545,6 +5622,27 @@ msgstr "شما مشترک آن نمایه نیستید." msgid "Could not save subscription." msgstr "نمی‌توان اشتراک را ذخیره کرد." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "اعضای گروه %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "اعضای گروه %1$s، صفحهٔ %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "یک فهرست از کاربران در این گروه" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "نمی‌توان با این کار مشترک یک نمایهٔ از راه دور OMB 0.1شد." @@ -5638,7 +5736,7 @@ msgstr "" "اعضای گروه‌هایی را که به آن‌ها علاقه دارید و یا [کاربران برجسته](%%action." "featured%%) را جست‌وجو کنید. اگر شما یک [کاربر توییتر](%%action." "twittersettings%%) هستید، شما می‌توانید به‌صورت خودکار مشترک افرادی شوید که " -"اکنون آن‌جا آن‌ها را دنبال می‌کنید." +"اکنون آنجا آن‌ها را دنبال می‌کنید." #. TRANS: Subscription list text when looking at the subscriptions for a of a user other #. TRANS: than the logged in user that has no subscriptions. %s is the user nickname. @@ -5667,32 +5765,44 @@ msgstr "پیامک" msgid "Notices tagged with %1$s, page %2$d" msgstr "پیام‌های برچسب‌دار شده با %1$s، صفحهٔ %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "خوراک پیام برای برچسب %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "خوراک پیام برای برچسب %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "خوراک پیام برای برچسب %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. #, fuzzy msgid "No ID argument." msgstr "هیچ پیوستی وجود ندارد." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "برچسب %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "نمایهٔ کاربر" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "برچسب‌گذاری کاربر" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5700,15 +5810,24 @@ msgid "" msgstr "" "برچسب‌ها برای این کاربر (حروف، اعداد، -، .، و _)، جدا شده با کاما- یا فاصله-" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "شما تنها می‌توانید افرادی را برچسب‌دار کنید که مشترک آن‌ها هستید یا آن‌ها مشترک " "شما هستند." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "برچسب‌ها" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "از این روش برای افزودن برچسب به مشترک‌ها یا اشتراک‌هایتان استفاده کنید." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "چنین برچسبی وجود ندارد." @@ -5716,24 +5835,30 @@ msgstr "چنین برچسبی وجود ندارد." msgid "You haven't blocked that user." msgstr "شما آن کاربر را مسدود نکرده اید." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "کاربر ساکت نشده است." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "کاربر ساکت نشده است." -msgid "No profile ID in request." -msgstr "هیچ شناسهٔ نمایه‌ای درخواست نشده است." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "لغو اشتراک شده" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "مجوز پیام «%1$s» با مجوز وب‌گاه «%2$s» سازگار نیست." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "تنظیمات پیام‌رسان فوری" @@ -5748,9 +5873,11 @@ msgstr "مدیریت انتخاب های مختلف دیگر." msgid " (free service)" msgstr " (سرویس‌ آزاد)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[هیچ]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5762,15 +5889,19 @@ msgstr "کوتاه‌کردن نشانی‌های اینترنتی با" msgid "Automatic shortening service to use." msgstr "کوتاه‌کنندهٔ نشانی مورد استفاده." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5780,13 +5911,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "کوتاه کنندهٔ نشانی بسیار طولانی است (بیش‌تر از ۵۰ حرف)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "محتوای پیام نامعتبر است." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "محتوای پیام نامعتبر است." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5867,7 +6002,7 @@ msgstr "ذخیرهٔ تنظیمات وب‌گاه" msgid "Authorize subscription" msgstr "تصدیق اشتراک" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5880,6 +6015,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5892,6 +6028,7 @@ msgstr "مشترک شدن این کاربر" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5910,9 +6047,10 @@ msgstr "هیچ درخواست اجازه‌ای وجود ندارد!" msgid "Subscription authorized" msgstr "اشتراک تصدیق شد" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5920,9 +6058,10 @@ msgstr "" msgid "Subscription rejected" msgstr "اشتراک پذیرفته نشد" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5950,14 +6089,6 @@ msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر msgid "Profile URL \"%s\" is for a local user." msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر محلی است." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "مجوز پیام «%1$s» با مجوز وب‌گاه «%2$s» سازگار نیست." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6183,18 +6314,6 @@ msgstr[0] "" msgid "Invalid filename." msgstr "نام‌پرونده نادرست است." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "پیوستن به گروه شکست خورد." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "بخشی از گروه نیست." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "ترک کردن گروه شکست خورد." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6207,6 +6326,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "هنگام ذخیرهٔ کاربر خطا رخ داد؛ نامعتبر است." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "پیوستن به گروه شکست خورد." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "بخشی از گروه نیست." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "ترک کردن گروه شکست خورد." + #. TRANS: Activity title. msgid "Join" msgstr "مشارکت کردن" @@ -6282,6 +6413,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "شما از فرستادن پیام در این وب‌گاه منع شده‌اید." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "نمی توانید پیام خود را تکرار کنید." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "شما نمی‌توانید پیام خودتان را تکرار کنید." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "نمی توانید پیام خود را تکرار کنید." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "نمی توانید پیام خود را تکرار کنید." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "شما قبلا آن پیام را تکرار کرده‌اید." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "کاربر آگهی آخر ندارد" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6307,16 +6468,13 @@ msgstr "نمی‌توان اطلاعات گروه محلی را ذخیره کر msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6367,9 +6525,11 @@ msgstr "نمی‌توان اشتراک را ذخیره کرد." msgid "Could not delete subscription." msgstr "نمی‌توان اشتراک را ذخیره کرد." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "اجازه دادن" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6436,18 +6596,24 @@ msgid "User deletion in progress..." msgstr "پاک‌کردن کاربر در حالت اجرا است..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "ویرایش تنظیمات نمایه" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "ویرایش" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "پیام مستقیم به این کاربر بفرستید" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "پیام" @@ -6469,10 +6635,6 @@ msgctxt "role" msgid "Moderator" msgstr "مدیر" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "اشتراک" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6727,6 +6889,10 @@ msgstr "پیام وب‌گاه" msgid "Snapshots configuration" msgstr "پیکربندی تصاویر لحظه‌ای" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "تصاویر لحظه‌ای" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6877,6 +7043,10 @@ msgstr "دسترسی پیش‌فرض برای این برنامه: تنها خو msgid "Cancel" msgstr "انصراف" +#. TRANS: Submit button title. +msgid "Save" +msgstr "ذخیره‌کردن" + msgid " by " msgstr "" @@ -6914,7 +7084,7 @@ msgstr "این پیام را پاک نکن" #. TRANS: Title. msgid "Notices where this attachment appears" -msgstr "پیام‌هایی که این پیوست در آن‌جا ظاهر می‌شود" +msgstr "پیام‌هایی که این پیوست در آنجا ظاهر می‌شود" #. TRANS: Title. msgid "Tags for this attachment" @@ -6943,6 +7113,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "تمام اشتراک‌ها" + #. TRANS: Title for command results. msgid "Command results" msgstr "نتیجه دستور" @@ -7095,10 +7271,6 @@ msgstr "خطا در فرستادن پیام مستقیم." msgid "Notice from %s repeated." msgstr "پیام %s تکرار شد." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "هنگام تکرار پیام خطایی رخ داد." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7845,6 +8017,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s اکنون پیام‌های شما را در %2$s دنبال می‌کند." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s اکنون پیام‌های شما را در %2$s دنبال می‌کند." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7990,7 +8176,7 @@ msgstr "" "%3$s\n" "------------------------------------------------------\n" "\n" -"شما می‌توانید این‌جا به پیام‌شان پاسخ دهید:\n" +"شما می‌توانید اینجا به پیام‌شان پاسخ دهید:\n" "\n" "%4$s\n" "\n" @@ -8040,7 +8226,7 @@ msgstr "" "\n" "است.\n" "\n" -"شما می‌توانید فهرست برگزیده‌های %1$s را این‌جا ببینید:\n" +"شما می‌توانید فهرست برگزیده‌های %1$s را اینجا ببینید:\n" "\n" "%5$s\n" "\n" @@ -8054,7 +8240,7 @@ msgid "" "\n" "\t%s" msgstr "" -"گفت‌وگوی کامل می‌تواند این‌جا خوانده شود:\n" +"گفت‌وگوی کامل می‌تواند اینجا خوانده شود:\n" "\n" "\t\t%s" @@ -8089,28 +8275,28 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) یک پاسخ به پیام شما (یک «@-پاسخ») در %2$s داده است.\n" +"%1$s (@%9$s) یک پاسخ به پیام شما (یک «@-پاسخ») در %2$s داده‌است.\n" "\n" "پیام این است:\n" "\n" "\t%3$s\n" "\n" -"پاسخ داده است:\n" +"پاسخ داده‌است:\n" "\n" "\t%4$s\n" "\n" -"%5$sشما می‌توانید این‌جا پاسخ دهید:\n" +"%5$sشما می‌توانید اینجا پاسخ دهید:\n" "\n" "\t%6$s\n" "\n" -"فهرست تمام @-پاسخ‌ها برای شما این‌جا است:\n" +"فهرست تمام @-پاسخ‌ها برای شما اینجا است:\n" "\n" "%7$s\n" "\n" "با تشکر،\n" "%2$s\n" "\n" -"پ.ن. شما می‌توانید این آگاه‌سازی با نامه را این‌جا خاموش کنید:%8$s\n" +"پ.ن. شما می‌توانید این آگاه‌سازی با نامه را اینجا خاموش کنید:%8$s\n" #. TRANS: Subject of group join notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. @@ -8348,7 +8534,9 @@ msgstr "پاسخ" msgid "Delete this notice" msgstr "این پیام را پاک کن" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "پیام تکرار شد" msgid "Update your status..." @@ -8634,28 +8822,77 @@ msgstr "ساکت کردن" msgid "Silence this user" msgstr "ساکت کردن این کاربر" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "نمایه" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "اشتراک‌ها" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "People %s subscribes to" +msgid "People %s subscribes to." msgstr "افراد مشترک %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "مشترک‌ها" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "افراد مشترک %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "گروه‌ها" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "هست عضو %s گروه" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "دعوت‌کردن" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در" msgid "Subscribe to this user" msgstr "مشترک شدن این کاربر" +msgid "Subscribe" +msgstr "اشتراک" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8765,6 +9002,28 @@ msgstr[0] "قبلا آن پیام تکرار شده است." msgid "Top posters" msgstr "اعلان های بالا" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "به" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "زبان «%s» ناشناس است." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8880,7 +9139,27 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "پیام خیلی طولانی است - حداکثر تعداد مجاز %1$d نویسه است که شما %2$d نویسه " -#~ "را فرستادید." +#~ msgid "Already repeated that notice." +#~ msgstr "قبلا آن پیام تکرار شده است." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "خودتان و علاقه‌مندی‌هایتان را در %d نویسه توصیف کنید" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "خودتان و علاقه‌مندی‌هایتان را توصیف کنید" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s، صفحهٔ %2$d" + +#, fuzzy +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "مجوز پیام «%1$s» با مجوز وب‌گاه «%2$s» سازگار نیست." + +#~ msgid "Error repeating notice." +#~ msgstr "هنگام تکرار پیام خطایی رخ داد." diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 77452be725..6e33b0ecf9 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:14+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -82,7 +82,9 @@ msgstr "Tallenna käyttöoikeusasetukset" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -94,6 +96,7 @@ msgstr "Tallenna" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Sivua ei ole." @@ -841,16 +844,6 @@ msgstr "Et voi poistaa toisen käyttäjän päivitystä." msgid "No such notice." msgstr "Päivitystä ei ole." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Et voi lähettää uudelleen omaa viestiäsi." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Tätä päivitystä ei voi poistaa." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -991,6 +984,8 @@ msgstr "Päivitykset joilla on tagi %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Käyttäjän %1$s suosikit palvelussa %2$s!" @@ -1105,11 +1100,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Käyttäjällä ei ole profiilia." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1117,10 +1114,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Lista ryhmän käyttäjistä." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1145,6 +1144,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Lista ryhmän käyttäjistä." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Käyttäjä %1$s ei voinut liittyä ryhmään %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Käyttäjän %1$s päivitys %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Tilaus sallittu" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Hyväksyminen peruttiin." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1180,9 +1207,9 @@ msgstr "Tämä päivitys on jo suosikkina." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" -msgstr "%s ryhmien jäsenyydet" +#, fuzzy, php-format +msgid "Group memberships of %s" +msgstr "Käyttäjän %s ryhmäjäsenyydet" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1194,8 +1221,7 @@ msgstr "Ryhmät, joiden jäsen %1$s on palvelimella %2$s" msgid "Cannot add someone else's membership." msgstr "Ei voi lisätä toista jäseneksi." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Vain liittymistoimintoja tuetaan." @@ -1505,6 +1531,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Et ole kirjautunut sisään." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Ei profiilia tuolle ID:lle." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ei profiilia tuolle ID:lle." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Tilaus lopetettu" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Varmistuskoodia ei ole annettu." @@ -1713,24 +1782,6 @@ msgstr "Älä poista tätä ryhmää." msgid "Delete this group." msgstr "Poista tämä ryhmä." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Et ole kirjautunut sisään." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2403,14 +2454,6 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "No profile specified." msgstr "Profiilia ei ole määritelty." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ei profiilia tuolle ID:lle." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3018,6 +3061,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. #, fuzzy msgid "Private" msgstr "Yksityisyys" @@ -3789,6 +3833,7 @@ msgid "SSL" msgstr "SMS" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. #, fuzzy msgid "Never" msgstr "Palauta" @@ -3813,7 +3858,7 @@ msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Server to direct SSL requests to." -msgstr "Palvelin jolle SSL pyynnöt lähetetään." +msgstr "Palvelin jolle SSL-pyynnöt lähetetään." #. TRANS: Button title text to store form data in the Paths admin panel. msgid "Save paths" @@ -3842,7 +3887,7 @@ msgstr "Tuo ei ole kelvollinen sähköpostiosoite." #. TRANS: Page title for users with a certain self-tag. #. TRANS: %1$s is the tag, %2$s is the page number. -#, php-format +#, fuzzy, php-format msgid "Users self-tagged with %1$s - page %2$d" msgstr "Käyttäjät joilla on henkilötagi %1$s - sivu %2$d" @@ -3860,7 +3905,7 @@ msgstr "Tämä toiminto hyväksyy vain POST-pyyntöjä." #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. msgid "You cannot administer plugins." -msgstr "Et voi hallinnoida lisäosia." +msgstr "Et voi hallinnoida liitännäisiä." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. msgid "No such plugin." @@ -3874,7 +3919,7 @@ msgstr "Käytössä" #. TRANS: Tab and title for plugins admin panel. msgctxt "TITLE" msgid "Plugins" -msgstr "Laajennukset" +msgstr "Liitännäiset" #. TRANS: Instructions at top of plugin admin page. msgid "" @@ -3882,20 +3927,19 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" -"Muita lisäosia voidaan kytkeä päälle ja säätää manuaalisesti. Katso " -"lisätietoja: online plugin " -"dokumentaatio." +"Muita liitännäisiä voidaan kytkeä päälle ja säätää manuaalisesti. " +"Lisätietoja on sivulla liitännäisten dokumentaatio." #. TRANS: Admin form section header msgid "Default plugins" -msgstr "Vakiolaajennukset" +msgstr "Oletusliitännäiset" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" "All default plugins have been disabled from the site's configuration file." msgstr "" -"Kaikki oletus liitännäiset on poistettu käytöstä sivuston " -"määritystiedostossa." +"Kaikki oletusliitännäiset on poistettu käytöstä sivuston määritystiedostossa." #. TRANS: Client error displayed if the notice posted has too many characters. msgid "Invalid notice content." @@ -3953,17 +3997,22 @@ msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3976,8 +4025,9 @@ msgid "Location" msgstr "Kotipaikka" #. TRANS: Tooltip for field label in form for profile settings. +#. TRANS: Field title on account registration page. #, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"" +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" #. TRANS: Checkbox label in form for profile settings. @@ -3985,6 +4035,7 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Tagit" @@ -4022,6 +4073,28 @@ msgstr "" "Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " "ihmiskäyttäjille)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Tilaukset" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Vain henkilöitä voi seurata." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4054,7 +4127,7 @@ msgstr "Virheellinen tagi: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4063,6 +4136,7 @@ msgid "Could not save location prefs." msgstr "Tageja ei voitu tallentaa." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Tagien tallennus epäonnistui." @@ -4409,27 +4483,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Pitempi nimi, mieluiten oikea nimesi" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" -msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" - -#. TRANS: Field label on account registration page. -#, fuzzy +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Rekisteröidy" @@ -4548,6 +4602,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4588,16 +4643,8 @@ msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." msgid "No notice specified." msgstr "Profiilia ei ole määritelty." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Sinä kuulut jo tähän ryhmään." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. #, fuzzy msgid "Repeated" msgstr "Luotu" @@ -4762,6 +4809,7 @@ msgid "StatusNet" msgstr "Päivitys poistettu." #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "Et voi lähettää viestiä tälle käyttäjälle." @@ -5028,6 +5076,11 @@ msgstr "Viesti käyttäjälle %1$s, %2$s" msgid "Message from %1$s on %2$s" msgstr "Viesti käyttäjältä %1$s, %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Pikaviestin ei ole käytettävissä." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Päivitys on poistettu." @@ -5035,20 +5088,20 @@ msgstr "Päivitys on poistettu." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "Ryhmät, sivu %d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Päivitykset joilla on tagi %s" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "Ryhmät, sivu %d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Päivitykset joilla on tagi %s" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5130,6 +5183,7 @@ msgid "Repeat of %s" msgstr "Vastaukset käyttäjälle %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. #, fuzzy msgid "You cannot silence users on this site." msgstr "Et voi lähettää viestiä tälle käyttäjälle." @@ -5432,52 +5486,67 @@ msgstr "" msgid "No code entered." msgstr "Koodia ei ole syötetty." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Sähköpostiosoitteen vahvistus" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Tallenna" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "Profiilikuva-asetukset" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5489,6 +5558,27 @@ msgstr "Et ole tilannut tämän käyttäjän päivityksiä." msgid "Could not save subscription." msgstr "Tilausta ei onnistuttu tallentamaan." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s ryhmien jäsenyydet" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Ryhmän %s jäsenet" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Lista ryhmän käyttäjistä." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5601,32 +5691,44 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Päivitykset joilla on tagi %s" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Syöte ryhmän %s päivityksille (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. #, fuzzy msgid "No ID argument." msgstr "Ei id parametria." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Tagi %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Käyttäjän profiili" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Tagaa käyttäjä" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5635,17 +5737,26 @@ msgstr "" "Käyttäjän tagit (kirjaimet, numerot, -, ., ja _), pilkulla tai välilyönnillä " "erotettuna" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun " "päivityksiäsi." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tagit" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Käytä tätä lomaketta lisätäksesi tageja tilaajillesi ja käyttäjille jotka " "tilaavat päivityksiäsi." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Tuota tagia ei ole." @@ -5653,25 +5764,31 @@ msgstr "Tuota tagia ei ole." msgid "You haven't blocked that user." msgstr "Älä estä tätä käyttäjää" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "Käyttäjää ei ole estetty ryhmästä." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "Käyttäjällä ei ole profiilia." -msgid "No profile ID in request." -msgstr "Ei profiilia tuolle ID:lle." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Tilaus lopetettu" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Profiilikuva-asetukset" @@ -5686,10 +5803,12 @@ msgstr "Hallinnoi muita asetuksia." msgid " (free service)" msgstr "" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ei mitään" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5701,15 +5820,19 @@ msgstr "Lyhennä URL-osoitteita" msgid "Automatic shortening service to use." msgstr "Käytettävä automaattinen lyhennyspalvelu." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5719,13 +5842,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Koko ei kelpaa." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Koko ei kelpaa." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5813,7 +5940,7 @@ msgstr "Profiilikuva-asetukset" msgid "Authorize subscription" msgstr "Valtuuta tilaus" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5826,6 +5953,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5838,6 +5966,7 @@ msgstr "Tilaa tämä käyttäjä" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5856,10 +5985,11 @@ msgstr "Ei valtuutuspyyntöä!" msgid "Subscription authorized" msgstr "Tilaus sallittu" +#. TRANS: Accept message text from Authorise subscription page. #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " @@ -5870,10 +6000,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Tilaus hylätty" +#. TRANS: Reject message from Authorise subscription page. #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " @@ -5903,14 +6034,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6122,6 +6245,18 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Koko ei kelpaa." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." + #. TRANS: Exception thrown when joining a group fails. #, fuzzy msgid "Group join failed." @@ -6137,18 +6272,6 @@ msgstr "Ei voitu päivittää ryhmää." msgid "Group leave failed." msgstr "Ryhmän profiili" -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." - #. TRANS: Activity title. msgid "Join" msgstr "Liity" @@ -6226,6 +6349,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Et voi lähettää uudelleen omaa viestiäsi." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Et voi lähettää uudelleen omaa viestiäsi." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Et voi lähettää uudelleen omaa viestiäsi." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Sinä kuulut jo tähän ryhmään." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Käyttäjällä ei ole viimeistä päivitystä" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6252,16 +6405,13 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6314,9 +6464,11 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "Could not delete subscription." msgstr "Tilausta ei onnistuttu tallentamaan." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Salli" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6384,18 +6536,22 @@ msgstr "" #. TRANS: Link title for link on user profile. #, fuzzy -msgid "Edit profile settings" +msgid "Edit profile settings." msgstr "Profiiliasetukset" #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Edit" msgstr "" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Lähetä suora viesti tälle käyttäjälle" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Viesti" @@ -6419,10 +6575,6 @@ msgctxt "role" msgid "Moderator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Tilaa" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, fuzzy, php-format msgid "%1$s - %2$s" @@ -6691,6 +6843,10 @@ msgstr "Palvelun ilmoitus" msgid "Snapshots configuration" msgstr "SMS vahvistus" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6846,6 +7002,10 @@ msgstr "" msgid "Cancel" msgstr "Peruuta" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Tallenna" + msgid " by " msgstr "" @@ -6914,6 +7074,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Kaikki tilaukset" + #. TRANS: Title for command results. msgid "Command results" msgstr "Komennon tulos" @@ -7061,10 +7227,6 @@ msgstr "Tapahtui virhe suoran viestin lähetyksessä." msgid "Notice from %s repeated." msgstr "Päivitys lähetetty" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Virhe tapahtui käyttäjän asettamisessa." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7821,6 +7983,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8256,8 +8432,9 @@ msgstr "Vastaus" msgid "Delete this notice" msgstr "Poista tämä päivitys" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy -msgid "Notice repeated" +msgid "Notice repeated." msgstr "Päivitys on poistettu." msgid "Update your status..." @@ -8552,28 +8729,77 @@ msgstr "Palvelun ilmoitus" msgid "Silence this user" msgstr "Estä tämä käyttäjä" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profiili" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Tilaukset" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Ihmiset joiden tilaaja %s on" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Tilaajat" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Ryhmät" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Ryhmät, joiden jäsen %s on" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Kutsu" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" msgid "Subscribe to this user" msgstr "Tilaa tämä käyttäjä" +msgid "Subscribe" +msgstr "Tilaa" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8686,6 +8912,28 @@ msgstr[1] "Tätä päivitystä ei voi poistaa." msgid "Top posters" msgstr "Eniten päivityksiä" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Vastaanottaja" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Tunnistamaton tiedoston tyyppi" + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8806,6 +9054,24 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" +#~ msgid "Already repeated that notice." +#~ msgstr "Tätä päivitystä ei voi poistaa." + #, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" +#~ msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi" + +#, fuzzy +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "Ryhmät, sivu %d" + +#~ msgid "Error repeating notice." +#~ msgstr "Virhe tapahtui käyttäjän asettamisessa." diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 1fb9a79e29..baccf9cf13 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -10,6 +10,7 @@ # Author: Julien C # Author: Lockal # Author: McDutchie +# Author: Netantho # Author: Patcito # Author: Peter17 # Author: Sherbrooke @@ -22,17 +23,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -87,7 +88,9 @@ msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -99,6 +102,7 @@ msgstr "Enregistrer" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Page non trouvée." @@ -859,16 +863,6 @@ msgstr "Vous ne pouvez pas supprimer le statut d’un autre utilisateur." msgid "No such notice." msgstr "Avis non trouvé." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Vous ne pouvez pas reprendre votre propre avis." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Vous avez déjà repris cet avis." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1013,6 +1007,8 @@ msgstr "Avis marqués avec %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mises à jour marquées avec %1$s dans %2$s !" @@ -1030,9 +1026,8 @@ msgid "Atom post must not be empty." msgstr "Un post atom ne doit pas être vide." #. TRANS: Client error displayed attempting to post an API that is not well-formed XML. -#, fuzzy msgid "Atom post must be well-formed XML." -msgstr "Une publication Atom doit être une entrée « Atom »." +msgstr "Une publication Atom doit être un fichier XML correct." #. TRANS: Client error displayed when not using an Atom entry. msgid "Atom post must be an Atom entry." @@ -1128,11 +1123,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Profil manquant." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1140,18 +1137,22 @@ msgid "%s is not in the moderation queue for this group." msgstr "Liste des utilisateurs inscrits à ce groupe." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "Impossible d’inscrire l’utilisateur %1$s au groupe %2$s." +msgstr "" +"Impossible d’annuler la demande d'inscription de l’utilisateur %1$s au " +"groupe %2$s." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. @@ -1168,6 +1169,36 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Liste des utilisateurs inscrits à ce groupe." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Impossible d’annuler la demande d'inscription de l’utilisateur %1$s au " +"groupe %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Statut de %1$s sur %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abonnement autorisé" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorisation annulée." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1209,7 +1240,7 @@ msgstr "Ajouter aux favoris" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Membres du groupe %s" #. TRANS: Subtitle for group membership feed. @@ -1223,8 +1254,7 @@ msgstr "Groupes de %s" msgid "Cannot add someone else's membership." msgstr "Impossible d’insérer un nouvel abonnement." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Ne peut gérer que les activités de publication." @@ -1445,7 +1475,7 @@ msgstr "Arrière plan" #. TRANS: Title for submit button to backup an account on the backup account page. msgid "Backup your account." -msgstr "" +msgstr "Sauvegarder votre compte" #. TRANS: Client error displayed when blocking a user that has already been blocked. msgid "You already blocked that user." @@ -1545,6 +1575,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s a quitté le groupe %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Non connecté." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Aucun identifiant de profil dans la requête." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Aucun profil ne correspond à cet identifiant." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Désabonné" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Aucun code de confirmation." @@ -1621,7 +1694,7 @@ msgstr "Vous ne pouvez pas supprimer des utilisateurs." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." -msgstr "" +msgstr "Je suis sûr" #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. @@ -1630,15 +1703,13 @@ msgid "You must write \"%s\" exactly in the box." msgstr "" #. TRANS: Confirmation that a user account has been deleted. -#, fuzzy msgid "Account deleted." -msgstr "Avatar supprimé." +msgstr "Compte supprimé." #. TRANS: Page title for page on which a user account can be deleted. #. TRANS: Option in profile settings to delete the account of the currently logged in user. -#, fuzzy msgid "Delete account" -msgstr "Créer un compte" +msgstr "Supprimer le compte" #. TRANS: Form text for user deletion form. msgid "" @@ -1750,32 +1821,12 @@ msgstr "" "d’actualités individuels." #. TRANS: Submit button title for 'No' when deleting a group. -#, fuzzy msgid "Do not delete this group." msgstr "Ne pas supprimer ce groupe" #. TRANS: Submit button title for 'Yes' when deleting a group. -#, fuzzy msgid "Delete this group." -msgstr "Supprimer ce groupe" - -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Non connecté." +msgstr "Supprimer ce groupe." #. TRANS: Instructions for deleting a notice. msgid "" @@ -2463,14 +2514,6 @@ msgstr "L’utilisateur a déjà ce rôle." msgid "No profile specified." msgstr "Aucun profil n’a été spécifié." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Aucun profil ne correspond à cet identifiant." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2764,7 +2807,6 @@ msgid "%s screenname." msgstr "" #. TRANS: Header for IM preferences form. -#, fuzzy msgid "IM Preferences" msgstr "Préférences de messagerie instantanée" @@ -2792,9 +2834,8 @@ msgid "Publish a MicroID" msgstr "Publier un MicroID pour mon adresse courriel." #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." -msgstr "Impossible de mettre à jour l’utilisateur." +msgstr "Impossible de mettre à jour les préférences de messagerie instantanée." #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2802,7 +2843,6 @@ msgid "Preferences saved." msgstr "Préférences enregistrées" #. TRANS: Message given saving IM address without having provided one. -#, fuzzy msgid "No screenname." msgstr "Aucun pseudo." @@ -3112,6 +3152,7 @@ msgid "License selection" msgstr "Sélection d’une licence" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privé" @@ -3861,6 +3902,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Jamais" @@ -4020,17 +4062,22 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Décrivez-vous avec vos intérêts en %d caractère" msgstr[1] "Décrivez-vous avec vos intérêts en %d caractères" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Décrivez vous et vos interêts" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4043,7 +4090,9 @@ msgid "Location" msgstr "Emplacement" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" #. TRANS: Checkbox label in form for profile settings. @@ -4051,6 +4100,7 @@ msgid "Share my current location when posting notices" msgstr "Partager ma localisation lorsque je poste des avis" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Balises" @@ -4088,6 +4138,27 @@ msgstr "" "M’abonner automatiquement à tous ceux qui s’abonnent à moi (recommandé pour " "les utilisateurs non-humains)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonnements" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4119,7 +4190,7 @@ msgstr "Marque invalide : « %s »" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Impossible de mettre à jour l’auto-abonnement." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4128,6 +4199,7 @@ msgid "Could not save location prefs." msgstr "Impossible d’enregistrer les préférences de localisation." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Impossible d’enregistrer les marques." @@ -4484,26 +4556,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nom plus long, votre \"vrai\" nom de préférence" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Décrivez-vous avec vos intérêts en %d caractère" -msgstr[1] "Décrivez-vous avec vos intérêts en %d caractères" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Décrivez vous et vos interêts" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4627,6 +4680,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL de votre profil sur un autre service de micro-blogging compatible" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4662,16 +4716,8 @@ msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis." msgid "No notice specified." msgstr "Aucun avis n’a été spécifié." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Vous ne pouvez pas reprendre votre propre avis." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Vous avez déjà repris cet avis." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repris" @@ -4839,6 +4885,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" "Vous ne pouvez pas mettre des utilisateur dans le bac à sable sur ce site." @@ -5122,27 +5169,32 @@ msgstr "Message adressé à %1$s le %2$s" msgid "Message from %1$s on %2$s" msgstr "Message reçu de %1$s le %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "La messagerie instantanée n’est pas disponible." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Avis supprimé." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s a marqué « %2$s »" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s a marqué « %2$s » la page %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, page %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Avis marqués avec %1$s, page %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5231,6 +5283,7 @@ msgid "Repeat of %s" msgstr "Reprises de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Vous ne pouvez pas réduire des utilisateurs au silence sur ce site." @@ -5537,51 +5590,72 @@ msgstr "" msgid "No code entered." msgstr "Aucun code entré" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantanés" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gérer la configuration des instantanés" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valeur de lancement d’instantanés invalide." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "La fréquence des instantanés doit être un nombre." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL de rapport d’instantanés invalide." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantanés" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Au hasard lors des requêtes web" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Dans une tâche programée" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantanés de données" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quand envoyer des données statistiques aux serveurs status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Fréquence" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Les instantanés seront envoyés une fois tous les N requêtes" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL de rapport" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Les instantanés seront envoyés à cette URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Enregistrer" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Sauvegarder les paramètres des instantanés" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5593,6 +5667,27 @@ msgstr "Vous n’êtes pas abonné(e) à ce profil." msgid "Could not save subscription." msgstr "Impossible d’enregistrer l’abonnement." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Membres du groupe %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membres du groupe %1$s - page %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Liste des utilisateurs inscrits à ce groupe." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5716,31 +5811,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Avis marqués avec %1$s, page %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Flux des avis pour la marque %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Flux des avis pour la marque %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Flux des avis pour la marque %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Aucun argument d’identifiant." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Marque %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profil de l’utilisateur" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Marquer l’utilisateur" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5749,16 +5856,25 @@ msgstr "" "Marques pour cet utilisateur (lettres, chiffres, -, ., et _), séparées par " "des virgules ou des espaces" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) " "ou qui sont abonnées à vous." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Balises" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Cette marque n’existe pas." @@ -5766,25 +5882,31 @@ msgstr "Cette marque n’existe pas." msgid "You haven't blocked that user." msgstr "Vous n’avez pas bloqué cet utilisateur." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "L’utilisateur ne se trouve pas dans le bac à sable." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "L’utilisateur n’est pas réduit au silence." -msgid "No profile ID in request." -msgstr "Aucun identifiant de profil dans la requête." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Désabonné" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "La licence du flux auquel vous êtes abonné(e), « %1$s », n’est pas compatible " "avec la licence du site « %2$s »." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Paramètres de messagerie instantanée" @@ -5799,10 +5921,12 @@ msgstr "Autres options à configurer" msgid " (free service)" msgstr " (service libre)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Aucun" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5814,15 +5938,19 @@ msgstr "Raccourcir les URL avec" msgid "Automatic shortening service to use." msgstr "Sélectionnez un service de réduction d’URL." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5831,13 +5959,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Le service de réduction d’URL est trop long (50 caractères maximum)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Contenu de l’avis invalide." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Contenu de l’avis invalide." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5918,7 +6050,7 @@ msgstr "Sauvegarder les paramètres utilisateur" msgid "Authorize subscription" msgstr "Autoriser l’abonnement" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5931,6 +6063,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5943,6 +6076,7 @@ msgstr "S’abonner à cet utilisateur" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5961,9 +6095,11 @@ msgstr "Pas de requête d’autorisation !" msgid "Subscription authorized" msgstr "Abonnement autorisé" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "L’abonnement a été autorisé, mais aucune URL de rappel n’a pas été passée. " @@ -5974,9 +6110,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonnement refusé" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "L’abonnement a été refusé, mais aucune URL de rappel n’a pas été passée. " @@ -6008,16 +6146,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "L’URL du profil ‘%s’ est pour un utilisateur local." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"La licence du flux auquel vous êtes abonné(e), « %1$s », n’est pas compatible " -"avec la licence du site « %2$s »." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6252,18 +6380,6 @@ msgstr[1] "Un fichier aussi gros dépasserait votre quota mensuel de %d octets." msgid "Invalid filename." msgstr "Nom de fichier non valide." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "L’inscription au groupe a échoué." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "N’appartient pas au groupe." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "La désinscription du groupe a échoué." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6276,6 +6392,18 @@ msgstr "L’identifiant de profil « %s » est invalide." msgid "Group ID %s is invalid." msgstr "L’identifiant de groupe %s est invalide." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "L’inscription au groupe a échoué." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "N’appartient pas au groupe." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "La désinscription du groupe a échoué." + #. TRANS: Activity title. msgid "Join" msgstr "Rejoindre" @@ -6350,6 +6478,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Il vous est interdit de poster des avis sur ce site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Vous ne pouvez pas reprendre votre propre avis." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Vous ne pouvez pas reprendre votre propre avis." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Vous ne pouvez pas reprendre votre propre avis." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Vous ne pouvez pas reprendre votre propre avis." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Vous avez déjà repris cet avis." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Aucun avis récent pour cet utilisateur." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6375,16 +6533,13 @@ msgstr "Impossible d’enregistrer la réponse à %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6437,7 +6592,9 @@ msgstr "Impossible de supprimer le jeton OMB de l'abonnement." msgid "Could not delete subscription." msgstr "Impossible de supprimer l’abonnement" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Suivre" @@ -6505,18 +6662,24 @@ msgid "User deletion in progress..." msgstr "Suppression de l'utilisateur en cours..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Modifier les paramètres du profil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Modifier" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Envoyer un message à cet utilisateur" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Message" @@ -6538,10 +6701,6 @@ msgctxt "role" msgid "Moderator" msgstr "Modérateur" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "S’abonner" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6800,6 +6959,10 @@ msgstr "Notice du site" msgid "Snapshots configuration" msgstr "Configuration des instantanés" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Instantanés" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Définir la licence du site" @@ -6954,6 +7117,10 @@ msgstr "" msgid "Cancel" msgstr "Annuler" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Enregistrer" + msgid " by " msgstr " par " @@ -7019,6 +7186,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Tous les abonnements" + #. TRANS: Title for command results. msgid "Command results" msgstr "Résultats de la commande" @@ -7172,10 +7345,6 @@ msgstr "Une erreur est survenue pendant l’envoi de votre message." msgid "Notice from %s repeated." msgstr "Avis de %s repris." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Erreur lors de la reprise de l’avis." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7934,6 +8103,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s suit maintenant vos avis sur %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s suit maintenant vos avis sur %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8444,7 +8627,9 @@ msgstr "Répondre" msgid "Delete this notice" msgstr "Supprimer cet avis" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Avis repris" msgid "Update your status..." @@ -8724,28 +8909,77 @@ msgstr "Silence" msgid "Silence this user" msgstr "Réduire cet utilisateur au silence" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonnements" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Abonnements de %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonnés" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Abonnés de %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Groupes" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Groupes de %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Inviter" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Inviter des amis et collègues à vous rejoindre dans %s" msgid "Subscribe to this user" msgstr "S’abonner à cet utilisateur" +msgid "Subscribe" +msgstr "S’abonner" + msgid "People Tagcloud as self-tagged" msgstr "Nuage de marques pour une personne (ajoutées par eux-même)" @@ -8866,6 +9100,28 @@ msgstr[1] "Vous avez déjà repris cet avis." msgid "Top posters" msgstr "Utilisateurs les plus actifs" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "À" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Langue « %s » inconnue." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8983,7 +9239,28 @@ msgstr "XML invalide, racine XRD manquante." msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Vous avez déjà repris cet avis." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Décrivez-vous avec vos intérêts en %d caractère" +#~ msgstr[1] "Décrivez-vous avec vos intérêts en %d caractères" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Décrivez vous et vos interêts" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, page %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." #~ msgstr "" -#~ "Message trop long ! La taille maximale est de %1$d caractères ; vous en " -#~ "avez entré %2$d." +#~ "La licence du flux auquel vous êtes abonné(e), « %1$s », n’est pas " +#~ "compatible avec la licence du site « %2$s »." + +#~ msgid "Error repeating notice." +#~ msgstr "Erreur lors de la reprise de l’avis." diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 528abccb68..136ad535db 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:16+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" @@ -74,7 +74,9 @@ msgstr "" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -86,6 +88,7 @@ msgstr "Salve" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "La pagjine no esist." @@ -813,16 +816,6 @@ msgstr "" msgid "No such notice." msgstr "L'avîs nol esist." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -963,6 +956,8 @@ msgstr "Avîs etichetâts cun %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Inzornaments etichetâts cun %1$s su %2$s!" @@ -1077,11 +1072,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Il profîl nol esist." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1089,10 +1086,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Une liste dai utents in chest grup." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1117,6 +1116,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Une liste dai utents in chest grup." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "No si à podût zontâ l'utent %1$s al grup %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Stât di %1$s su %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Sotscrizion autorizade" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Sotscrizion refudade" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1153,8 +1180,8 @@ msgstr "" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "Apartignincis ai grups di %s" #. TRANS: Subtitle for group membership feed. @@ -1167,8 +1194,7 @@ msgstr "Grups dal utent %1$s su %2$s" msgid "Cannot add someone else's membership." msgstr "No si pues zontâ une apartignince a cualchidun altri." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "" @@ -1471,6 +1497,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s al à lassât il grup %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "No tu sês jentrât." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "No tu sês sotscrit" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "" @@ -1669,24 +1738,6 @@ msgstr "" msgid "Delete this group." msgstr "Elimine chest grup." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "No tu sês jentrât." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2347,14 +2398,6 @@ msgstr "" msgid "No profile specified." msgstr "" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2923,6 +2966,7 @@ msgid "License selection" msgstr "Sielte de licence" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privât" @@ -3652,6 +3696,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Mai" @@ -3805,17 +3850,22 @@ msgstr "URL de tô pagjine web, blog o profîl suntun altri sît." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "" -msgstr[1] "" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "Descrîf te e i tiei interès" +msgstr[1] "Descrîf te e i tiei interès" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Descrîf te e i tiei interès" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3828,14 +3878,16 @@ msgid "Location" msgstr "Lûc" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Condivît il lûc dulà che mi cjati cuant che o publichi avîs" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etichetis" @@ -3866,6 +3918,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Sotscrizions" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3896,7 +3969,7 @@ msgstr "" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "" #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3904,6 +3977,7 @@ msgid "Could not save location prefs." msgstr "" #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "" @@ -4233,25 +4307,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descrîf te e i tiei interès" -msgstr[1] "Descrîf te e i tiei interès" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descrîf te e i tiei interès" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4363,6 +4419,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4394,15 +4451,8 @@ msgstr "" msgid "No notice specified." msgstr "" -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "" - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Ripetût" @@ -4555,6 +4605,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" @@ -4822,27 +4873,32 @@ msgstr "Messaç par %1$s su %2$s" msgid "Message from %1$s on %2$s" msgstr "Messaç di %1$s su %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Nol è un sorenon valit." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "L'avîs al è stât eliminât." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s cun etichete %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s cun etichete %2$s, pagjine %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pagjine %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Avîs etichetâts cun %1$s, pagjine %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4927,6 +4983,7 @@ msgid "Repeat of %s" msgstr "Ripetizion di %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "" @@ -5208,52 +5265,68 @@ msgstr "" msgid "No code entered." msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Salve" - -msgid "Save snapshot settings" -msgstr "" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." +msgstr "Salve lis impuestazions dal sît" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5264,6 +5337,27 @@ msgstr "No tu sês sotscrit a chest profîl." msgid "Could not save subscription." msgstr "" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Apartignincis ai grups di %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membris dal grup %1$s, pagjine %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Une liste dai utents in chest grup." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5378,43 +5472,64 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Avîs etichetâts cun %1$s, pagjine %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Canâl dai avîs pe etichete %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Canâl dai avîs pe etichete %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Canâl dai avîs pe etichete %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etichete %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profîl dal utent" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etichete utent" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etichetis" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "" @@ -5422,23 +5537,29 @@ msgstr "" msgid "You haven't blocked that user." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "" -msgid "No profile ID in request." -msgstr "" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "No tu sês sotscrit" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Impuestazions IM" @@ -5453,9 +5574,11 @@ msgstr "" msgid " (free service)" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5467,15 +5590,19 @@ msgstr "Scurte lis URL cun" msgid "Automatic shortening service to use." msgstr "Servizi di scurte automatic di doprâ." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5484,12 +5611,15 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +msgid "Invalid number for maximum URL length." msgstr "" -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +msgid "Invalid number for maximum notice length." msgstr "" +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5567,7 +5697,7 @@ msgstr "Salve lis impuestazions dal utent" msgid "Authorize subscription" msgstr "Autorize la sotscrizion" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5576,6 +5706,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Acete" @@ -5586,6 +5717,7 @@ msgstr "Sotscrivimi a chest utent." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Refude" @@ -5602,9 +5734,10 @@ msgstr "" msgid "Subscription authorized" msgstr "Sotscrizion autorizade" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5612,9 +5745,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Sotscrizion refudade" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5642,14 +5776,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -5863,18 +5989,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "" -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -5887,6 +6001,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "" +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "" + #. TRANS: Activity title. msgid "Join" msgstr "Iscrizion" @@ -5957,6 +6083,33 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "No si pues eliminâ chest avîs." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +msgid "Cannot repeat a notice you cannot read." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -5982,16 +6135,13 @@ msgstr "" msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6040,7 +6190,9 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Seguìs" @@ -6108,18 +6260,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Cambie lis impuestazions dal profîl" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Cambie" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Mande un messaç diret a chest utent" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Messaç" @@ -6141,10 +6299,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderatôr" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Sotscrivimi" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6400,6 +6554,10 @@ msgstr "" msgid "Snapshots configuration" msgstr "" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6545,6 +6703,10 @@ msgstr "" msgid "Cancel" msgstr "Scancele" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Salve" + msgid " by " msgstr " di " @@ -6608,6 +6770,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Dutis lis sotscrizions" + #. TRANS: Title for command results. msgid "Command results" msgstr "" @@ -6758,10 +6926,6 @@ msgstr "" msgid "Notice from %s repeated." msgstr "L'avîs di %s al è stât ripetût." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7489,6 +7653,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "Chestis a son lis personis a che a scoltin i tiei avîs." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7899,7 +8077,9 @@ msgstr "Rispuint" msgid "Delete this notice" msgstr "Elimine chest avîs" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Avîs ripetût" msgid "Update your status..." @@ -8188,28 +8368,77 @@ msgstr "" msgid "Silence this user" msgstr "" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profîl" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Sotscrizions" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." +msgstr "Sotscrizions di %1$s su %2$s" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Sotscritôrs" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "Tu sês za sotscrit a %s." + +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "People %s subscribes to" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "People subscribed to %s" +msgid "Approve pending subscription requests." msgstr "" -#, php-format -msgid "Groups %s is a member of" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grups" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s al fâs part di chescj grups" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Invide" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Invide amîs e compagns di lavôr a partecipâ a %s" msgid "Subscribe to this user" msgstr "Sotscrivimi a chest utent" +msgid "Subscribe" +msgstr "Sotscrivimi" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8320,6 +8549,28 @@ msgstr[1] "No si pues eliminâ chest avîs." msgid "Top posters" msgstr "Cui che al publiche di plui" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "A" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, php-format +msgid "Unknown to value: \"%s\"." +msgstr "" + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8435,8 +8686,11 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Il messaç al è masse lunc. Il massim al è %1$d caratar, tu tu'nd âs " -#~ "mandâts %2$d." +#~ msgid "Describe yourself and your interests" +#~ msgstr "Descrîf te e i tiei interès" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, pagjine %2$d" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 8d75e3649d..65d07de99e 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:18+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,7 +77,9 @@ msgstr "Gardar a configuración de acceso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +91,7 @@ msgstr "Gardar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Esa páxina non existe." @@ -839,16 +842,6 @@ msgstr "Non pode borrar o estado doutro usuario." msgid "No such notice." msgstr "Non existe tal nota." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Non pode repetir a súa propia nota." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Xa repetiu esa nota." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -994,6 +987,8 @@ msgstr "Notas etiquetadas con %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións etiquetadas con %1$s en %2$s!" @@ -1110,11 +1105,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Falta o perfil de usuario." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1122,10 +1119,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Unha lista dos usuarios pertencentes a este grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1150,6 +1149,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Unha lista dos usuarios pertencentes a este grupo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Estado de %1$s en %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Autorizouse a subscrición" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorización cancelada." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1191,7 +1218,7 @@ msgstr "Engadir aos favoritos" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Membros do grupo %s" #. TRANS: Subtitle for group membership feed. @@ -1205,8 +1232,7 @@ msgstr "Grupos aos que pertence %s" msgid "Cannot add someone else's membership." msgstr "Non se puido inserir unha subscrición nova." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Buscar nos contidos das notas" @@ -1526,6 +1552,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Non iniciou sesión." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Á solicitude fáltalle o ID do perfil." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ningún perfil ten esa ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Cancelouse a subscrición" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Sen código de confirmación." @@ -1742,24 +1811,6 @@ msgstr "Non borrar esta nota" msgid "Delete this group." msgstr "Borrar o usuario" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Non iniciou sesión." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2457,14 +2508,6 @@ msgstr "O usuario xa ten este rol." msgid "No profile specified." msgstr "Non se especificou ningún perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ningún perfil ten esa ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3097,6 +3140,7 @@ msgid "License selection" msgstr "Selección da licenza" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privado" @@ -3854,6 +3898,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunca" @@ -4016,17 +4061,22 @@ msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Descríbase a vostede e mailos seus intereses en %d caracteres" msgstr[1] "Descríbase a vostede e mailos seus intereses en %d caracteres" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Descríbase a vostede e mailos seus intereses" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4039,7 +4089,9 @@ msgid "Location" msgstr "Lugar" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" #. TRANS: Checkbox label in form for profile settings. @@ -4047,6 +4099,7 @@ msgid "Share my current location when posting notices" msgstr "Compartir o lugar onde vivo ao publicar notas" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etiquetas" @@ -4084,6 +4137,27 @@ msgstr "" "Subscribirse automaticamente a quen se subscriba a min (o mellor para os " "bots)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subscricións" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4116,7 +4190,7 @@ msgstr "Etiqueta incorrecta: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Non se puido actualizar o usuario para subscribirse automaticamente." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4125,6 +4199,7 @@ msgid "Could not save location prefs." msgstr "Non se puideron gardar as preferencias de lugar." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Non se puideron gardar as etiquetas." @@ -4484,26 +4559,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nome longo, preferiblemente o seu nome \"real\"" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descríbase a vostede e mailos seus intereses en %d caracteres" -msgstr[1] "Descríbase a vostede e mailos seus intereses en %d caracteres" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descríbase a vostede e mailos seus intereses" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4627,6 +4683,7 @@ msgstr "" "URL do seu perfil noutro servizo de mensaxes de blogue curtas compatible" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4663,16 +4720,8 @@ msgstr "Só os usuarios identificados poden repetir notas." msgid "No notice specified." msgstr "Non se especificou nota ningunha." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Non pode repetir a súa propia nota." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Xa repetiu esa nota." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetida" @@ -4838,6 +4887,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Non pode illar usuarios neste sitio." @@ -5120,6 +5170,11 @@ msgstr "Mensaxe a %1$s en %2$s" msgid "Message from %1$s on %2$s" msgstr "Mensaxe de %1$s en %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "A mensaxería instantánea non está dispoñible." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Borrouse a nota." @@ -5127,20 +5182,20 @@ msgstr "Borrouse a nota." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, páxina %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Notas etiquetadas con %1$s, páxina %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, páxina %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Notas etiquetadas con %1$s, páxina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5228,6 +5283,7 @@ msgid "Repeat of %s" msgstr "Repeticións de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Non pode silenciar usuarios neste sitio." @@ -5533,51 +5589,72 @@ msgstr "" msgid "No code entered." msgstr "Non se introduciu ningún código" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantáneas" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Xestione a configuración das instantáneas" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valor de execución da instantánea incorrecto." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "A frecuencia das instantáneas debe ser un número." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL de envío das instantáneas incorrecto." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantáneas" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Ao chou durante o acceso á rede" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Nun proceso programado" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantáneas de datos" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Cando enviar información estatística aos servidores status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frecuencia" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "As instantáneas enviaranse unha vez cada N accesos á rede" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL de envío" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "As instantáneas enviaranse a este URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Gardar" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Gardar a configuración das instantáneas" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5589,6 +5666,27 @@ msgstr "Non está subscrito a ese perfil." msgid "Could not save subscription." msgstr "Non se puido gardar a subscrición." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Membros do grupo %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membros do grupo %1$s, páxina %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Unha lista dos usuarios pertencentes a este grupo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Non se pode subscribir a un perfil remoto OMB 0.1 con esta acción." @@ -5710,31 +5808,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notas etiquetadas con %1$s, páxina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de novas das notas para a etiqueta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de novas das notas para a etiqueta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de novas das notas para a etiqueta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Sen argumento ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etiqueta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil do usuario" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiquetar ao usuario" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5743,17 +5853,26 @@ msgstr "" "Etiquetas para este usuario (letras, números, -, ., e _), separadas por " "comas ou espazos en branco" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Só pode etiquetar a xente á que estea subscrito ou que estean subscritos a " "vostede." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Utilice este formulario para engadir etiquetas aos seus subscritores ou " "subscricións." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Esa etiqueta non existe." @@ -5761,25 +5880,31 @@ msgstr "Esa etiqueta non existe." msgid "You haven't blocked that user." msgstr "Non bloqueou a ese usuario." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "O usuario non está illado." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "O usuario non está silenciado." -msgid "No profile ID in request." -msgstr "Á solicitude fáltalle o ID do perfil." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Cancelouse a subscrición" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "A licenza \"%1$s\" das transmisións da persoa seguida non é compatible coa " "licenza deste sitio: \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Configuración da mensaxería instantánea" @@ -5794,10 +5919,12 @@ msgstr "Configure outras tantas opcións." msgid " (free service)" msgstr " (servizo libre)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ningún" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5809,15 +5936,19 @@ msgstr "Abreviar os enderezos URL con" msgid "Automatic shortening service to use." msgstr "Servizo de abreviación automática a usar." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5829,13 +5960,17 @@ msgstr "" "O servizo de abreviación de enderezos URL é longo de máis (o límite está en " "50 caracteres)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "O contido da nota é incorrecto." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "O contido da nota é incorrecto." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5916,7 +6051,7 @@ msgstr "Gardar a configuración do usuario" msgid "Authorize subscription" msgstr "Autorizar a subscrición" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5929,6 +6064,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5941,6 +6077,7 @@ msgstr "Subscribirse a este usuario" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5959,9 +6096,11 @@ msgstr "Non se solicitou a autorización!" msgid "Subscription authorized" msgstr "Autorizouse a subscrición" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Autorizouse a subscrición, pero non se devolveu ningún URL. Bote unha ollada " @@ -5972,9 +6111,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Rexeitouse a subscrición" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Rexeitouse a subscrición, pero non se devolveu ningún URL. Bote unha ollada " @@ -6005,16 +6146,6 @@ msgstr "O URI do seguidor, \"%s\", é dun usuario local." msgid "Profile URL \"%s\" is for a local user." msgstr "O URL do perfil, \"%s\", pertence a un usuario local." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"A licenza \"%1$s\" das transmisións da persoa seguida non é compatible coa " -"licenza deste sitio: \"%2$s\"." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6245,18 +6376,6 @@ msgstr[1] "Un ficheiro deste tamaño excedería a súa cota mensual de %d bytes. msgid "Invalid filename." msgstr "Nome de ficheiro incorrecto." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Non se puido unir ao grupo." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Non forma parte do grupo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Non se puido deixar o grupo." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6269,6 +6388,18 @@ msgstr "A identificación do perfil, %s, é incorrecta." msgid "Group ID %s is invalid." msgstr "Houbo un erro ao gardar o usuario. Incorrecto." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Non se puido unir ao grupo." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Non forma parte do grupo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Non se puido deixar o grupo." + #. TRANS: Activity title. msgid "Join" msgstr "Unirse" @@ -6343,6 +6474,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Prohibíuselle publicar notas neste sitio de momento." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Non pode repetir a súa propia nota." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Non pode repetir a súa propia nota." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Non pode repetir a súa propia nota." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Non pode repetir a súa propia nota." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Xa repetiu esa nota." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "O usuario non ten ningunha última nota." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6369,16 +6530,13 @@ msgstr "Non se puido gardar a resposta a %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6429,7 +6587,9 @@ msgstr "Non se puido borrar o pase de subscrición OMB." msgid "Could not delete subscription." msgstr "Non se puido borrar a subscrición." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Seguir" @@ -6497,18 +6657,24 @@ msgid "User deletion in progress..." msgstr "Procedendo a borrar o usuario..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Modificar a configuración do perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Modificar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Enviarlle unha mensaxe directa a este usuario" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mensaxe" @@ -6530,10 +6696,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscribirse" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6732,9 +6894,8 @@ msgstr "saveSettings() non está integrado." msgid "Unable to delete design setting." msgstr "Non se puido borrar a configuración do deseño." -#, fuzzy msgid "Home" -msgstr "Páxina persoal" +msgstr "Inicio" msgid "Admin" msgstr "Administrador" @@ -6794,6 +6955,10 @@ msgstr "Nota do sitio" msgid "Snapshots configuration" msgstr "Configuración das instantáneas" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Instantáneas" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Definir a licenza do sitio" @@ -6950,6 +7115,10 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Gardar" + msgid " by " msgstr "" @@ -7017,6 +7186,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Todas as subscricións" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados da orde" @@ -7169,10 +7344,6 @@ msgstr "Houbo un erro ao enviar a mensaxe directa." msgid "Notice from %s repeated." msgstr "Repetiuse a nota de %s." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Houbo un erro ao repetir a nota." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7932,6 +8103,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "Agora %1$s segue as súas notas en %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "Agora %1$s segue as súas notas en %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8441,7 +8626,9 @@ msgstr "Responder" msgid "Delete this notice" msgstr "Borrar esta nota" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Repetiuse a nota" msgid "Update your status..." @@ -8727,28 +8914,77 @@ msgstr "Silenciar" msgid "Silence this user" msgstr "Silenciar a este usuario" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscricións" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Persoas ás que está subscrito %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscritores" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Persoas subscritas a %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupos aos que pertence %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Convidar" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Convide a amigos e compañeiros a unírselle en %s" msgid "Subscribe to this user" msgstr "Subscribirse a este usuario" +msgid "Subscribe" +msgstr "Subscribirse" + msgid "People Tagcloud as self-tagged" msgstr "Nube de etiquetas que as persoas se puxeron a si mesmas" @@ -8868,6 +9104,28 @@ msgstr[1] "Xa repetiu esa nota." msgid "Top posters" msgstr "Os que máis publican" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "A" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Non se coñece a lingua \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8986,7 +9244,30 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Xa repetiu esa nota." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Descríbase a vostede e mailos seus intereses en %d caracteres" +#~ msgstr[1] "Descríbase a vostede e mailos seus intereses en %d caracteres" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Descríbase a vostede e mailos seus intereses" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" #~ msgstr "" -#~ "A mensaxe é longa de máis, o límite de caracteres é de %1$d, e enviou %2" -#~ "$d." +#~ "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, páxina %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "A licenza \"%1$s\" das transmisións da persoa seguida non é compatible " +#~ "coa licenza deste sitio: \"%2$s\"." + +#~ msgid "Error repeating notice." +#~ msgstr "Houbo un erro ao repetir a nota." diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 40747efa04..249f9e92d0 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:19+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,7 +77,9 @@ msgstr "Přistupne nastajenja składować" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +91,7 @@ msgstr "Składować" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Strona njeeksistuje." @@ -825,16 +828,6 @@ msgstr "Njemóžeš status druheho wužiwarja zničić." msgid "No such notice." msgstr "Zdźělenka njeeksistuje." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Njemóžno twoju zdźělenku wospjetować." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Tuta zdźělenka bu hižo wospjetowana." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -977,6 +970,8 @@ msgstr "Zdźělenki woznamjenjene z %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacije z %1$s na %2$s markěrowane!" @@ -1091,11 +1086,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Falowacy profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1103,10 +1100,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Lisćina wužiwarjow w tutej skupinje." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1131,6 +1130,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Lisćina wužiwarjow w tutej skupinje." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Status %1$s na %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abonement awtorizowany" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Awtorizacija přetorhnjena." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1166,8 +1193,8 @@ msgstr "Je hižo faworit." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s skupisnkich čłonstwow" #. TRANS: Subtitle for group membership feed. @@ -1180,8 +1207,7 @@ msgstr "Skupiny, w kotrychž %1$s je čłon na %2$s" msgid "Cannot add someone else's membership." msgstr "Čłonstwo druheho njeda so přidać." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Jenož aktiwity zastupjenja hodźa so wobdźěłać." @@ -1484,6 +1510,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s je skupinu %2$s wopušćił" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Njepřizjewjeny." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Žadyn profilowy ID w naprašowanju." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Žadyn profil z tym ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Wotskazany" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Žadyn wobkrućenski kod." @@ -1681,24 +1750,6 @@ msgstr "Tutu skupinu njezhašeć." msgid "Delete this group." msgstr "Tutu skupinu zhašeć." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Njepřizjewjeny." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2357,14 +2408,6 @@ msgstr "Wužiwar hižo ma tutu rólu." msgid "No profile specified." msgstr "Žadyn profil podaty." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Žadyn profil z tym ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2944,6 +2987,7 @@ msgid "License selection" msgstr "Wuběr licency" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Priwatny" @@ -3658,6 +3702,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Ženje" @@ -3809,19 +3854,24 @@ msgstr "URL twojeje startoweje strony, bloga abo profila na druhim sydle." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Wopisaj sebje a swoje zajimy z %d znamješkom" msgstr[1] "Wopisaj sebje a swoje zajimy z %d znamješkomaj" msgstr[2] "Wopisaj sebje a swoje zajimy z %d znamješkami" msgstr[3] "Wopisaj sebje a swoje zajimy z %d znamješkami" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Wopisaj sebje a swoje zajimy" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3834,14 +3884,16 @@ msgid "Location" msgstr "Městno" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "" @@ -3873,6 +3925,28 @@ msgid "" msgstr "" "Awtomatisce kóždeho abonować, kotryž mje abonuje (najlěpše za \"njeludźi\")." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonementy" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Móžeš jenož wosobam slědować." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3905,7 +3979,8 @@ msgstr "Njepłaćiwa taflička: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Wužiwar njeda so za awtomatiske abonowanje aktualizować." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3913,6 +3988,7 @@ msgid "Could not save location prefs." msgstr "Nastajenja městna njedachu so składować." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Taflički njedadźa so składować." @@ -4238,27 +4314,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Dlěše mjeno, wosebje twoje \"woprawdźite\" mjeno." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Wopisaj sebje a swoje zajimy z %d znamješkom" -msgstr[1] "Wopisaj sebje a swoje zajimy z %d znamješkomaj" -msgstr[2] "Wopisaj sebje a swoje zajimy z %d znamješkami" -msgstr[3] "Wopisaj sebje a swoje zajimy z %d znamješkami" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Wopisaj sebje a swoje zajimy" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4355,6 +4411,7 @@ msgstr "" "URL twojeho profila při druhej kompatibelnej mikroblogowanskej słužbje." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4386,15 +4443,8 @@ msgstr "Jeno6 přizjewjeni wužiwarjo móža zdźělenki wospjetować." msgid "No notice specified." msgstr "Žana zdźělenka podata." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Njemóžeš swójsku zdźělenku wospjetować." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Sy tutu zdźělenku hižo wospjetował." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Wospjetowany" @@ -4547,6 +4597,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Njemóžeš wužiwarjow na tutym sydle do pěskoweho kašćika słać." @@ -4807,27 +4858,32 @@ msgstr "Powěsć do %1$s na %2$s" msgid "Message from %1$s on %2$s" msgstr "Powěsć wot %1$s na %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM k dispoziciji njesteji." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Zdźělenka zničena." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s z %2$s woznamjenjeny" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s z %2$s markěrowany, strona %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, strona %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4903,6 +4959,7 @@ msgid "Repeat of %s" msgstr "Wospjetowanje wot %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Njemóžeš wužiwarjam na tutym sydle hubu zatykać." @@ -5187,51 +5244,71 @@ msgstr "" msgid "No code entered." msgstr "Žadyn kod zapodaty." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Njejapke fota" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Konfiguraciju wobrazowkoweho fota zrjadować" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Njepłaćiwa hódnota za wuwjedźenje njejapkeho fota." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Frekwenca njejapkich fotkow dyrbi ličba być." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Njepłaćiwy URL rozprawy njejapkeho fota." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Njejapke fota" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Njejapke fota datow" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frekwenca" -msgid "Snapshots will be sent once every N web hits" -msgstr "" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." +msgstr "Njejapke fotki budu so do tutoho URL słać." +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL rozprawy" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Njejapke fotki budu so do tutoho URL słać." -#. TRANS: Submit button title. -msgid "Save" -msgstr "Składować" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Nastajenja wobrazowkoweho fota składować" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5243,6 +5320,27 @@ msgstr "Njejsy tón profil abonował." msgid "Could not save subscription." msgstr "Abonement njeda so składować." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s skupisnkich čłonstwow" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s skupinskich čłonow, strona %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Lisćina wužiwarjow w tutej skupinje." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Njemóžeš zdaleny profil OMB 0.1 z tutej akciju abonować." @@ -5356,44 +5454,64 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Zdźělenski kanal za tafličku %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Zdźělenski kanal za tafličku %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Zdźělenski kanal za tafličku %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Žadyn argument ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Wužiwarski profil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +msgctxt "TITLE" +msgid "Tags" +msgstr "" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "wužij tutón formular, zo by swojim abonentam abo abonementam taflički přidał." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Taflička njeeksistuje." @@ -5401,23 +5519,29 @@ msgstr "Taflička njeeksistuje." msgid "You haven't blocked that user." msgstr "Njejsy toho wužiwarja zablokował." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Wužiwar njeje w pěskowym kašćiku." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Wužiwarjej huba zatykana njeje." -msgid "No profile ID in request." -msgstr "Žadyn profilowy ID w naprašowanju." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Wotskazany" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM-nastajenja" @@ -5432,10 +5556,12 @@ msgstr "Wšelake druhe opcije zrjadować." msgid " (free service)" msgstr " (swobodna słužba)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Žadyn" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5447,15 +5573,19 @@ msgstr "URL skrótšić z" msgid "Automatic shortening service to use." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5464,13 +5594,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Krótšenska słužba za URL je předołha (maks. 50 znamješkow)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Njepłaćiwy wobsah zdźělenki." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Njepłaćiwy wobsah zdźělenki." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5548,7 +5682,7 @@ msgstr "Wužiwarske nastajenja składować." msgid "Authorize subscription" msgstr "Abonement awtorizować" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5557,6 +5691,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Akceptować" @@ -5567,6 +5702,7 @@ msgstr "Tutoho wužiwarja abonować." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Wotpokazać" @@ -5583,9 +5719,10 @@ msgstr "Žane awtorizaciske naprašowanje!" msgid "Subscription authorized" msgstr "Abonement awtorizowany" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5593,9 +5730,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonement wotpokazany" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5623,14 +5761,6 @@ msgstr "URI posłucharki \"%s\" je lokalny wužiwar.." msgid "Profile URL \"%s\" is for a local user." msgstr "Profilowy URL \"%s\" je za lokalneho wužiwarja." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -5847,18 +5977,6 @@ msgstr[3] "" msgid "Invalid filename." msgstr "Njepłaćiwe datajowe mjeno." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Přizamknjenje k skupinje je so njeporadźiło." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Njeje dźěl skupiny." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Wopušćenje skupiny je so njeporadźiło." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -5871,6 +5989,18 @@ msgstr "Profilowy ID %s je njepłaćiwy." msgid "Group ID %s is invalid." msgstr "Skupinski ID %s je njepłaćiwy." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Přizamknjenje k skupinje je so njeporadźiło." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Njeje dźěl skupiny." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Wopušćenje skupiny je so njeporadźiło." + #. TRANS: Activity title. msgid "Join" msgstr "Zastupić" @@ -5941,6 +6071,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Słanje zdźělenkow na tutym sydle je ći zakazane." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Njemóžno twoju zdźělenku wospjetować." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Njemóžeš swójsku zdźělenku wospjetować." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Njemóžno twoju zdźělenku wospjetować." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Njemóžno twoju zdźělenku wospjetować." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Sy tutu zdźělenku hižo wospjetował." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Wužiwar nima poslednju powěsć." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -5966,16 +6125,13 @@ msgstr "Wotmołwa za %1$d, %2$d njeda so składować." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6024,7 +6180,9 @@ msgstr "Znamjo OMB-abonementa njeda so zhašeć." msgid "Could not delete subscription." msgstr "Abonoment njeda so zhašeć ." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Slědować" @@ -6092,18 +6250,24 @@ msgid "User deletion in progress..." msgstr "Wužiwar so haša..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Profilowe nastajenja wobdźěłać" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Wobdźěłać" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Tutomu wužiwarja direktnu powěsć pósłać" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Powěsć" @@ -6125,10 +6289,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abonować" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6375,6 +6535,10 @@ msgstr "Sydłowa zdźělenka" msgid "Snapshots configuration" msgstr "Konfiguracija wobrazowkowych fotow" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Njejapke fota" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Licencu sydła nastajić" @@ -6522,6 +6686,10 @@ msgstr "" msgid "Cancel" msgstr "Přetorhnyć" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Składować" + msgid " by " msgstr "wot " @@ -6585,6 +6753,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Wšě abonementy" + #. TRANS: Title for command results. msgid "Command results" msgstr "Přikazowe wuslědki" @@ -6739,10 +6913,6 @@ msgstr "Zmylk při słanju direktneje powěsće," msgid "Notice from %s repeated." msgstr "Powěsć wot %s wospjetowana." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Zmylk při wospjetowanju zdźělenki" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7504,6 +7674,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s slěduje twoje zdźělenki na %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s slěduje twoje zdźělenki na %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7925,7 +8109,9 @@ msgstr "Wotmołwić" msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Zdźělenka wospjetowana" msgid "Update your status..." @@ -8210,28 +8396,77 @@ msgstr "Hubu zatykać" msgid "Silence this user" msgstr "Tutomu wužiwarjej hubu zatykać" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonementy" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Ludźo, kotrychž %s abonuje" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonenća" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Ludźo, kotřiž su %s abonowali" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Skupiny" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Skupiny, w kotrychž %s je čłon" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Přeprosyć" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Přećelow a kolegow přeprosyć, so tebi na %s přidružić" msgid "Subscribe to this user" msgstr "Tutoho wužiwarja abonować" +msgid "Subscribe" +msgstr "Abonować" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8350,6 +8585,28 @@ msgstr[3] "Tuta zdźělenka bu hižo wospjetowana." msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Komu" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Njeznaty werb: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8475,7 +8732,24 @@ msgstr "Njepłaćiwy XML, korjeń XRD faluje." msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Powěsć je předołho - maksimalna wulkosć je %1$d znamješkow, ty sy %2$d " -#~ "pósłał." +#~ msgid "Already repeated that notice." +#~ msgstr "Tuta zdźělenka bu hižo wospjetowana." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Wopisaj sebje a swoje zajimy z %d znamješkom" +#~ msgstr[1] "Wopisaj sebje a swoje zajimy z %d znamješkomaj" +#~ msgstr[2] "Wopisaj sebje a swoje zajimy z %d znamješkami" +#~ msgstr[3] "Wopisaj sebje a swoje zajimy z %d znamješkami" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Wopisaj sebje a swoje zajimy" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, strona %2$d" + +#~ msgid "Error repeating notice." +#~ msgstr "Zmylk při wospjetowanju zdźělenki" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 7eeeaf6f36..6b14922cb2 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:20+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -79,7 +79,9 @@ msgstr "Hozzáférések beállításainak mentése" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +93,7 @@ msgstr "Mentés" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Nincs ilyen lap." @@ -834,16 +837,6 @@ msgstr "Nem törölheted más felhasználók állapotait." msgid "No such notice." msgstr "Nincs ilyen hír." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Nem ismételheted meg a saját híredet." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Már megismételted azt a hírt." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -987,6 +980,8 @@ msgstr "Hírek %s címkével" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -1103,11 +1098,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Nincs ilyen profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1115,10 +1112,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "A csoportban lévő felhasználók listája." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1143,6 +1142,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "A csoportban lévő felhasználók listája." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Nem sikerült %1$s felhasználót hozzáadni a %2$s csoporthoz." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s / %2$s kedvencei" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Feliratkozások" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Feliratkozások" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1184,7 +1211,7 @@ msgstr "Hozzáadás a kedvencekhez" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s csoport tagjai" #. TRANS: Subtitle for group membership feed. @@ -1198,8 +1225,7 @@ msgstr "" msgid "Cannot add someone else's membership." msgstr "Nem sikerült törölni a kedvencet." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Keressünk a hírek tartalmában" @@ -1518,6 +1544,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s csatlakozott a(z) %2$s csoporthoz" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Nem vagy bejelentkezve." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Nincs ilyen azonosítóval rendelkező profil." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Kövessük" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Nincs megerősítő kód." @@ -1732,24 +1801,6 @@ msgstr "Ne töröljük ezt a hírt" msgid "Delete this group." msgstr "Töröljük ezt a felhasználót" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Nem vagy bejelentkezve." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2437,14 +2488,6 @@ msgstr "A felhasználónak már van ilyen szerepe." msgid "No profile specified." msgstr "Nincs profil megadva." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Nincs ilyen azonosítóval rendelkező profil." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3031,6 +3074,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privát" @@ -3774,6 +3818,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Soha" @@ -3934,17 +3979,22 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" msgstr[1] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Jellemezd önmagad és az érdeklődési köröd" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3957,7 +4007,9 @@ msgid "Location" msgstr "Helyszín" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\"" #. TRANS: Checkbox label in form for profile settings. @@ -3965,6 +4017,7 @@ msgid "Share my current location when posting notices" msgstr "Tegyük közzé az aktuális tartózkodási helyem amikor híreket küldök" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Címkék" @@ -4002,6 +4055,27 @@ msgstr "" "Automatikusan iratkozzunk fel mindazok híreire, aki feliratkoznak a mieinkre " "(nem embereknek való)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Feliratkozások" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4034,7 +4108,7 @@ msgstr "Érvénytelen címke: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Nem sikerült a felhasználónak automatikus feliratkozást beállítani." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4043,6 +4117,7 @@ msgid "Could not save location prefs." msgstr "Nem sikerült a helyszín beállításait elmenteni." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "" @@ -4380,26 +4455,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Hosszabb név, célszerűen a \"valódi\" neved" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" -msgstr[1] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Jellemezd önmagad és az érdeklődési köröd" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4497,6 +4553,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4530,16 +4587,8 @@ msgstr "" msgid "No notice specified." msgstr "Nincs hír megjelölve." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Nem ismételheted meg a saját híredet." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "" @@ -4697,6 +4746,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" @@ -4963,6 +5013,11 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM nem elérhető." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "A hírt töröltük." @@ -4970,20 +5025,20 @@ msgstr "A hírt töröltük." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr " %s megcímkézve" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s és barátai, %2$d oldal" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%1$s kimenő postafiókja - %2$d. oldal" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5067,6 +5122,7 @@ msgid "Repeat of %s" msgstr "%s ismétlése" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Ezen a webhelyen nem hallgattathatod el a felhasználókat." @@ -5351,52 +5407,70 @@ msgstr "" msgid "No code entered." msgstr "Nincs kód megadva" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Pillanatképek" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Pillanatképek" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Adat pillanatképek" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Gyakoriság" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL jelentése" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Mentés" - -msgid "Save snapshot settings" -msgstr "" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." +msgstr "Mentsük el a webhely beállításait" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5407,6 +5481,27 @@ msgstr "" msgid "Could not save subscription." msgstr "" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s csoport tagjai" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s csoport, %2$d. oldal" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "A csoportban lévő felhasználók listája." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5518,31 +5613,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s címke RSS 1.0 hírcsatornája" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s címke RSS 2.0 hírcsatornája" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s címke Atom hírcsatornája" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Felhasználói profil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5551,13 +5658,22 @@ msgstr "" "Címkék magadhoz (betűk, számok, -, ., és _), vesszővel vagy szóközzel " "elválasztva" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Címkék" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Nincs ilyen címke." @@ -5565,23 +5681,29 @@ msgstr "Nincs ilyen címke." msgid "You haven't blocked that user." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "" -msgid "No profile ID in request." -msgstr "" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -msgstr "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "A hír licence ‘%1$s’ nem kompatibilis a webhely licencével ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM beállítások" @@ -5596,9 +5718,11 @@ msgstr "Számos egyéb beállítás kezelése." msgid " (free service)" msgstr " (ingyenes szolgáltatás)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5610,15 +5734,19 @@ msgstr "" msgid "Automatic shortening service to use." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5628,13 +5756,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "A nyelv túl hosszú (legfeljebb 50 karakter lehet)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Érvénytelen megjegyzéstartalom." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Érvénytelen megjegyzéstartalom." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5715,7 +5847,7 @@ msgstr "Mentsük el a webhely beállításait" msgid "Authorize subscription" msgstr "Feliratkozás engedélyezése" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5724,6 +5856,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5736,6 +5869,7 @@ msgstr "Ezen felhasználók híreire már feliratkoztál:" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5754,9 +5888,10 @@ msgstr "" msgid "Subscription authorized" msgstr "" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5764,9 +5899,10 @@ msgstr "" msgid "Subscription rejected" msgstr "" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5794,14 +5930,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "A hír licence ‘%1$s’ nem kompatibilis a webhely licencével ‘%2$s’." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6012,18 +6140,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "" -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6036,6 +6152,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Hiba a felhasználó mentésekor; érvénytelen." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "" + #. TRANS: Activity title. msgid "Join" msgstr "Csatlakozzunk" @@ -6106,6 +6234,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Nem ismételheted meg a saját híredet." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Nem ismételheted meg a saját híredet." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Nem ismételheted meg a saját híredet." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Nem ismételheted meg a saját híredet." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6131,16 +6289,13 @@ msgstr "Nem sikerült menteni a profilt." msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s - %2$s" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6189,9 +6344,11 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Engedjük" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6257,18 +6414,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" -msgstr "" +#, fuzzy +msgid "Edit profile settings." +msgstr "Profilbeállítások" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Szerkesztés" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" -msgstr "" +#, fuzzy +msgid "Send a direct message to this user." +msgstr "Közvetlen üzenetek neki: %s" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Üzenet" @@ -6290,10 +6453,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderátor" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Kövessük" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6542,6 +6701,10 @@ msgstr "A webhely híre" msgid "Snapshots configuration" msgstr "" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Pillanatképek" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6690,6 +6853,10 @@ msgstr "" msgid "Cancel" msgstr "Mégse" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Mentés" + msgid " by " msgstr "" @@ -6756,6 +6923,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Összes feliratkozás" + #. TRANS: Title for command results. msgid "Command results" msgstr "" @@ -6904,10 +7077,6 @@ msgstr "Hiba a közvetlen üzenet küldése közben." msgid "Notice from %s repeated." msgstr "" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Hiba a hír ismétlésekor." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7658,6 +7827,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8127,7 +8310,9 @@ msgstr "Válasz" msgid "Delete this notice" msgstr "Töröljük ezt a hírt" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "A hírt megismételtük" msgid "Update your status..." @@ -8410,28 +8595,79 @@ msgstr "" msgid "Silence this user" msgstr "" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Feliratkozások" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." +msgstr "Senkinek sem iratkoztál fel a híreire." + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Feliratkozók" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "Már feliratkoztál!" + +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "People %s subscribes to" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "People subscribed to %s" +msgid "Approve pending subscription requests." msgstr "" -#, php-format -msgid "Groups %s is a member of" -msgstr "" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Csoportok" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." +msgstr "A legtöbb tagból álló csoportok" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Meghívás" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "" +"Ezen űrlap segítségével meghívhatsz barátokat és kollégákat erre a " +"szolgáltatásra." msgid "Subscribe to this user" msgstr "" +msgid "Subscribe" +msgstr "Kövessük" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8543,6 +8779,28 @@ msgstr[1] "Már megismételted azt a hírt." msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Címzett" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Ismeretlen nyelv: \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8661,6 +8919,20 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" +#~ msgid "Already repeated that notice." +#~ msgstr "Már megismételted azt a hírt." + #, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Az túl hosszú. Egy hír legfeljebb %d karakterből állhat." +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" +#~ msgstr[1] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Jellemezd önmagad és az érdeklődési köröd" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\"" + +#~ msgid "Error repeating notice." +#~ msgstr "Hiba a hír ismétlésekor." diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index a8c68e1404..f786d1dd25 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -74,7 +74,9 @@ msgstr "Salveguardar configurationes de accesso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -86,6 +88,7 @@ msgstr "Salveguardar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Pagina non existe." @@ -836,16 +839,6 @@ msgstr "Tu non pote deler le stato de un altere usator." msgid "No such notice." msgstr "Nota non trovate." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Non pote repeter tu proprie nota." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Iste nota ha ja essite repetite." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -989,6 +982,8 @@ msgstr "Notas con etiquetta %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualisationes con etiquetta %1$s in %2$s!" @@ -1104,10 +1099,12 @@ msgstr "" "de adhesion." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." msgstr "Es necessari specificar un profilo." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, php-format @@ -1115,10 +1112,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "%s non es in le cauda de moderation pro iste gruppo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "Error interne: ni cancellation ni abortamento recipite." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "Error interne: e cancellation e abortamento recipite." @@ -1144,6 +1143,35 @@ msgstr "Requesta de adhesion approbate." msgid "Join request canceled." msgstr "Requesta de adhesion cancellate." +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s non es in le cauda de moderation pro iste gruppo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Non poteva cancellar le requesta de adhesion del usator %1$s al gruppo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Le requesta de %1$s pro %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Subscription autorisate" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorisation cancellate." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1179,8 +1207,8 @@ msgstr "Es ja favorite." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "Membratos del gruppo %s" #. TRANS: Subtitle for group membership feed. @@ -1193,8 +1221,7 @@ msgstr "Gruppos del quales %1$s es membro in %2$s" msgid "Cannot add someone else's membership." msgstr "Non es possibile adder le membrato de un altere persona." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Solmente le activitates de adhesion es possibile." @@ -1506,6 +1533,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s quitava le gruppo %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Tu non ha aperite un session." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Nulle ID de profilo in requesta." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Non existe un profilo con iste ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Subscription cancellate" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Nulle codice de confirmation." @@ -1711,24 +1781,6 @@ msgstr "Non deler iste gruppo." msgid "Delete this group." msgstr "Deler iste gruppo." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Tu non ha aperite un session." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2406,14 +2458,6 @@ msgstr "Le usator ha ja iste rolo." msgid "No profile specified." msgstr "Nulle profilo specificate." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Non existe un profilo con iste ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3020,6 +3064,7 @@ msgid "License selection" msgstr "Selection de licentia" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Private" @@ -3748,6 +3793,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunquam" @@ -3906,17 +3952,21 @@ msgstr "URL de tu pagina personal, blog o profilo in un altere sito." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "Describe te e tu interesses in %d character" -msgstr[1] "Describe te e tu interesses in %d characteres" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "Describe te e tu interesses in %d character." +msgstr[1] "Describe te e tu interesses in %d characteres." #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "Describe te e tu interesses" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "Describe te e tu interesses." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3929,14 +3979,16 @@ msgid "Location" msgstr "Loco" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Divulgar mi loco actual quando io publica notas" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etiquettas" @@ -3971,6 +4023,28 @@ msgstr "" "Subscriber me automaticamente a qui se subscribe a me (utile pro non-" "humanos)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subscriptiones" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Pote solmente sequer personas." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4001,7 +4075,8 @@ msgstr "Etiquetta invalide: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Non poteva actualisar le usator pro autosubscription." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4009,6 +4084,7 @@ msgid "Could not save location prefs." msgstr "Non poteva salveguardar le preferentias de loco." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Non poteva salveguardar etiquettas." @@ -4348,24 +4424,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Nomine plus longe, preferibilemente tu nomine \"real\"." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Describe te e tu interesses in %d character." -msgstr[1] "Describe te e tu interesses in %d characteres." - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "Describe te e tu interesses." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Crear conto" @@ -4483,6 +4542,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL de tu profilo in un altere servicio de microblogging compatibile." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriber" @@ -4515,15 +4575,8 @@ msgstr "Solmente usatores authenticate pote repeter notas." msgid "No notice specified." msgstr "Nulle nota specificate." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Tu non pote repeter tu proprie nota." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Tu ha ja repetite iste nota." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetite" @@ -4687,6 +4740,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito." @@ -4958,27 +5012,32 @@ msgstr "Message a %1$s in %2$s" msgid "Message from %1$s on %2$s" msgstr "Message de %1$s in %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Messageria instantanee non disponibile." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Nota delite." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s etiquettate con %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s etiquettate con %2$s, pagina %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pagina %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Notas etiquettate con %1$s, pagina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5067,6 +5126,7 @@ msgid "Repeat of %s" msgstr "Repetition de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Tu non pote silentiar usatores in iste sito." @@ -5353,51 +5413,72 @@ msgstr "" msgid "No code entered." msgstr "Nulle codice entrate." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantaneos" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gerer configuration de instantaneos" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valor de execution de instantaneo invalide." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Le frequentia de instantaneos debe esser un numero." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Le URL pro reportar instantaneos es invalide." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantaneos" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Aleatorimente durante un accesso web" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "In un processo planificate" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantaneos de datos" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quando inviar datos statistic al servitores de status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequentia" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Un instantaneo essera inviate a cata N accessos web" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL pro reporto" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Le instantaneos essera inviate a iste URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Salveguardar" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Salveguardar configuration de instantaneos" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5409,6 +5490,27 @@ msgstr "Tu non es subscribite a iste profilo." msgid "Could not save subscription." msgstr "Non poteva salveguardar le subscription." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Membros attendente approbation del gruppo %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membros attendente approbation del gruppo %1$s, pagina %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Un lista de usatores attendente approbation a adherer a iste gruppo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Tu non pote subscriber te a un profilo remote OMB 0.1 con iste action." @@ -5530,31 +5632,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notas etiquettate con %1$s, pagina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Syndication de notas pro le etiquetta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Syndication de notas pro le etiquetta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Syndication de notas pro le etiquetta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Nulle parametro de ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etiquetta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profilo del usator" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiquettar usator" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." @@ -5562,16 +5676,25 @@ msgstr "" "Etiquettas pro iste usator (litteras, numeros, -, . e _), separate per " "commas o spatios." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Tu pote solmente etiquettar personas a qui tu es subscribite o qui es " "subscribite a te." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquettas" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usa iste formulario pro adder etiquettas a tu subscriptores o subscriptiones." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Etiquetta non existe." @@ -5579,25 +5702,31 @@ msgstr "Etiquetta non existe." msgid "You haven't blocked that user." msgstr "Tu non ha blocate iste usator." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Le usator non es in le cassa de sablo." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Le usator non es silentiate." -msgid "No profile ID in request." -msgstr "Nulle ID de profilo in requesta." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Subscription cancellate" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -"Le licentia del fluxo que tu ascolta, ‘%1$s’, non es compatibile con le " -"licentia del sito ‘%2$s’." +"Le licentia del fluxo que tu ascolta, \"%1$s\", non es compatibile con le " +"licentia del sito \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "Configuration de URL" @@ -5611,9 +5740,11 @@ msgstr "Gestion de varie altere optiones." msgid " (free service)" msgstr " (servicio libere)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[nulle]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[interne]" @@ -5625,16 +5756,20 @@ msgstr "Accurtar URLs con" msgid "Automatic shortening service to use." msgstr "Le servicio de accurtamento automatic a usar." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL plus longe que" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" "Le URLs plus longe que isto essera abbreviate. 0 significa abbreviar sempre." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Texto plus longe que" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5646,12 +5781,17 @@ msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" "Le servicio de accurtamento de URL es troppo longe (maximo 50 characteres)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum URL length." msgstr "Numero invalide pro longitude maxime de URL." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." msgstr "Numero invalide pro longitude maxime de nota." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" "Error durante le salveguarda del preferentias de usator pro le abbreviation " @@ -5731,7 +5871,7 @@ msgstr "Salveguardar configurationes de usator." msgid "Authorize subscription" msgstr "Autorisar subscription" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5743,6 +5883,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Acceptar" @@ -5753,6 +5894,7 @@ msgstr "Subscriber a iste usator." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Rejectar" @@ -5769,9 +5911,11 @@ msgstr "Nulle requesta de autorisation!" msgid "Subscription authorized" msgstr "Subscription autorisate" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Le subscription ha essite autorisate, ma nulle URL de retorno ha essite " @@ -5782,9 +5926,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Subscription rejectate" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Le subscription ha essite rejectate, ma nulle URL de retorno ha essite " @@ -5815,16 +5961,6 @@ msgstr "URI de ascoltato \"%s\" es un usator local." msgid "Profile URL \"%s\" is for a local user." msgstr "URL de profilo \"%s\" es de un usator local." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Le licentia del fluxo que tu ascolta, \"%1$s\", non es compatibile con le " -"licentia del sito \"%2$s\"." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -6048,18 +6184,6 @@ msgstr[1] "Un file de iste dimension excederea tu quota mensual de %d bytes." msgid "Invalid filename." msgstr "Nomine de file invalide." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Le inscription al gruppo ha fallite." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Non es membro del gruppo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Le cancellation del membrato del gruppo ha fallite." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6072,6 +6196,18 @@ msgstr "Le ID de profilo %s es invalide." msgid "Group ID %s is invalid." msgstr "Le ID de gruppo %s es invalide." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Le inscription al gruppo ha fallite." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Non es membro del gruppo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Le cancellation del membrato del gruppo ha fallite." + #. TRANS: Activity title. msgid "Join" msgstr "Inscriber" @@ -6146,6 +6282,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Il te es prohibite publicar notas in iste sito." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Non pote repeter tu proprie nota." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Tu non pote repeter tu proprie nota." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Non pote repeter tu proprie nota." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Non pote repeter tu proprie nota." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Tu ha ja repetite iste nota." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Le usator non ha un ultime nota." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6171,16 +6336,13 @@ msgstr "Non poteva salveguardar le responsa pro %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "Approbation de adhesion a gruppo invalide: non pendente." - #. 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). #, php-format @@ -6231,7 +6393,9 @@ msgstr "Non poteva deler le indicio OMB del subscription." msgid "Could not delete subscription." msgstr "Non poteva deler subscription." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Sequer" @@ -6299,18 +6463,24 @@ msgid "User deletion in progress..." msgstr "Deletion del usator in curso…" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Modificar configuration de profilo" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Modificar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Inviar un message directe a iste usator" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Message" @@ -6332,10 +6502,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscriber" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6589,6 +6755,10 @@ msgstr "Aviso del sito" msgid "Snapshots configuration" msgstr "Configuration del instantaneos" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Instantaneos" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Definir licentia del sito" @@ -6743,6 +6913,10 @@ msgstr "" msgid "Cancel" msgstr "Cancellar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Salveguardar" + msgid " by " msgstr " per " @@ -6804,7 +6978,13 @@ msgstr "Blocar iste usator" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Cancellar requesta de adhesion" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Cancellar requesta de adhesion" #. TRANS: Title for command results. msgid "Command results" @@ -6954,10 +7134,6 @@ msgstr "Error durante le invio del message directe." msgid "Notice from %s repeated." msgstr "Nota de %s repetite." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Error durante le repetition del nota." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7693,6 +7869,22 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s seque ora tu notas in %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s seque ora tu notas in %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" +"%1$s vole adherer a tu gruppo %2$s in %3$s. Tu pote approbar o rejectar su " +"adhesion al gruppo a %4$s" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8175,7 +8367,9 @@ msgstr "Responder" msgid "Delete this notice" msgstr "Deler iste nota" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Nota repetite" msgid "Update your status..." @@ -8452,28 +8646,77 @@ msgstr "Silentiar" msgid "Silence this user" msgstr "Silentiar iste usator" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profilo" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscriptiones" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Personas que %s seque" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscriptores" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Personas qui seque %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "Membro pendente" + +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppos" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Gruppos del quales %s es membro" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Invitar" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Invitar amicos e collegas a accompaniar te in %s" msgid "Subscribe to this user" msgstr "Subscriber a iste usator" +msgid "Subscribe" +msgstr "Subscriber" + msgid "People Tagcloud as self-tagged" msgstr "Etiquettario de personas como auto-etiquettate" @@ -8591,6 +8834,28 @@ msgstr[1] "%d personas ha repetite iste nota." msgid "Top posters" msgstr "Qui scribe le plus" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "A" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Verbo incognite: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8704,5 +8969,31 @@ msgstr "XML invalide, radice XRD mancante." msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Message troppo longe - maximo es %1$d characteres, tu inviava %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Iste nota ha ja essite repetite." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Describe te e tu interesses in %d character" +#~ msgstr[1] "Describe te e tu interesses in %d characteres" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Describe te e tu interesses" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, pagina %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "Le licentia del fluxo que tu ascolta, ‘%1$s’, non es compatibile con le " +#~ "licentia del sito ‘%2$s’." + +#~ msgid "Invalid group join approval: not pending." +#~ msgstr "Approbation de adhesion a gruppo invalide: non pendente." + +#~ msgid "Error repeating notice." +#~ msgstr "Error durante le repetition del nota." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 83ef46eeb6..9ad9dcf357 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:23+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -78,7 +78,9 @@ msgstr "Salva impostazioni di accesso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -90,6 +92,7 @@ msgstr "Salva" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Pagina inesistente." @@ -851,16 +854,6 @@ msgstr "Non puoi eliminare il messaggio di un altro utente." msgid "No such notice." msgstr "Nessun messaggio." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Non puoi ripetere un tuo messaggio." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Hai già ripetuto quel messaggio." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1005,6 +998,8 @@ msgstr "Messaggi etichettati con %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Messaggi etichettati con %1$s su %2$s!" @@ -1120,11 +1115,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Profilo mancante." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1132,10 +1129,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Un elenco degli utenti in questo gruppo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1160,6 +1159,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Un elenco degli utenti in questo gruppo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Stato di %1$s su %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abbonamento autorizzato" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Conferma della messaggistica annullata." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1201,7 +1228,7 @@ msgstr "Aggiungi ai preferiti" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "Membri del gruppo %s" #. TRANS: Subtitle for group membership feed. @@ -1215,8 +1242,7 @@ msgstr "Gruppi di cui %s fa parte" msgid "Cannot add someone else's membership." msgstr "Impossibile inserire un nuovo abbonamento." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Trova contenuto dei messaggi" @@ -1539,6 +1565,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ha lasciato il gruppo %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Accesso non effettuato." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Nessun ID di profilo nella richiesta." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Nessun profilo con quel ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Abbonamento annullato" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Nessun codice di conferma." @@ -1755,24 +1824,6 @@ msgstr "Non eliminare il messaggio" msgid "Delete this group." msgstr "Elimina questo utente" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Accesso non effettuato." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2469,14 +2520,6 @@ msgstr "L'utente ricopre già questo ruolo." msgid "No profile specified." msgstr "Nessun profilo specificato." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Nessun profilo con quel ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3111,6 +3154,7 @@ msgid "License selection" msgstr "Selezione licenza" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privato" @@ -3869,6 +3913,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Mai" @@ -4031,17 +4076,22 @@ msgstr "URL della tua pagina web, blog o profilo su un altro sito" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Descriviti assieme ai tuoi interessi in %d caratteri" msgstr[1] "Descriviti assieme ai tuoi interessi in %d caratteri" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Descrivi te e i tuoi interessi" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4054,7 +4104,9 @@ msgid "Location" msgstr "Ubicazione" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Dove ti trovi, tipo \"città, regione, stato\"" #. TRANS: Checkbox label in form for profile settings. @@ -4062,6 +4114,7 @@ msgid "Share my current location when posting notices" msgstr "Condividi la mia posizione attuale quando invio messaggi" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etichette" @@ -4098,6 +4151,27 @@ msgstr "" "Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-" "umani)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abbonamenti" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4130,7 +4204,7 @@ msgstr "Etichetta non valida: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Impossibile aggiornare l'utente per auto-abbonarsi." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4139,6 +4213,7 @@ msgid "Could not save location prefs." msgstr "Impossibile salvare le preferenze della posizione." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Impossibile salvare le etichette." @@ -4489,26 +4564,7 @@ msgstr "Usata solo per aggiornamenti, annunci e recupero password" msgid "Longer name, preferably your \"real\" name." msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descriviti assieme ai tuoi interessi in %d caratteri" -msgstr[1] "Descriviti assieme ai tuoi interessi in %d caratteri" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descrivi te e i tuoi interessi" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Dove ti trovi, tipo \"città, regione, stato\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4631,6 +4687,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4667,16 +4724,8 @@ msgstr "Solo gli utenti collegati possono ripetere i messaggi." msgid "No notice specified." msgstr "Nessun messaggio specificato." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Non puoi ripetere i tuoi stessi messaggi." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Hai già ripetuto quel messaggio." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Ripetuti" @@ -4840,6 +4889,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." @@ -5119,6 +5169,11 @@ msgstr "Messaggio a %1$s su %2$s" msgid "Message from %1$s on %2$s" msgstr "Messaggio da %1$s su %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Messaggistica istantanea non disponibile." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Messaggio eliminato." @@ -5126,20 +5181,20 @@ msgstr "Messaggio eliminato." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, pagina %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Messaggi etichettati con %1$s, pagina %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pagina %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Messaggi etichettati con %1$s, pagina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5227,6 +5282,7 @@ msgid "Repeat of %s" msgstr "Ripetizione di %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Non puoi zittire gli utenti su questo sito." @@ -5527,51 +5583,72 @@ msgstr "" msgid "No code entered." msgstr "Nessun codice inserito" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Snapshot" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gestisci configurazione snapshot" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valore di esecuzione dello snapshot non valido." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "La frequenza degli snapshot deve essere un numero." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL di segnalazione snapshot non valido." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Snapshot" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "A caso quando avviene un web hit" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "In un job pianificato" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Snapshot dei dati" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quando inviare dati statistici a status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequenza" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Gli snapshot verranno inviati ogni N web hit" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL per la segnalazione" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Gli snapshot verranno inviati a questo URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Salva" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Salva impostazioni snapshot" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5583,6 +5660,27 @@ msgstr "Non hai una abbonamento a quel profilo." msgid "Could not save subscription." msgstr "Impossibile salvare l'abbonamento." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Membri del gruppo %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membri del gruppo %1$s, pagina %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Un elenco degli utenti in questo gruppo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5705,31 +5803,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Messaggi etichettati con %1$s, pagina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed dei messaggi per l'etichetta %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed dei messaggi per l'etichetta %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed dei messaggi per l'etichetta %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Nessun argomento ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etichetta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profilo utente" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etichette utente" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5738,17 +5848,26 @@ msgstr "" "Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole " "o spazi" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Puoi etichettare sole le persone di cui hai un abbonamento o che sono " "abbonate a te." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etichette" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi " "abbonamenti." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Nessuna etichetta." @@ -5756,25 +5875,31 @@ msgstr "Nessuna etichetta." msgid "You haven't blocked that user." msgstr "Non hai bloccato quell'utente." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "L'utente non è nella \"sandbox\"." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "L'utente non è zittito." -msgid "No profile ID in request." -msgstr "Nessun ID di profilo nella richiesta." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Abbonamento annullato" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "La licenza \"%1$s\" dello stream di chi ascolti non è compatibile con la " "licenza \"%2$s\" di questo sito." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Impostazioni messaggistica istantanea" @@ -5789,10 +5914,12 @@ msgstr "Gestisci altre opzioni." msgid " (free service)" msgstr " (servizio libero)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Nessuno" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5804,15 +5931,19 @@ msgstr "Accorcia gli URL con" msgid "Automatic shortening service to use." msgstr "Servizio di autoriduzione da usare" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5822,13 +5953,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Contenuto del messaggio non valido." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Contenuto del messaggio non valido." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5910,7 +6045,7 @@ msgstr "Salva impostazioni utente" msgid "Authorize subscription" msgstr "Autorizza abbonamento" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5922,6 +6057,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5934,6 +6070,7 @@ msgstr "Abbonati a questo utente" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5952,9 +6089,11 @@ msgstr "Nessuna richiesta di autorizzazione!" msgid "Subscription authorized" msgstr "Abbonamento autorizzato" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " @@ -5965,9 +6104,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Abbonamento rifiutato" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " @@ -5998,16 +6139,6 @@ msgstr "L'URI \"%s\" di colui che si ascolta è un utente locale." msgid "Profile URL \"%s\" is for a local user." msgstr "L'URL \"%s\" del profilo è per un utente locale." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"La licenza \"%1$s\" dello stream di chi ascolti non è compatibile con la " -"licenza \"%2$s\" di questo sito." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6240,18 +6371,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Nome file non valido." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Ingresso nel gruppo non riuscito." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Non si fa parte del gruppo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Uscita dal gruppo non riuscita." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6264,6 +6383,18 @@ msgstr "L'ID di profilo %s non è valido." msgid "Group ID %s is invalid." msgstr "Errore nel salvare l'utente; non valido." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Ingresso nel gruppo non riuscito." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Non si fa parte del gruppo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Uscita dal gruppo non riuscita." + #. TRANS: Activity title. msgid "Join" msgstr "Iscriviti" @@ -6338,6 +6469,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Non puoi ripetere un tuo messaggio." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Non puoi ripetere i tuoi stessi messaggi." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Non puoi ripetere un tuo messaggio." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Non puoi ripetere un tuo messaggio." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Hai già ripetuto quel messaggio." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "L'utente non ha un ultimo messaggio." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6364,16 +6525,13 @@ msgstr "Impossibile salvare le informazioni del gruppo locale." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6425,7 +6583,9 @@ msgstr "Impossibile salvare l'abbonamento." msgid "Could not delete subscription." msgstr "Impossibile salvare l'abbonamento." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Segui" @@ -6493,18 +6653,24 @@ msgid "User deletion in progress..." msgstr "Eliminazione utente..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Modifica impostazioni del profilo" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Modifica" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Invia un messaggio diretto a questo utente" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Messaggio" @@ -6526,10 +6692,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderatore" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abbonati" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6788,6 +6950,10 @@ msgstr "Messaggio del sito" msgid "Snapshots configuration" msgstr "Configurazione snapshot" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Snapshot" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Imposta licenza" @@ -6940,6 +7106,10 @@ msgstr "" msgid "Cancel" msgstr "Annulla" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Salva" + msgid " by " msgstr "" @@ -7007,6 +7177,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Tutti gli abbonamenti" + #. TRANS: Title for command results. msgid "Command results" msgstr "Risultati comando" @@ -7157,10 +7333,6 @@ msgstr "Errore nell'inviare il messaggio diretto." msgid "Notice from %s repeated." msgstr "Messaggio da %s ripetuto." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Errore nel ripetere il messaggio." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7917,6 +8089,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8427,7 +8613,9 @@ msgstr "Rispondi" msgid "Delete this notice" msgstr "Elimina questo messaggio" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Messaggio ripetuto" msgid "Update your status..." @@ -8709,28 +8897,77 @@ msgstr "Zittisci" msgid "Silence this user" msgstr "Zittisci questo utente" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profilo" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abbonamenti" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Persone di cui %s ha un abbonamento" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abbonati" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Persone abbonate a %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppi" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Gruppi di cui %s fa parte" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Invita" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Invita amici e colleghi a seguirti su %s" msgid "Subscribe to this user" msgstr "Abbonati a questo utente" +msgid "Subscribe" +msgstr "Abbonati" + msgid "People Tagcloud as self-tagged" msgstr "Insieme delle etichette delle persone come auto-etichettate" @@ -8848,6 +9085,28 @@ msgstr[1] "Hai già ripetuto quel messaggio." msgid "Top posters" msgstr "Chi scrive più messaggi" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "A" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Lingua \"%s\" sconosciuta." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8966,5 +9225,29 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Hai già ripetuto quel messaggio." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Descriviti assieme ai tuoi interessi in %d caratteri" +#~ msgstr[1] "Descriviti assieme ai tuoi interessi in %d caratteri" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Descrivi te e i tuoi interessi" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Dove ti trovi, tipo \"città, regione, stato\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, pagina %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "La licenza \"%1$s\" dello stream di chi ascolti non è compatibile con la " +#~ "licenza \"%2$s\" di questo sito." + +#~ msgid "Error repeating notice." +#~ msgstr "Errore nel ripetere il messaggio." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 3ce2e7a297..b8a248edcd 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:24+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -80,7 +80,9 @@ msgstr "アクセス設定の保存" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -92,6 +94,7 @@ msgstr "保存" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "そのようなページはありません。" @@ -843,16 +846,6 @@ msgstr "他のユーザのステータスを消すことはできません。" msgid "No such notice." msgstr "そのようなつぶやきはありません。" -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "あなたのつぶやきを繰り返せません。" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "すでにつぶやきを繰り返しています。" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -993,6 +986,8 @@ msgstr "%s とタグ付けされたつぶやき" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s に %1$s による更新があります!" @@ -1110,11 +1105,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "ユーザはプロフィールをもっていません。" #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1122,10 +1119,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "このグループのユーザのリスト。" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1150,6 +1149,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "このグループのユーザのリスト。" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "ユーザ %1$s はグループ %2$s に参加できません。" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%2$s における %1$s のステータス" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "フォローが承認されました" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "確認コードがありません。" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1192,7 +1219,7 @@ msgstr "お気に入りに加える" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s グループメンバー" #. TRANS: Subtitle for group membership feed. @@ -1206,8 +1233,7 @@ msgstr "グループ %s はメンバー" msgid "Cannot add someone else's membership." msgstr "サブスクリプションを追加できません" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "つぶやきの内容を探す" @@ -1531,6 +1557,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s はグループ %2$s に残りました。" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "ログインしていません。" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "ログイントークンが要求されていません。" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "そのIDのプロファイルがありません。" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "フォロー解除済み" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "確認コードがありません。" @@ -1748,24 +1817,6 @@ msgstr "このつぶやきを削除できません。" msgid "Delete this group." msgstr "このユーザを削除" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "ログインしていません。" - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2471,14 +2522,6 @@ msgstr "ユーザは既に黙っています。" msgid "No profile specified." msgstr "プロファイル記述がありません。" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "そのIDのプロファイルがありません。" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3106,6 +3149,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "プライベート" @@ -3865,6 +3909,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "" @@ -4025,16 +4070,21 @@ msgstr "ホームページ、ブログ、プロファイル、その他サイト #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "%d字以内で自分自身と自分の興味について書いてください" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "自分自身と自分の興味について書いてください" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4047,7 +4097,9 @@ msgid "Location" msgstr "場所" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」" #. TRANS: Checkbox label in form for profile settings. @@ -4055,6 +4107,7 @@ msgid "Share my current location when posting notices" msgstr "つぶやきを投稿するときには私の現在の場所を共有してください" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "タグ" @@ -4090,6 +4143,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "自分をフォローしている者を自動的にフォローする (BOTに最適)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "フォロー" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4121,7 +4195,7 @@ msgstr "不正なタグ: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "自動フォローのためのユーザを更新できませんでした。" #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4130,6 +4204,7 @@ msgid "Could not save location prefs." msgstr "場所情報を保存できません。" #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "タグをを保存できません。" @@ -4481,25 +4556,7 @@ msgstr "更新、アナウンス、パスワードリカバリーでのみ使用 msgid "Longer name, preferably your \"real\" name." msgstr "長い名前" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "%d字以内で自分自身と自分の興味について書いてください" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "自分自身と自分の興味について書いてください" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4617,6 +4674,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4654,16 +4712,8 @@ msgstr "ログインユーザだけがつぶやきを繰り返せます。" msgid "No notice specified." msgstr "つぶやきがありません。" -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "自分のつぶやきは繰り返せません。" - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "すでにそのつぶやきを繰り返しています。" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "繰り返された" @@ -4830,6 +4880,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "あなたはこのサイトのサンドボックスユーザができません。" @@ -5110,6 +5161,11 @@ msgstr "%2$s 上の %1$s へのメッセージ" msgid "Message from %1$s on %2$s" msgstr "%2$s 上の %1$s からのメッセージ" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM が利用不可。" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "つぶやきを削除しました。" @@ -5117,20 +5173,20 @@ msgstr "つぶやきを削除しました。" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s、ページ %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s、ページ %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5218,6 +5274,7 @@ msgid "Repeat of %s" msgstr "%s の繰り返し" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "あなたはこのサイトでユーザを黙らせることができません。" @@ -5529,52 +5586,72 @@ msgstr "" msgid "No code entered." msgstr "コードが入力されていません" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "スナップショット" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "セッション設定" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "不正なスナップショットランバリュー" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "スナップショット頻度は数でなければなりません。" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "不正なスナップショットレポートURL。" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "スナップショット" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "予定されているジョブで" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "データスナップショット" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "いつ status.net サーバに統計データを送りますか" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "頻度" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "レポート URL" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "レポート URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "このURLにスナップショットを送るでしょう" -#. TRANS: Submit button title. -msgid "Save" -msgstr "保存" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "サイト設定の保存" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5586,6 +5663,27 @@ msgstr "あなたはそのプロファイルにフォローされていません msgid "Could not save subscription." msgstr "フォローを保存できません。" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s グループメンバー" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s グループメンバー、ページ %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "このグループのユーザのリスト。" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5709,31 +5807,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s とタグ付けされたつぶやきフィード (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s とタグ付けされたつぶやきフィード (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s とタグ付けされたつぶやきフィード (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "ID引数がありません。" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "タグ %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "ユーザプロファイル" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "タグユーザ" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5741,15 +5851,24 @@ msgid "" msgstr "" "このユーザのタグ (アルファベット、数字、-、.、_)、カンマかスペース区切り" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "あなたはフォローされる人々にタグ付けをすることができるだけか、あなたをフォ" "ローされているか。" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "タグ" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "このフォームを使用して、フォロー者かフォローにタグを加えてください。" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "そのようなタグはありません。" @@ -5757,25 +5876,31 @@ msgstr "そのようなタグはありません。" msgid "You haven't blocked that user." msgstr "あなたはそのユーザをブロックしていません。" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "ユーザはサンドボックスではありません。" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "ユーザはサイレンスではありません。" -msgid "No profile ID in request." -msgstr "ログイントークンが要求されていません。" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "フォロー解除済み" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性があ" "りません。" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM設定" @@ -5790,10 +5915,12 @@ msgstr "他のオプションを管理。" msgid " (free service)" msgstr "(フリーサービス)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "なし" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5805,15 +5932,19 @@ msgstr "URLを短くします" msgid "Automatic shortening service to use." msgstr "使用する自動短縮サービス。" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5823,13 +5954,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL 短縮サービスが長すぎます。(最大50字)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "不正なトークン。" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "不正なトークン。" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5911,7 +6046,7 @@ msgstr "サイト設定の保存" msgid "Authorize subscription" msgstr "フォローを承認" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5923,6 +6058,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5935,6 +6071,7 @@ msgstr "このユーザーをフォロー" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5953,9 +6090,11 @@ msgstr "認証のリクエストがありません。" msgid "Subscription authorized" msgstr "フォローが承認されました" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "フォローは承認されましたが、コールバックURLが通過できませんでした。どう" @@ -5966,9 +6105,11 @@ msgstr "" msgid "Subscription rejected" msgstr "フォローが拒否" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "フォローは拒絶されましたが、コールバックURLは全く通過されませんでした。 どう" @@ -5999,16 +6140,6 @@ msgstr "リスニー URI ‘%s’ はローカルユーザーではありませ msgid "Profile URL \"%s\" is for a local user." msgstr "プロファイル URL ‘%s’ はローカルユーザーではありません。" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性があ" -"りません。" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6227,18 +6358,6 @@ msgstr[0] "" msgid "Invalid filename." msgstr "不正なサイズ。" -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "グループ参加に失敗しました。" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "グループの一部ではありません。" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "グループ脱退に失敗しました。" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6251,6 +6370,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "ユーザ保存エラー; 不正なユーザ" +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "グループ参加に失敗しました。" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "グループの一部ではありません。" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "グループ脱退に失敗しました。" + #. TRANS: Activity title. msgid "Join" msgstr "参加" @@ -6325,6 +6456,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止されています。" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "あなたのつぶやきを繰り返せません。" + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "自分のつぶやきは繰り返せません。" + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "あなたのつぶやきを繰り返せません。" + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "あなたのつぶやきを繰り返せません。" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "すでにそのつぶやきを繰り返しています。" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "利用者はまだつぶやいていません" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6350,16 +6511,13 @@ msgstr "フォローを保存できません。" msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6409,9 +6567,11 @@ msgstr "フォローを保存できません。" msgid "Could not delete subscription." msgstr "フォローを保存できません。" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "許可" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6478,18 +6638,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "プロファイル設定編集" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "編集" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "この利用者にダイレクトメッセージを送る" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "メッセージ" @@ -6515,10 +6681,6 @@ msgctxt "role" msgid "Moderator" msgstr "管理" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "フォロー" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6776,6 +6938,10 @@ msgstr "サイトつぶやき" msgid "Snapshots configuration" msgstr "パス設定" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "スナップショット" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6928,6 +7094,10 @@ msgstr "" msgid "Cancel" msgstr "中止" +#. TRANS: Submit button title. +msgid "Save" +msgstr "保存" + msgid " by " msgstr "" @@ -6996,6 +7166,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "すべてのフォロー" + #. TRANS: Title for command results. msgid "Command results" msgstr "コマンド結果" @@ -7145,10 +7321,6 @@ msgstr "ダイレクトメッセージ送信エラー。" msgid "Notice from %s repeated." msgstr "%s からつぶやきが繰り返されています" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "つぶやき繰り返しエラー" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7898,6 +8070,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s は %2$s であなたのつぶやきを聞いています。" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s は %2$s であなたのつぶやきを聞いています。" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8381,7 +8567,9 @@ msgstr "返信" msgid "Delete this notice" msgstr "このつぶやきを削除" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "つぶやきを繰り返しました" msgid "Update your status..." @@ -8662,28 +8850,77 @@ msgstr "サイレンス" msgid "Silence this user" msgstr "このユーザをサイレンスに" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "プロファイル" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "フォロー" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "人々 %s はフォロー" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "フォローされている" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "人々は %s をフォローしました。" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "グループ" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "グループ %s はメンバー" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "招待" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "友人や同僚が %s で加わるよう誘ってください。" msgid "Subscribe to this user" msgstr "このユーザーをフォロー" +msgid "Subscribe" +msgstr "フォロー" + msgid "People Tagcloud as self-tagged" msgstr "自己タグづけとしての人々タグクラウド" @@ -8792,6 +9029,28 @@ msgstr[0] "すでにつぶやきを繰り返しています。" msgid "Top posters" msgstr "上位投稿者" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "To" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "不明な言語 \"%s\"" + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8906,5 +9165,28 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "メッセージが長すぎます - 最大 %1$d 字、あなたが送ったのは %2$d。" +#~ msgid "Already repeated that notice." +#~ msgstr "すでにつぶやきを繰り返しています。" + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "%d字以内で自分自身と自分の興味について書いてください" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "自分自身と自分の興味について書いてください" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s、ページ %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性が" +#~ "ありません。" + +#~ msgid "Error repeating notice." +#~ msgstr "つぶやき繰り返しエラー" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index bd469a794f..b51a52d41c 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:04:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:25+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -74,7 +74,9 @@ msgstr "შეინახე შესვლის პარამეტრე #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -86,6 +88,7 @@ msgstr "შეინახე" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "ასეთი გვერდი არ არსებობს." @@ -828,16 +831,6 @@ msgstr "სხვა მომხმარებლის სტატუსი msgid "No such notice." msgstr "ასეთი შეტყობინება არ არსებობს." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "ეს შეტყობინება უკვე გამეორებულია." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -978,6 +971,8 @@ msgstr "შეტყობინებები მონიშნული რ #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "განახლებები მონიშნული როგორც %1$s %2$s-ზე!" @@ -1094,11 +1089,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "პროფილი არ არსებობს." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1106,10 +1103,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "ამ ჯგუფის წევრების სია." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1134,6 +1133,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "ამ ჯგუფის წევრების სია." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "ვერ მოხერხდა მომხმარებელ %1$s-სთან ერთად ჯგუფ %2$s-ში გაერთიანება." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s–ის სტატუსი %2$s–ზე" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "გამოწერა ავტორიზირებულია" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "IM დასტური გაუქმდა." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1175,7 +1202,7 @@ msgstr "რჩეულებში დამატება" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s ჯგუფის წევრი" #. TRANS: Subtitle for group membership feed. @@ -1189,8 +1216,7 @@ msgstr "%1$s-ს ის ჯგუფები რომლებშიც გა msgid "Cannot add someone else's membership." msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "მოძებნე შეტყობინებებში" @@ -1509,6 +1535,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s-მა დატოვა ჯგუფი %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "ავტორიზებული არ ხართ." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "არცერთი პროფილის ID არ არის მოთხოვნილი." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "ასეთი ID-ს მქონე პროფილი ვერ მოიძებნა." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "გამოწერა გაუქმებულია" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "დასადასტურებელი კოდი არ არის." @@ -1725,24 +1794,6 @@ msgstr "არ წაშალო ეს შეტყობინება" msgid "Delete this group." msgstr "ამ მომხმარებლის წაშლა" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "ავტორიზებული არ ხართ." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2435,14 +2486,6 @@ msgstr "მომხმარებელს უკვე აქვს ეს msgid "No profile specified." msgstr "პროფილი მითითებული არ არის." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "ასეთი ID-ს მქონე პროფილი ვერ მოიძებნა." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3071,6 +3114,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "" @@ -3820,6 +3864,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "არასდროს" @@ -3981,16 +4026,21 @@ msgstr "თქვენი ვებ. გვერდის URL, ბლოგი #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "აღწერეთ საკუთარი თავი და თქვენი ინტერესები %d სიმბოლოთი" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "აღწერეთ საკუთარი თავი და თქვენი ინტერესები" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4003,7 +4053,9 @@ msgid "Location" msgstr "მდებარეობა" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?" #. TRANS: Checkbox label in form for profile settings. @@ -4011,6 +4063,7 @@ msgid "Share my current location when posting notices" msgstr "გააზიარე ჩემი მდებარეობა შეტყობინებების დაპოსტვისას" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "სანიშნეები" @@ -4047,6 +4100,27 @@ msgid "" msgstr "" "ავტომატურად გამოიწერე ის ვინც მე გამომიწერს (საუკეთესოა არა ადამიანებისთვის)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "გამოწერები" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4078,7 +4152,7 @@ msgstr "არასწორი სანიშნე: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "მომხმარებლის განახლება ავტოგამოწერისათვის ვერ მოხერხდა." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4087,6 +4161,7 @@ msgid "Could not save location prefs." msgstr "მდებარეობის პარამეტრების შენახვა ვერ მოხერხდა." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "სანიშნეების შენახვა ვერ მოხერხდა." @@ -4434,25 +4509,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "გრძელი სახელი, სასურველია თქვენი ნამდვილი სახელი" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "აღწერეთ საკუთარი თავი და თქვენი ინტერესები %d სიმბოლოთი" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "აღწერეთ საკუთარი თავი და თქვენი ინტერესები" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4574,6 +4631,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "თქვენი პროფილის URL სხვა თავსებად მიკრობლოგინგის სერვისზე" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4610,16 +4668,8 @@ msgstr "მხოლოდ ავტორიზირებულ მომხ msgid "No notice specified." msgstr "შეტყობინება მითითებული არ არის." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "გამეორებული" @@ -4784,6 +4834,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "თქვენ ვერ შეძლებთ მომხმარებლების იზოლირებას ამ საიტზე." @@ -5050,6 +5101,11 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM არ არის ხელმისაწვდომი." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "" @@ -5057,20 +5113,20 @@ msgstr "" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s - %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "შეტყობინებები მონიშნული %1$s-ით, გვერდი %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "შეტყობინებები მონიშნული %1$s-ით, გვერდი %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5148,6 +5204,7 @@ msgid "Repeat of %s" msgstr "" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "თქვენ ვერ შეძლებთ მომხმარებლების დადუმებას ამ საიტზე." @@ -5448,51 +5505,72 @@ msgstr "" msgid "No code entered." msgstr "კოდი არ არის შეყვანილი" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "წინა ვერსიები" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "წინა ვერსიების მართვა" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "წინა ვერსიის გაშვების არასწორი მონაცემი." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "წინა ვერსიის სიხშირე ციფრი უნდა იყოს." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "წინა ვერსიები" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "როდის გაეგზავნოს სტატისტიკური მონაცემები status.net სერვერს" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "სიხშირე" -msgid "Snapshots will be sent once every N web hits" -msgstr "" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." +msgstr "მდგომარეობა გაიგზავნება ამ URL-ზე" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "მდგომარეობა გაიგზავნება ამ URL-ზე" -#. TRANS: Submit button title. -msgid "Save" -msgstr "შენახვა" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "დაიმახსოვრე მდგომარეობის პარამეტრები" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5504,6 +5582,27 @@ msgstr "თქვენ არ გაქვთ გამოწერილი msgid "Could not save subscription." msgstr "გამოწერის დამახსოვრება ვერ მოხერხდა." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s ჯგუფის წევრი" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s ჯგუფის წევრი, გვერდი %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "ამ ჯგუფის წევრების სია." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5627,31 +5726,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "შეტყობინებები მონიშნული %1$s-ით, გვერდი %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "შეტყობინებების RSS მონიშნული %s-თ (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "შეტყობინებების RSS მონიშნული %s-თ (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "შეტყობინებების RSS მონიშნული %s-თ (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "სანიშნე %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "მომხმარებლის პროფილი" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "მონიშნე მომხმარებელი" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5660,17 +5771,26 @@ msgstr "" "სანიშნეები ამ მომხმარებლისთვის (ასოები, ციფრები, -, ., და _). გამოყავით " "მძიმით ან სივრცით" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "ადამიანების მონიშვნა შესაძლებელია მხოლოდ მაშინ, როდესაც ან თქვენ გაქვთ " "გამოწერილი მისი განახლებები, ან იმას." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "სანიშნეები" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "გამოიყენეთ ეს ფორმა, რომ მიანიჭოთ სანიშნეები თქვენს გამოწერებს ან " "გამომწერებს." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "ასეთი სანიშნე არ არსებობს." @@ -5678,25 +5798,31 @@ msgstr "ასეთი სანიშნე არ არსებობს." msgid "You haven't blocked that user." msgstr "თქვენ არ დაგიბლოკავთ ეს მომხმარებელი." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "მომხმარებელი არ არის იზოლირებული." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "მომხმარებელი არ არის დადუმებული." -msgid "No profile ID in request." -msgstr "არცერთი პროფილის ID არ არის მოთხოვნილი." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "გამოწერა გაუქმებულია" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "გამოსაწერი მომხმარებლის ნაკადის ლიცენზია ‘%1$s’ შეუთავსებელია საიტის " "ლიცენზიასთან ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM პარამეტრები" @@ -5711,10 +5837,12 @@ msgstr "სხა მრავალნაირი პარამეტრე msgid " (free service)" msgstr " (უფასო სერვისი)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "არაფერი" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5726,15 +5854,19 @@ msgstr "შეამოკლე URL–ები შემდეგით" msgid "Automatic shortening service to use." msgstr "გამოსაყენებელი შემოკლების ავტომატური სერვისი." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5744,13 +5876,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL–ს შემოკლების სერვისი ძალიან გრძელია (მაქს. 50 სიმბოლო)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "შეტყობინების არასწორი შიგთავსი." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "შეტყობინების არასწორი შიგთავსი." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5831,7 +5967,7 @@ msgstr "საიტის პარამეტრების შენახ msgid "Authorize subscription" msgstr "გამოწერის ავტორიზაცია" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5844,6 +5980,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5856,6 +5993,7 @@ msgstr "გამოიწერე ეს მომხმარებელი" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5874,9 +6012,11 @@ msgstr "ავტორიზაციის მოთხოვნა არ ა msgid "Subscription authorized" msgstr "გამოწერა ავტორიზირებულია" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "გამოწერა ავტორიზირებულია, მაგრამ უკან დასაბრუნებელი URL არ მოწოდებულა. " @@ -5887,9 +6027,11 @@ msgstr "" msgid "Subscription rejected" msgstr "გამოწერა უარყოფილია" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "გამოწერა უარყოფილია, მაგრამ უკან დასაბრუნებელი URL არ მოწოდებულა. " @@ -5920,16 +6062,6 @@ msgstr "პროფილის URL ‘%s’ ლოკალური მომ msgid "Profile URL \"%s\" is for a local user." msgstr "პროფილის URL ‘%s’ ლოკალური მომხმარებლისთვისაა განკუთვნილი." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"გამოსაწერი მომხმარებლის ნაკადის ლიცენზია ‘%1$s’ შეუთავსებელია საიტის " -"ლიცენზიასთან ‘%2$s’." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6156,18 +6288,6 @@ msgstr[0] "" msgid "Invalid filename." msgstr "ფაილის არასწორი სახელი." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "ჯგუფში გაწევრიანება ვერ მოხერხდა." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "ჯგუფის წევრი არ ხართ." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "ჯგუფის დატოვება ვერ მოხერხდა." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6180,6 +6300,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "შეცდომა მომხმარებლის შენახვისას; არასწორი." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "ჯგუფში გაწევრიანება ვერ მოხერხდა." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "ჯგუფის წევრი არ ხართ." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "ჯგუფის დატოვება ვერ მოხერხდა." + #. TRANS: Activity title. msgid "Join" msgstr "გაერთიანება" @@ -6254,6 +6386,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "თქვენ აგეკრძალათ ამ საიტზე შეტყობინებების დაპოსტვა." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "მომხმარებელს არ გააჩნია ბოლო შეტყობინება." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6280,16 +6442,13 @@ msgstr "ჯგუფის ლოკალური ინფორმაცი msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6341,9 +6500,11 @@ msgstr "გამოწერის წაშლა ვერ მოხერხ msgid "Could not delete subscription." msgstr "გამოწერის წაშლა ვერ მოხერხდა." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "დაშვება" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6409,18 +6570,24 @@ msgid "User deletion in progress..." msgstr "მომხმარებლის წაშლა პროგრესშია..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "პროფილის პარამეტრების რედაქტირება" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "რედაქტირება" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "გაუგზავნე პირდაპირი შეტყობინება ამ მომხმარებელს" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "შეტყობინება" @@ -6442,10 +6609,6 @@ msgctxt "role" msgid "Moderator" msgstr "მოდერატორი" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "გამოწერა" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6701,6 +6864,10 @@ msgstr "საიტის შეტყობინება" msgid "Snapshots configuration" msgstr "წინა ვერსიების კონფიგურაცია" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "წინა ვერსიები" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6853,6 +7020,10 @@ msgstr "" msgid "Cancel" msgstr "გაუქმება" +#. TRANS: Submit button title. +msgid "Save" +msgstr "შენახვა" + msgid " by " msgstr "" @@ -6919,6 +7090,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "ყველა გამოწერა" + #. TRANS: Title for command results. msgid "Command results" msgstr "ბრძანების შედეგები" @@ -7070,10 +7247,6 @@ msgstr "შეცდომა პირდაპირი შეტყობი msgid "Notice from %s repeated." msgstr "შეტყობინება %s-გან გამეორდა." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "შეცდომა შეტყობინების გამეორებისას." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7815,6 +7988,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ამიერიდან ყურს უგდებს თქვენს შეტყობინებებს %2$s-ზე." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s ამიერიდან ყურს უგდებს თქვენს შეტყობინებებს %2$s-ზე." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8300,7 +8487,9 @@ msgstr "პასუხი" msgid "Delete this notice" msgstr "შეტყობინების წაშლა" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "შეტყობინება გამეორებულია" msgid "Update your status..." @@ -8586,28 +8775,77 @@ msgstr "დადუმება" msgid "Silence this user" msgstr "ამ მომხმარებლის დადუმება" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "პროფილი" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "გამოწერები" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." +msgstr "თქვენ არ გაქვთ გამოწერილი ამ პროფილის განახლებები." + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "გამომწერები" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "უკვე გამოწერილია!" + +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "People %s subscribes to" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "People subscribed to %s" +msgid "Approve pending subscription requests." msgstr "" -#, php-format -msgid "Groups %s is a member of" -msgstr "" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "ჯგუფები" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." +msgstr "%1$s-ს ის ჯგუფები რომლებშიც გაერთიანებულია %2$s." + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "მოწვევა" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "მოიწვიე მეგობრები და კოლეგები %s-ზე" msgid "Subscribe to this user" msgstr "გამოიწერე ეს მომხმარებელი" +msgid "Subscribe" +msgstr "გამოწერა" + msgid "People Tagcloud as self-tagged" msgstr "მომხმარებლების სანიშნეების ღრუბელი (თვითმონიშნული)" @@ -8719,6 +8957,28 @@ msgstr[0] "ეს შეტყობინება უკვე გამეო msgid "Top posters" msgstr "საუკეთესო მპოსტავები" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "ვის" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "უცნობი ენა \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8834,7 +9094,25 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "ეს შეტყობინება უკვე გამეორებულია." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "აღწერეთ საკუთარი თავი და თქვენი ინტერესები %d სიმბოლოთი" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "აღწერეთ საკუთარი თავი და თქვენი ინტერესები" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." #~ msgstr "" -#~ "შეტყობინება ძალიან გრძელია - დასაშვები რაოდენობაა %1$d სიმბოლომდე, თქვენ " -#~ "გააგზავნეთ %2$d." +#~ "გამოსაწერი მომხმარებლის ნაკადის ლიცენზია ‘%1$s’ შეუთავსებელია საიტის " +#~ "ლიცენზიასთან ‘%2$s’." + +#~ msgid "Error repeating notice." +#~ msgstr "შეცდომა შეტყობინების გამეორებისას." diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index f85d161a6f..774c65bacc 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:27+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -76,7 +76,9 @@ msgstr "접근 설정을 저장" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -88,6 +90,7 @@ msgstr "저장" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "해당하는 페이지 없음" @@ -834,16 +837,6 @@ msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." msgid "No such notice." msgstr "그러한 통지는 없습니다." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "자기 자신의 소식은 재전송할 수 없습니다." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "이미 재전송된 소식입니다." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -984,6 +977,8 @@ msgstr "%s 태그된 통지" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -1100,11 +1095,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "프로파일이 없습니다." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1112,10 +1109,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "이 그룹의 회원리스트" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1140,6 +1139,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "이 그룹의 회원리스트" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s의 상태 (%2$s에서)" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "구독 허가" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "확인 코드가 없습니다." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1181,7 +1208,7 @@ msgstr "좋아하는 게시글로 추가하기" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s 그룹 회원" #. TRANS: Subtitle for group membership feed. @@ -1195,8 +1222,7 @@ msgstr "%s 사용자가 멤버인 그룹" msgid "Cannot add someone else's membership." msgstr "예약 구독을 추가 할 수 없습니다." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "통지들의 내용 찾기" @@ -1518,6 +1544,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s의 상태 (%2$s에서)" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "로그인하고 있지 않습니다." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "해당 ID의 프로필이 없습니다." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "해당 ID의 프로필이 없습니다." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "구독취소 되었습니다." + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "확인 코드가 없습니다." @@ -1729,24 +1798,6 @@ msgstr "이 통지를 지울 수 없습니다." msgid "Delete this group." msgstr "이 사용자 삭제" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "로그인하고 있지 않습니다." - #. TRANS: Instructions for deleting a notice. #, fuzzy msgid "" @@ -2436,14 +2487,6 @@ msgstr "이용자가 프로필을 가지고 있지 않습니다." msgid "No profile specified." msgstr "프로필을 지정하지 않았습니다." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "해당 ID의 프로필이 없습니다." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3051,6 +3094,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. #, fuzzy msgid "Private" msgstr "개인정보 취급방침" @@ -3802,6 +3846,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "SSL 서버" @@ -3960,16 +4005,21 @@ msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "%d자 이내에서 자기 소개 및 자기 관심사" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "자기 소개 및 자기 관심사" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3982,7 +4032,9 @@ msgid "Location" msgstr "위치" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\"" #. TRANS: Checkbox label in form for profile settings. @@ -3990,6 +4042,7 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "태그" @@ -4023,6 +4076,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "나에게 구독하는 사람에게 자동 구독 신청" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "구독" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4054,7 +4128,7 @@ msgstr "올바르지 않은 태그: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4063,6 +4137,7 @@ msgid "Could not save location prefs." msgstr "태그를 저장할 수 없습니다." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "태그를 저장할 수 없습니다." @@ -4403,25 +4478,7 @@ msgstr "업데이트나 공지, 비밀번호 찾기에 사용하세요." msgid "Longer name, preferably your \"real\" name." msgstr "더욱 긴 이름을 요구합니다." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "%d자 이내에서 자기 소개 및 자기 관심사" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "자기 소개 및 자기 관심사" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4538,6 +4595,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4575,16 +4633,8 @@ msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있 msgid "No notice specified." msgstr "프로필을 지정하지 않았습니다." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "자신의 글은 재전송할 수 없습니다." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "이미 재전송된 소식입니다." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "재전송됨" @@ -4743,6 +4793,7 @@ msgid "StatusNet" msgstr "StatusNet %s" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." @@ -5004,6 +5055,11 @@ msgstr "%2$s에서 %1$s까지 메시지" msgid "Message from %1$s on %2$s" msgstr "%1$s에서 %2$s까지 메시지" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "인스턴트 메신저를 사용할 수 없습니다." + #. TRANS: Client error displayed trying to show a deleted notice. #, fuzzy msgid "Notice deleted." @@ -5012,20 +5068,20 @@ msgstr "게시글이 등록되었습니다." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%s 및 친구들, %d 페이지" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%s 태그된 통지" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%s 및 친구들, %d 페이지" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%s 태그된 통지" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5105,6 +5161,7 @@ msgid "Repeat of %s" msgstr "%s에 답신" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다." @@ -5397,55 +5454,73 @@ msgstr "귀하의 휴대폰의 통신회사는 무엇입니까?" msgid "No code entered." msgstr "코드가 입력 되지 않았습니다." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" -msgstr "" +msgstr "접근 설정을 저장" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "메일 주소 확인" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "옳지 않은 크기" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "잘못된 로고 URL 입니다." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "접근 설정을 저장" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. #, fuzzy msgid "Data snapshots" msgstr "접근 설정을 저장" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "주기" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. #, fuzzy msgid "Report URL" msgstr "소스 코드 URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "저장" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "접근 설정을 저장" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5457,6 +5532,27 @@ msgstr "당신은 이 프로필에 구독되지 않고있습니다." msgid "Could not save subscription." msgstr "구독을 저장할 수 없습니다." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s 그룹 회원" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%s 그룹 회원" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "이 그룹의 회원리스트" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5569,31 +5665,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "%s 태그된 통지" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s 그룹을 위한 공지피드 (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s 그룹을 위한 공지피드 (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s 그룹을 위한 공지피드 (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "첨부문서 없음" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "태그 %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "이용자 프로필" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "태그 사용자" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5602,14 +5710,23 @@ msgstr "" "사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세" "요." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "태그" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양식을 사용하세요." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "그러한 태그가 없습니다." @@ -5617,23 +5734,29 @@ msgstr "그러한 태그가 없습니다." msgid "You haven't blocked that user." msgstr "이미 차단된 이용자입니다." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "이용자의 지속적인 게시글이 없습니다." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "이용자의 지속적인 게시글이 없습니다." -msgid "No profile ID in request." -msgstr "해당 ID의 프로필이 없습니다." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "구독취소 되었습니다." +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "메일 설정" @@ -5648,10 +5771,12 @@ msgstr "여러가지 기타 옵션을 관리합니다." msgid " (free service)" msgstr " (무료 서비스)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "없음" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5663,15 +5788,19 @@ msgstr "URL 줄이기 기능" msgid "Automatic shortening service to use." msgstr "사용할 URL 자동 줄이기 서비스." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5681,13 +5810,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL 줄이기 서비스 너무 깁니다. (최대 50글자)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "옳지 않은 크기" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "옳지 않은 크기" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5771,7 +5904,7 @@ msgstr "접근 설정을 저장" msgid "Authorize subscription" msgstr "구독을 허가" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5783,6 +5916,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5795,6 +5929,7 @@ msgstr "이 회원을 구독합니다." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5813,10 +5948,11 @@ msgstr "허용되지 않는 요청입니다." msgid "Subscription authorized" msgstr "구독 허가" +#. TRANS: Accept message text from Authorise subscription page. #, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" @@ -5826,10 +5962,11 @@ msgstr "" msgid "Subscription rejected" msgstr "구독 거부" +#. TRANS: Reject message from Authorise subscription page. #, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" @@ -5859,14 +5996,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6087,6 +6216,18 @@ msgstr[0] "" msgid "Invalid filename." msgstr "옳지 않은 크기" +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "사용자 저장 오류; 무효한 사용자" + #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." msgstr "그룹에 가입하지 못했습니다." @@ -6100,18 +6241,6 @@ msgstr "그룹을 업데이트 할 수 없습니다." msgid "Group leave failed." msgstr "그룹에 가입하지 못했습니다." -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "사용자 저장 오류; 무효한 사용자" - #. TRANS: Activity title. msgid "Join" msgstr "가입" @@ -6190,6 +6319,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "자기 자신의 소식은 재전송할 수 없습니다." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "자신의 글은 재전송할 수 없습니다." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "자기 자신의 소식은 재전송할 수 없습니다." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "자기 자신의 소식은 재전송할 수 없습니다." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "이미 재전송된 소식입니다." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "이용자의 지속적인 게시글이 없습니다." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6216,16 +6375,13 @@ msgstr "새 그룹을 만들 수 없습니다." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6276,7 +6432,9 @@ msgstr "구독을 저장할 수 없습니다." msgid "Could not delete subscription." msgstr "구독을 저장할 수 없습니다." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "팔로우" @@ -6344,18 +6502,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "프로필 설정" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "편집" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "이 회원에게 직접 메시지를 보냅니다." #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "메시지" @@ -6378,10 +6542,6 @@ msgctxt "role" msgid "Moderator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "구독" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6639,6 +6799,10 @@ msgstr "사이트 공지" msgid "Snapshots configuration" msgstr "메일 주소 확인" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6790,6 +6954,10 @@ msgstr "" msgid "Cancel" msgstr "취소" +#. TRANS: Submit button title. +msgid "Save" +msgstr "저장" + msgid " by " msgstr "" @@ -6857,6 +7025,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "모든 예약 구독" + #. TRANS: Title for command results. msgid "Command results" msgstr "실행결과" @@ -7003,10 +7177,6 @@ msgstr "직접 메시지 보내기 오류." msgid "Notice from %s repeated." msgstr "게시글이 등록되었습니다." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "사용자 세팅 오류" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7740,6 +7910,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8157,8 +8341,9 @@ msgstr "답장하기" msgid "Delete this notice" msgstr "이 게시글 삭제하기" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy -msgid "Notice repeated" +msgid "Notice repeated." msgstr "게시글이 등록되었습니다." msgid "Update your status..." @@ -8448,28 +8633,77 @@ msgstr "사이트 공지" msgid "Silence this user" msgstr "이 사용자 삭제" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "프로필" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "구독" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "%s 사람들은 구독합니다." -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "구독자" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "%s에 의해 구독되는 사람들" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "그룹" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s 사용자가 멤버인 그룹" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "초대" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." msgid "Subscribe to this user" msgstr "이 회원을 구독합니다." +msgid "Subscribe" +msgstr "구독" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8578,6 +8812,28 @@ msgstr[0] "이미 재전송된 소식입니다." msgid "Top posters" msgstr "상위 게시글 등록자" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "받는 이" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "알 수 없는 종류의 파일입니다" + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8693,6 +8949,22 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" +#~ msgid "Already repeated that notice." +#~ msgstr "이미 재전송된 소식입니다." + #, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "%d자 이내에서 자기 소개 및 자기 관심사" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "자기 소개 및 자기 관심사" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%s 및 친구들, %d 페이지" + +#~ msgid "Error repeating notice." +#~ msgstr "사용자 세팅 오류" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 2f9cbf25bf..1ebe51bf46 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,7 +77,9 @@ msgstr "Зачувај нагодувања на пристап" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +91,7 @@ msgstr "Зачувај" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Нема таква страница." @@ -839,16 +842,6 @@ msgstr "Не можете да избришете статус на друг к msgid "No such notice." msgstr "Нема таква забелешка." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Не можете да ја повторувате сопствената забелешка." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Забелешката е веќе повторена." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -991,6 +984,8 @@ msgstr "Забелешки означени со %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Подновувањата се означени со %1$s на %2$s!" @@ -1105,10 +1100,12 @@ msgstr "" "Само администратор на група може да одобрува и откажува барања за членување." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." msgstr "Мора да наведете профил." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, php-format @@ -1116,10 +1113,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "%s не е редицата за модерација на оваа група." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "Внатрешна грешка: не примив ни откажување ни прекин." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "Внатрешна грешка: примив и откажување и прекин." @@ -1146,6 +1145,36 @@ msgstr "Барањето за зачленување е одобрено." msgid "Join request canceled." msgstr "Барањето за зачленување е откажано." +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s не е редицата за модерација на оваа група." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Не можев да го откажам барањето да го зачленам корисникот %1$s во групата %2" +"$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Барањето на %1$s за %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Претплатата е одобрена" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Овластувањето е откажано." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1181,8 +1210,8 @@ msgstr "Веќе е бендисано." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "Членства на групата %s" #. TRANS: Subtitle for group membership feed. @@ -1195,8 +1224,7 @@ msgstr "Групи на %2$s кадешто членува %1$s" msgid "Cannot add someone else's membership." msgstr "Не можам да додадам туѓо членство." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Може да работи само со активности за зачленување." @@ -1509,6 +1537,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ја напушти групата %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Не сте најавени." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "!Во барањето нема ID на профилот." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Нема профил со тоа ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Претплатата е откажана" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Нема потврден код." @@ -1713,24 +1784,6 @@ msgstr "Не ја бриши групава." msgid "Delete this group." msgstr "Избриши ја групава." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Не сте најавени." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2409,14 +2462,6 @@ msgstr "Корисникот веќе ја има таа улога." msgid "No profile specified." msgstr "Нема назначено профил." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Нема профил со тоа ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3028,6 +3073,7 @@ msgid "License selection" msgstr "Избор на лиценца" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Приватен" @@ -3758,6 +3804,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Никогаш" @@ -3917,17 +3964,21 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Опишете се себеси и своите интереси со %d знак." msgstr[1] "Опишете се себеси и своите интереси со %d знаци." #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "Опишете се себеси и Вашите интереси" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "Опишете се себеси и Вашите интереси." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3940,8 +3991,9 @@ msgid "Location" msgstr "Местоположба" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Каде се наоѓате, на пр. „Град, Област, Земја“." +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Каде се наоѓате, на пр. „Град, Сојуз. држава (или Област), Земја“." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" @@ -3949,6 +4001,7 @@ msgstr "" "Прикажувај ја мојата тековна местоположба при објавување на забелешките" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Ознаки" @@ -3983,6 +4036,28 @@ msgstr "" "Автоматски претплаќај ме на секој што се претплаќа на мене (најдобро за " "ботови и сл.)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Претплати" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Може само да следи луѓе." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4013,7 +4088,8 @@ msgstr "Неважечка ознака: „%s“." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Не можев да го подновам корисникот за автопретплата." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4021,6 +4097,7 @@ msgid "Could not save location prefs." msgstr "Не можев да ги зачувам нагодувањата за местоположба." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Не можев да ги зачувам ознаките." @@ -4361,24 +4438,7 @@ msgstr "Се користи само за подновувања, објави msgid "Longer name, preferably your \"real\" name." msgstr "Подолго име, по можност Вашето „вистинско“ име и презиме" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Опишете се себеси и своите интереси со %d знак." -msgstr[1] "Опишете се себеси и своите интереси со %d знаци." - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "Опишете се себеси и Вашите интереси." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Каде се наоѓате, на пр. „Град, Сојуз. држава (или Област), Земја“." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Регистрација" @@ -4498,6 +4558,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "!URL на Вашиот профил на друга складна служба за микроблогирање." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. msgctxt "BUTTON" msgid "Subscribe" msgstr "Претплати се" @@ -4530,15 +4591,8 @@ msgstr "Само најавени корисници можат да повто msgid "No notice specified." msgstr "Нема назначено забелешка." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Не можете да повторувате сопствена забелешка." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Веќе ја имате повторено таа забелешка." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Повторено" @@ -4705,6 +4759,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Не можете да ставате корисници во песочен режим на ова мрежно место." @@ -4978,27 +5033,32 @@ msgstr "Порака за %1$s на %2$s" msgid "Message from %1$s on %2$s" msgstr "Порака од %1$s на %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM е недостапно." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Избришана забелешка" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s го/ја означи %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s го/ја означи %2$s, страница %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, стр. %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Забелешки означени со %1$s, стр. %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5086,6 +5146,7 @@ msgid "Repeat of %s" msgstr "Повторувања на %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Не можете да замолчувате корисници на ова мрежно место." @@ -5375,52 +5436,73 @@ msgstr "" msgid "No code entered." msgstr "Нема внесено код." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Снимки" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Раководење со поставки за снимки" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Неважечка вредност на пуштањето на снимката." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Честотата на снимките мора да биде бројка." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Неважечки URL за извештај од снимката." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Снимки" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "По случајност во текот на посета" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Во зададена задача" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Снимки од податоци" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "" "Кога да им се испраќаат статистички податоци на status.net опслужувачите" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Честота" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Ќе се испраќаат снимки на секои N посети" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL на извештајот" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Снимките ќе се испраќаат на оваа URL-адреса" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Зачувај" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Зачувај поставки за снимки" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5432,6 +5514,28 @@ msgstr "Не сте претплатени на тој профил." msgid "Could not save subscription." msgstr "Не можев да ја зачувам претплатата." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Членови на групата %s што чекаат одобрение" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Членови на групата %1$s што чекаат одобрение, страница %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "" +"Список на корисниците што чекаат одобрение за да се зачленат во групата." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5553,31 +5657,43 @@ msgstr "СМС" msgid "Notices tagged with %1$s, page %2$d" msgstr "Забелешки означени со %1$s, стр. %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Канал со забелешки за ознаката %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Канал со забелешки за ознаката %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Канал со забелешки за ознаката %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Нема ID-аргумент." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Означи %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Кориснички профил" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Означи корисник" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." @@ -5585,15 +5701,24 @@ msgstr "" "Ознаки за овој корисник (букви, бројки, -, . и _), одделени со запирка или " "празно место." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Можете да означувате само луѓе на коишто сте претплатени или луѓе " "претплатени на Вас." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Ознаки" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Со овој образец додавајте ознаки во Вашите претплатници или претплати." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Нема таква ознака." @@ -5601,25 +5726,31 @@ msgstr "Нема таква ознака." msgid "You haven't blocked that user." msgstr "Го немате блокирано тој корисник." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Корисникот не е ставен во песочен режим." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Корисникот не е замолчен." -msgid "No profile ID in request." -msgstr "!Во барањето нема ID на профилот." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Претплатата е откажана" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -"Лиценцата на каналот на следачот „%1$s“ не е соодветна на лиценцата на " +"Лиценцата на каналот на следениот „%1$s“ не е складна на лиценцата на " "мрежното место „%2$s“." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "Нагодувања за URL" @@ -5633,9 +5764,11 @@ msgstr "Раководење со разни други можности." msgid " (free service)" msgstr " (слободна служба)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[без ознаки]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[внатрешни]" @@ -5647,17 +5780,21 @@ msgstr "Скратувај URL-адреси со" msgid "Automatic shortening service to use." msgstr "Која автоматска служба за скратување да се користи." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL не подолга од" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" "URL-адресите подолги од ова ќе бидат скратени. 0 значи дека секогаш ќе се " "скратуваат." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Текст подолг од" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5668,12 +5805,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Услугата за скратување на URL-адреси е предолга (највеќе до 50 знаци)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum URL length." msgstr "Неважечки број за максимална должина на URL-адреса." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." msgstr "Неважечки број за макс. должина на забелешка." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" "Грешка при зачувувањето на корисничките нагодувања за скратување на URL-" @@ -5753,7 +5895,7 @@ msgstr "Зачувај кориснички нагодувања." msgid "Authorize subscription" msgstr "Одобрете ја претплатата" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5765,6 +5907,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Прифати" @@ -5775,6 +5918,7 @@ msgstr "Претплати се на корисников." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Одбиј" @@ -5791,9 +5935,11 @@ msgstr "Нема барање за проверка!" msgid "Subscription authorized" msgstr "Претплатата е одобрена" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Претплатата е одобрена, но не е зададена обратна URL-адреса. Проверете ги " @@ -5804,9 +5950,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Претплатата е одбиена" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Претплатата е одбиена, но не е зададена обратна URL-адреса. Проверете ги " @@ -5837,16 +5985,6 @@ msgstr "Следеното URI „%s“ е локален корисник." msgid "Profile URL \"%s\" is for a local user." msgstr "Профилната URL-адреса „%s“ е за локален корисник." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Лиценцата на каналот на следениот „%1$s“ не е складна на лиценцата на " -"мрежното место „%2$s“." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -6075,18 +6213,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Погрешно податотечно име." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Зачленувањето во групата не успеа." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Не е дел од групата." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Напуштањето на групата не успеа." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6099,6 +6225,18 @@ msgstr "Назнаката (ID) %s на профилот е неважечка." msgid "Group ID %s is invalid." msgstr "Групната назнака %s е неважечка." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Зачленувањето во групата не успеа." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Не е дел од групата." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Напуштањето на групата не успеа." + #. TRANS: Activity title. msgid "Join" msgstr "Зачлени се" @@ -6173,6 +6311,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Забрането Ви е да објавувате забелешки на ова мрежно место." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Не можете да ја повторувате сопствената забелешка." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Не можете да повторувате сопствена забелешка." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Не можете да ја повторувате сопствената забелешка." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Не можете да ја повторувате сопствената забелешка." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Веќе ја имате повторено таа забелешка." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Корисникот нема последна забелешка" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6198,16 +6365,13 @@ msgstr "Не можев да го зачувам одговорот за %1$d, % msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6260,7 +6424,9 @@ msgstr "Не можам да го избришам OMB-жетонот за пр msgid "Could not delete subscription." msgstr "Не можам да ја избришам претплатата." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Следи" @@ -6328,18 +6494,24 @@ msgid "User deletion in progress..." msgstr "Бришењето на корисникот е во тек..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Уреди нагодувања на профилот" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Уреди" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Испрати му директна порака на корисников" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Порака" @@ -6361,10 +6533,6 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Претплати се" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6617,6 +6785,10 @@ msgstr "Напомена за мрежното место" msgid "Snapshots configuration" msgstr "Поставки за снимки" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Снимки" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Постави лиценца за мреж. место" @@ -6767,6 +6939,10 @@ msgstr "" msgid "Cancel" msgstr "Откажи" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Зачувај" + msgid " by " msgstr " од " @@ -6828,7 +7004,13 @@ msgstr "Блокирај го корисников" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Откажи барање за членство" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Откажи барање за членство" #. TRANS: Title for command results. msgid "Command results" @@ -6980,10 +7162,6 @@ msgstr "Грашка при испаќањето на директната по msgid "Notice from %s repeated." msgstr "Забелешката од %s е повторена." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Грешка при повторувањето на белешката." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7722,6 +7900,22 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s сега ги следи Вашите забелешки на %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s сега ги следи Вашите забелешки на %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" +"%1$s сака да се зачлени во Вашата група %2$s на %3$s. Можете да го одобрите " +"или одбиете барањето на %4$s" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8205,7 +8399,9 @@ msgstr "Одговор" msgid "Delete this notice" msgstr "Избриши ја оваа забелешка" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Забелешката е повторена" msgid "Update your status..." @@ -8482,28 +8678,77 @@ msgstr "Замолчи" msgid "Silence this user" msgstr "Замолчи го овој корисник" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Профил" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Претплати" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Луѓе на кои е претплатен корисникот %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Претплатници" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Луѓе претплатени на %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "Член во исчекување (%d)" + +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Групи" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Групи кадешто членува %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Покани" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Поканете пријатели и колеги да Ви се придружат на %s" msgid "Subscribe to this user" msgstr "Претплати се на корисников" +msgid "Subscribe" +msgstr "Претплати се" + msgid "People Tagcloud as self-tagged" msgstr "Облак од самоозначени ознаки за луѓе" @@ -8616,6 +8861,28 @@ msgstr[1] "Забелешкава ја имаат повторено %d лица msgid "Top posters" msgstr "Најактивни објавувачи" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "За" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Непознат глагол: „%s“." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8730,10 +8997,31 @@ msgstr "Неважечки XML. Нема XRD-корен." msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." -#~ msgid "BUTTON" -#~ msgstr "КОПЧЕ" +#~ msgid "Already repeated that notice." +#~ msgstr "Забелешката е веќе повторена." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Опишете се себеси и своите интереси со %d знак." +#~ msgstr[1] "Опишете се себеси и своите интереси со %d знаци." + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Опишете се себеси и Вашите интереси" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Каде се наоѓате, на пр. „Град, Област, Земја“." + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, стр. %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." #~ msgstr "" -#~ "Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2" -#~ "$d." +#~ "Лиценцата на каналот на следачот „%1$s“ не е соодветна на лиценцата на " +#~ "мрежното место „%2$s“." + +#~ msgid "Invalid group join approval: not pending." +#~ msgstr "Неважечко одобрение за членство: не е во исчекување." + +#~ msgid "Error repeating notice." +#~ msgstr "Грешка при повторувањето на белешката." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index ccd8c5f15d..b973c1dcb7 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:29+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -74,7 +74,9 @@ msgstr "അഭിഗമ്യതാ സജ്ജീകരണങ്ങൾ സേ #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -86,6 +88,7 @@ msgstr "സേവ് ചെയ്യുക" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "അത്തരത്തിൽ ഒരു താളില്ല." @@ -809,16 +812,6 @@ msgstr "മറ്റൊരു ഉപയോക്താവിന്റെ സ് msgid "No such notice." msgstr "അത്തരത്തിൽ ഒരു അറിയിപ്പ് ഇല്ല." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -959,6 +952,8 @@ msgstr "%s എന്നു റ്റാഗ് ചെയ്തിട്ടുള #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -1073,10 +1068,12 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." msgstr "" #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1084,10 +1081,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "ഈ സംഘത്തിലെ ഉപയോക്താക്കളുടെ പട്ടിക." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1112,6 +1111,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "ഈ സംഘത്തിലെ ഉപയോക്താക്കളുടെ പട്ടിക." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "%2$s എന്ന സംഘത്തിൽ %1$s എന്ന ഉപയോക്താവിനെ ചേർക്കാൻ കഴിഞ്ഞില്ല." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%2$s പദ്ധതിയിൽ %1$s എന്ന ഉപയോക്താവിന്റെ സ്ഥിതിവിവരം" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കപ്പെട്ടു" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "അംഗീകാരം നൽകൽ റദ്ദാക്കി." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1149,8 +1176,8 @@ msgstr "മുമ്പേ തന്നെ പ്രിയങ്കരമാണ #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s സംഘ അംഗത്വങ്ങൾ" #. TRANS: Subtitle for group membership feed. @@ -1163,8 +1190,7 @@ msgstr "%2$s സൈറ്റിലെ ഒരു ഭാഗമാണ് %1$s എ msgid "Cannot add someone else's membership." msgstr "മറ്റൊരാളുടെ അംഗത്വം കൂട്ടിച്ചേർക്കാനാവില്ല." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "പങ്ക് ചേരൽ പ്രക്രിയകൾ മാത്രം കൈകാര്യം ചെയ്യാനേ കഴിയൂ." @@ -1467,6 +1493,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s %2$s എന്ന സംഘത്തിൽ നിന്നും ഒഴിവായി" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "ലോഗിൻ ചെയ്തിട്ടില്ല" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "വരിക്കാരാകുക" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "സ്ഥിരീകരണ കോഡ് ഇല്ല." @@ -1668,24 +1737,6 @@ msgstr "ഈ സംഘത്തെ മായ്ക്കരുത്." msgid "Delete this group." msgstr "ഈ സംഘത്തെ മായ്ക്കുക." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "ലോഗിൻ ചെയ്തിട്ടില്ല" - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2360,14 +2411,6 @@ msgstr "" msgid "No profile specified." msgstr "" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2956,6 +2999,7 @@ msgid "License selection" msgstr "അനുമതി തിരഞ്ഞെടുക്കൽ" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "സ്വകാര്യം" @@ -3682,6 +3726,7 @@ msgid "SSL" msgstr "എസ്.എസ്.എൽ." #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "ഒരിക്കലുമരുത്" @@ -3837,17 +3882,22 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "" -msgstr[1] "" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" +msgstr[1] "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3860,14 +3910,16 @@ msgid "Location" msgstr "സ്ഥലം" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്ന്" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്നിവ." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "അറിയിപ്പുകൾ പ്രസിദ്ധീകരിക്കുന്നതിനോടൊപ്പം എന്റെ ഇപ്പോഴത്തെ സ്ഥലവും പങ്കുവെയ്ക്കുക" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "റ്റാഗുകൾ" @@ -3898,6 +3950,28 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കപ്പെട്ടു" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "ഉപയോക്താക്കളെ പിന്തുടരാൻ മാത്രമേ കഴിയൂ." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3929,7 +4003,7 @@ msgstr "അസാധുവായ റ്റാഗ്: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "ഉപയോക്തൃ വിവരങ്ങൾ പുതുക്കാൻ കഴിഞ്ഞില്ല." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3937,6 +4011,7 @@ msgid "Could not save location prefs." msgstr "സ്ഥാനം സംബന്ധിച്ച ക്രമീകരണങ്ങൾ സേവ് ചെയ്യാൻ കഴിഞ്ഞില്ല." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "റ്റാഗുകൾ സേവ് ചെയ്യാൻ കഴിഞ്ഞില്ല." @@ -4278,25 +4353,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "വലിയ പേര്, താങ്കളുടെ \"യഥാർത്ഥ\" പേര് നൽകാൻ താത്പര്യപ്പെടുന്നു." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" -msgstr[1] "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്നിവ." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4394,6 +4451,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4427,15 +4485,8 @@ msgstr "ലോഗിൻ ചെയ്തിട്ടുള്ള ഉപയോക msgid "No notice specified." msgstr "അറിയിപ്പുകളൊന്നും വ്യക്തമാക്കിയിട്ടില്ല." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "ആവർത്തിച്ചു" @@ -4588,6 +4639,7 @@ msgid "StatusNet" msgstr "സ്റ്റാറ്റസ്‌നെറ്റ്" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" @@ -4851,27 +4903,32 @@ msgstr "%2$s സംരംഭത്തിൽ %1$s എന്ന ഉപയോക് msgid "Message from %1$s on %2$s" msgstr "%2$s സംരംഭത്തിൽ %1$s അയച്ച സന്ദേശങ്ങൾ" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "ഐ.എം. ലഭ്യമല്ല." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "അറിയിപ്പ് മായ്ച്ചിരിക്കുന്നു." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" +msgstr "%s എന്നു റ്റാഗ് ചെയ്തിട്ടുള്ള അറിയിപ്പുകൾ" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, താൾ %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4957,6 +5014,7 @@ msgid "Repeat of %s" msgstr "%s എന്ന ഉപയോക്താവിന്റെ ആവർത്തനം" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "ഈ സൈറ്റിലെ ഉപയോക്താക്കളെ താങ്കൾക്ക് നിശബ്ദരാക്കാനാകില്ല." @@ -5244,52 +5302,68 @@ msgstr "" msgid "No code entered." msgstr "യാതൊരു കോഡും നൽകിയിട്ടില്ല." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "ആവൃതി" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "യൂ.ആർ.എൽ. അറിയിക്കുക" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "സേവ് ചെയ്യുക" - -msgid "Save snapshot settings" -msgstr "" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." +msgstr "സൈറ്റ് സജ്ജീകരണങ്ങൾ ചേവ് ചെയ്യുക" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5300,6 +5374,27 @@ msgstr "" msgid "Could not save subscription." msgstr "" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s സംഘ അംഗത്വങ്ങൾ" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s സംഘത്തിലെ അംഗങ്ങൾ, താൾ %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "ഈ സംഘത്തിലെ ഉപയോക്താക്കളുടെ പട്ടിക." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5415,43 +5510,64 @@ msgstr "എസ്.എം.എസ്." msgid "Notices tagged with %1$s, page %2$d" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "റ്റാഗ് %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "ഉപയോക്താവിനെ റ്റാഗ് ചെയ്യുക" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "റ്റാഗുകൾ" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "അത്തരത്തിൽ ഒരു റ്റാഗില്ല." @@ -5459,23 +5575,31 @@ msgstr "അത്തരത്തിൽ ഒരു റ്റാഗില്ല." msgid "You haven't blocked that user." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "" -msgid "No profile ID in request." -msgstr "" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +"അറിയിപ്പിന്റെ ഉപയോഗാനുമതിയായ് ‘%1$s’ സൈറ്റിന്റെ ഉപയോഗാനുമതിയായ ‘%2$s’ എന്നതുമായി " +"ചേർന്നു പോകുന്നില്ല." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "ഐ.എം. സജ്ജീകരണങ്ങൾ" @@ -5490,10 +5614,12 @@ msgstr "മറ്റ് നിരവധി ഐച്ഛികങ്ങൾ കൈ msgid " (free service)" msgstr " (സൗജന്യ സേവനം)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "ഒന്നുമില്ല" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5505,15 +5631,19 @@ msgstr "യൂ.ആർ.എൽ. ചെറുതാക്കാൻ ഇതുപയ msgid "Automatic shortening service to use." msgstr "ഉപയോഗിക്കാവുന്ന സ്വയംപ്രവർത്തിത ചെറുതാക്കൽ സേവനം." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5522,13 +5652,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "യൂ.ആർ.എൽ. ചെറുതാക്കൽ സേവനം വളരെ വലുതാണ് (പരമാവധി 50 അക്ഷരങ്ങൾ)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "അറിയിപ്പിന്റെ ഉള്ളടക്കം അസാധുവാണ്." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "അറിയിപ്പിന്റെ ഉള്ളടക്കം അസാധുവാണ്." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5606,7 +5740,7 @@ msgstr "ഉപയോക്തൃ സജ്ജീകരണങ്ങൾ സേവ msgid "Authorize subscription" msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കുക" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5615,6 +5749,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "സ്വീകരിക്കുക" @@ -5625,6 +5760,7 @@ msgstr "ഈ ഉപയോക്താവിന്റെ വരിക്കാര #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "നിരസിക്കുക" @@ -5641,9 +5777,10 @@ msgstr "" msgid "Subscription authorized" msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കപ്പെട്ടു" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5651,9 +5788,10 @@ msgstr "" msgid "Subscription rejected" msgstr "വരിക്കാരനാകൽ നിരസിക്കപ്പെട്ടു" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5681,16 +5819,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"അറിയിപ്പിന്റെ ഉപയോഗാനുമതിയായ് ‘%1$s’ സൈറ്റിന്റെ ഉപയോഗാനുമതിയായ ‘%2$s’ എന്നതുമായി " -"ചേർന്നു പോകുന്നില്ല." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -5901,18 +6029,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "പ്രമാണത്തിന്റെ പേര് അസാധുവാണ്." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "സംഘത്തിൽ ചേരൽ പരാജയപ്പെട്ടു." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "സംഘത്തിന്റെ ഭാഗമല്ല." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "സംഘത്തിൽ നിന്നും ഒഴിവാകൽ പരാജയപ്പെട്ടിരിക്കുന്നു." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -5925,6 +6041,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "" +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "സംഘത്തിൽ ചേരൽ പരാജയപ്പെട്ടു." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "സംഘത്തിന്റെ ഭാഗമല്ല." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "സംഘത്തിൽ നിന്നും ഒഴിവാകൽ പരാജയപ്പെട്ടിരിക്കുന്നു." + #. TRANS: Activity title. msgid "Join" msgstr "ഭാഗഭാക്കാകുക" @@ -5999,6 +6127,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "ഈ സൈറ്റിൽ അറിയിപ്പുകൾ പ്രസിദ്ധീകരിക്കുന്നതിൽ നിന്നും താങ്കൾ തടയപ്പെട്ടിരിക്കുന്നു." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6024,16 +6181,13 @@ msgstr " %2$d, %1$d എന്ന അറിയിപ്പിനുള്ള മ msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6082,7 +6236,9 @@ msgstr "" msgid "Could not delete subscription." msgstr "" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "പിന്തുടരുക" @@ -6150,18 +6306,24 @@ msgid "User deletion in progress..." msgstr "ഉപയോക്താവിനെ നീക്കം ചെയ്യൽ പുരോഗമിക്കുന്നു..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "ക്രമീകരണങ്ങളുടെ സജ്ജീകരണം മാറ്റുക" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "തിരുത്തുക" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "ഈ ഉപയോക്താവിന് നേരിട്ട് സന്ദേശമയയ്ക്കുക" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "സന്ദേശം" @@ -6183,10 +6345,6 @@ msgctxt "role" msgid "Moderator" msgstr "മദ്ധ്യസ്ഥ(ൻ)" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "വരിക്കാരാകുക" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6434,6 +6592,10 @@ msgstr "സൈറ്റ് അറിയിപ്പ്" msgid "Snapshots configuration" msgstr "" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "സൈറ്റിന്റെ ഉപയോഗാനുമതി സജ്ജീകരിക്കുക" @@ -6579,6 +6741,10 @@ msgstr "" msgid "Cancel" msgstr "റദ്ദാക്കുക" +#. TRANS: Submit button title. +msgid "Save" +msgstr "സേവ് ചെയ്യുക" + msgid " by " msgstr "" @@ -6642,6 +6808,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "വരിക്കാരനാകൽ നിരസിക്കപ്പെട്ടു" + #. TRANS: Title for command results. msgid "Command results" msgstr "" @@ -6789,10 +6961,6 @@ msgstr "നേരിട്ടുള്ള സന്ദേശം അയക്ക msgid "Notice from %s repeated." msgstr "%s എന്ന ഉപയോക്താവിന്റെ അറിയിപ്പ് ആവർത്തിച്ചു." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "അറിയിപ്പ് ആവർത്തിക്കുന്നതിൽ പിഴവുണ്ടായി." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7521,6 +7689,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "ഈ ആൾക്കാരാണ് താങ്കളുടെ അറിയിപ്പുകൾ ശ്രദ്ധിക്കുന്നത്." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -7939,7 +8121,9 @@ msgstr "മറുപടി" msgid "Delete this notice" msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "അറിയിപ്പ് ആവർത്തിച്ചിരിക്കുന്നു" msgid "Update your status..." @@ -8227,28 +8411,77 @@ msgstr "നിശബ്ദമാക്കുക" msgid "Silence this user" msgstr "ഈ ഉപയോക്താവിനെ നിശബ്ദനാക്കുക" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "അജ്ഞാതമായ കുറിപ്പ്." + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "%s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാകലുകൾ" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." +msgstr "എല്ലാ വരിക്കാരും" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "വരിക്കാർ" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "മുമ്പേ തന്നെ %s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാണ്." + +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "People %s subscribes to" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "People subscribed to %s" +msgid "Approve pending subscription requests." msgstr "" -#, php-format -msgid "Groups %s is a member of" -msgstr "" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "സംഘങ്ങൾ" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." +msgstr "%2$s അംഗമായ %1$s സംഘങ്ങൾ." + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "ക്ഷണിക്കുക" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "%s-ൽ നമ്മോടൊപ്പം ചേരാൻ സുഹൃത്തുക്കളേയും സഹപ്രവർത്തകരേയും ക്ഷണിക്കുക" msgid "Subscribe to this user" msgstr "ഈ ഉപയോക്താവിന്റെ വരിക്കാരൻ/വരിക്കാരി ആകുക" +msgid "Subscribe" +msgstr "വരിക്കാരാകുക" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8359,6 +8592,28 @@ msgstr[1] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "സ്വീകർത്താവ്" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "അപരിചിതമായ ക്രിയ: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8475,7 +8730,17 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "സന്ദേശത്തിന് നീളം കൂടുതലാണ്. പരമാവധി %1$d അക്ഷരം മാത്രം, താങ്കൾ അയച്ചത് %2$d അക്ഷരങ്ങൾ." +#~ msgid "Already repeated that notice." +#~ msgstr "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." + +#~ msgid "Describe yourself and your interests" +#~ msgstr "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്ന്" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, താൾ %2$d" + +#~ msgid "Error repeating notice." +#~ msgstr "അറിയിപ്പ് ആവർത്തിക്കുന്നതിൽ പിഴവുണ്ടായി." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 4bebfa677d..d8d4decb64 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:32+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,7 +77,9 @@ msgstr "Lagre tilgangsinnstillinger" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +91,7 @@ msgstr "Lagre" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Ingen slik side." @@ -839,16 +842,6 @@ msgstr "Du kan ikke slette statusen til en annen bruker." msgid "No such notice." msgstr "Ingen slik notis." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Kan ikke gjenta din egen notis." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Allerede gjentatt den notisen." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -988,6 +981,8 @@ msgstr "Notiser merket med %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringer merket med %1$s på %2$s!" @@ -1102,11 +1097,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Manglende profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1114,10 +1111,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "En liste over brukerne i denne gruppen." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1142,6 +1141,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "En liste over brukerne i denne gruppen." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s sin status på %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Abonnement" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorisasjon kansellert." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1183,7 +1210,7 @@ msgstr "Legg til i favoritter" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s gruppemedlemmer" #. TRANS: Subtitle for group membership feed. @@ -1197,8 +1224,7 @@ msgstr "%1$s grupper %2$s er et medlem av." msgid "Cannot add someone else's membership." msgstr "Kan ikke legge til noen andres abonnement" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Kan bare håndtere POST-handlinger." @@ -1516,6 +1542,50 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s forlot gruppe %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Ikke logget inn." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "Ingen profil med den ID'en." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ingen profil med den ID'en." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Abonner" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Ingen bekreftelseskode." @@ -1730,24 +1800,6 @@ msgstr "Ikke slett denne gruppen" msgid "Delete this group." msgstr "Slett denne gruppen" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Ikke logget inn." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2434,14 +2486,6 @@ msgstr "Bruker har allerede denne rollen." msgid "No profile specified." msgstr "Ingen profil oppgitt." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ingen profil med den ID'en." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3060,6 +3104,7 @@ msgid "License selection" msgstr "Lisensvalg" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privat" @@ -3803,6 +3848,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Aldri" @@ -3958,17 +4004,22 @@ msgstr "Adressen til din hjemmeside, blogg eller profil på et annet nettsted." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Beskriv deg selv og dine interesser på %d tegn" msgstr[1] "Beskriv deg selv og dine interesser på %d tegn" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Beskriv degselv og dine interesser" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3981,7 +4032,9 @@ msgid "Location" msgstr "Plassering" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»" #. TRANS: Checkbox label in form for profile settings. @@ -3989,6 +4042,7 @@ msgid "Share my current location when posting notices" msgstr "Del min nåværende plassering når jeg poster notiser" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Tagger" @@ -4025,6 +4079,27 @@ msgid "" msgstr "" "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonnement" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4056,7 +4131,7 @@ msgstr "Ugyldig merkelapp: «%s»" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Kunne ikke oppdatere bruker for autoabonnering." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4065,6 +4140,7 @@ msgid "Could not save location prefs." msgstr "Kunne ikke lagre plasseringsinnstillinger." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Kunne ikke lagre merkelapper." @@ -4415,26 +4491,7 @@ msgstr "Kun brukt for oppdateringer, kunngjøringer og passordgjenoppretting" msgid "Longer name, preferably your \"real\" name." msgstr "Lengre navn, helst ditt \"ekte\" navn" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Beskriv deg selv og dine interesser på %d tegn" -msgstr[1] "Beskriv deg selv og dine interesser på %d tegn" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Beskriv degselv og dine interesser" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4555,6 +4612,7 @@ msgstr "" "Nettadresse til profilen din på en annen kompatibel mikrobloggingstjeneste" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4591,16 +4649,8 @@ msgstr "Bare innloggede brukere kan repetere notiser." msgid "No notice specified." msgstr "Ingen notis spesifisert." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Du kan ikke gjenta din egen notis." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Du har allerede gjentatt den notisen." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Gjentatt" @@ -4762,6 +4812,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Du kan ikke flytte brukere til sandkassen på dette nettstedet." @@ -5042,6 +5093,11 @@ msgstr "Melding til %1$s på %2$s" msgid "Message from %1$s on %2$s" msgstr "Melding fra %1$s på %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Direktemeldinger ikke tilgjengelig." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Notis slettet." @@ -5049,20 +5105,20 @@ msgstr "Notis slettet." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, side %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Brukere som har merket seg selv med %1$s - side %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, side %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Brukere som har merket seg selv med %1$s - side %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5149,6 +5205,7 @@ msgid "Repeat of %s" msgstr "Repetisjon av %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Du kan ikke bringe brukere til taushet på dette nettstedet." @@ -5444,55 +5501,71 @@ msgstr "" msgid "No code entered." msgstr "Ingen kode skrevet inn" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. #, fuzzy msgid "Manage snapshot configuration" msgstr "Endre nettstedskonfigurasjon" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "Ugyldig rolle." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "Ugyldig logo-URL." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frekvens" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. #, fuzzy msgid "Report URL" msgstr "Nettadresse til kilde" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Lagre" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Lagre nettstedsinnstillinger" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5505,6 +5578,27 @@ msgstr "Ikke autorisert." msgid "Could not save subscription." msgstr "Kunne ikke lagre merkelapper." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s gruppemedlemmer" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s gruppemedlemmer, side %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "En liste over brukerne i denne gruppen." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5619,32 +5713,44 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Brukere som har merket seg selv med %1$s - side %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Notismating for merkelapp %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Notismating for merkelapp %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Notismating for merkelapp %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. #, fuzzy msgid "No ID argument." msgstr "Ingen vedlegg." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Merk %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Brukerprofil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Merk bruker" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5653,14 +5759,23 @@ msgstr "" "Merkelapper for degselv (bokstaver, nummer, -, ., og _), adskilt med komma " "eller mellomrom" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Tagger" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Bruk dette skjemaet for å redigere programmet ditt." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. #, fuzzy msgid "No such tag." msgstr "Ingen slik side." @@ -5669,27 +5784,32 @@ msgstr "Ingen slik side." msgid "You haven't blocked that user." msgstr "Du har ikke blokkert den brukeren." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "Brukeren er allerede i sandkassen." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "Bruker er allerede brakt til taushet." -#, fuzzy -msgid "No profile ID in request." -msgstr "Ingen profil med den ID'en." - +#. TRANS: Page title for page to unsubscribe. #, fuzzy msgid "Unsubscribed" msgstr "Abonner" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "Notislisensen ‘%1$s’ er ikke kompatibel med nettstedslisensen ‘%2$s’." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Innstillinger for direktemeldinger" @@ -5704,10 +5824,12 @@ msgstr "Håndter diverse andre alternativ." msgid " (free service)" msgstr " (fri tjeneste)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ingen" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5719,15 +5841,19 @@ msgstr "Forkort nettadresser med" msgid "Automatic shortening service to use." msgstr "Automatisk fortkortelsestjeneste å bruke." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5736,13 +5862,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Adresseforkortelsestjenesten er for lang (maks 50 tegn)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Ugyldig notisinnhold." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Ugyldig notisinnhold." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5823,7 +5953,7 @@ msgstr "Lagre nettstedsinnstillinger" msgid "Authorize subscription" msgstr "Autoriser abonnementet" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5832,6 +5962,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5844,6 +5975,7 @@ msgstr "Abonner på denne brukeren" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5863,9 +5995,10 @@ msgstr "" msgid "Subscription authorized" msgstr "Abonnement" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5874,9 +6007,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonnement" +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5904,14 +6038,6 @@ msgstr "Profil-URL ‘%s’ er for en lokal bruker." msgid "Profile URL \"%s\" is for a local user." msgstr "Profil-URL ‘%s’ er for en lokal bruker." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "Notislisensen ‘%1$s’ er ikke kompatibel med nettstedslisensen ‘%2$s’." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6128,18 +6254,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ugyldig filnavn." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Gruppeprofil" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Kunne ikke oppdatere gruppe." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Gruppeprofil" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6152,6 +6266,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Feil ved lagring av bruker; ugyldig." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Gruppeprofil" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Kunne ikke oppdatere gruppe." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Gruppeprofil" + #. TRANS: Activity title. msgid "Join" msgstr "Bli med" @@ -6224,6 +6350,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Du kan ikke bringe brukere til taushet på dette nettstedet." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Kan ikke gjenta din egen notis." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Du kan ikke gjenta din egen notis." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Kan ikke gjenta din egen notis." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Kan ikke gjenta din egen notis." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Du har allerede gjentatt den notisen." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Brukeren har ingen profil." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6249,16 +6405,13 @@ msgstr "Kunne ikke lagre lokal gruppeinformasjon." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6311,9 +6464,11 @@ msgstr "Kunne ikke slette favoritt." msgid "Could not delete subscription." msgstr "Kunne ikke slette favoritt." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Tillat" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6380,18 +6535,24 @@ msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Endre profilinnstillinger" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Rediger" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Send en direktemelding til denne brukeren" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Melding" @@ -6413,10 +6574,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abonner" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6673,6 +6830,10 @@ msgstr "Nettstedsnotis" msgid "Snapshots configuration" msgstr "Stikonfigurasjon" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6825,6 +6986,10 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Lagre" + msgid " by " msgstr "" @@ -6892,6 +7057,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Alle abonnementer" + #. TRANS: Title for command results. msgid "Command results" msgstr "Kommandoresultat" @@ -7041,10 +7212,6 @@ msgstr "Feil ved sending av direktemelding." msgid "Notice from %s repeated." msgstr "Nytt nick" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Feil ved repetering av notis." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7804,6 +7971,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lytter nå til dine notiser på %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s lytter nå til dine notiser på %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8309,7 +8490,9 @@ msgstr "Svar" msgid "Delete this notice" msgstr "Slett denne notisen" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Notis repetert" msgid "Update your status..." @@ -8604,28 +8787,77 @@ msgstr "Nettstedsnotis" msgid "Silence this user" msgstr "Slett denne brukeren" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonnement" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "People %s subscribes to" +msgid "People %s subscribes to." msgstr "Fjernabonner" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonnenter" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." +msgstr "Fjernabonner" + +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "People subscribed to %s" -msgstr "Fjernabonner" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupper" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "Groups %s is a member of" +msgid "Groups %s is a member of." msgstr "%1$s grupper %2$s er et medlem av." +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Inviter" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Invite friends and colleagues to join you on %s." msgstr "Inviter venner og kollegaer til å bli med deg på %s" msgid "Subscribe to this user" msgstr "Abonner på denne brukeren" +msgid "Subscribe" +msgstr "Abonner" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8739,6 +8971,28 @@ msgstr[1] "Allerede gjentatt den notisen." msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Til" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Ukjent språk «%s»." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8858,5 +9112,28 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Melding for lang - maks er %1$d tegn, du sendte %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Allerede gjentatt den notisen." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Beskriv deg selv og dine interesser på %d tegn" +#~ msgstr[1] "Beskriv deg selv og dine interesser på %d tegn" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Beskriv degselv og dine interesser" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, side %2$d" + +#, fuzzy +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "Notislisensen ‘%1$s’ er ikke kompatibel med nettstedslisensen ‘%2$s’." + +#~ msgid "Error repeating notice." +#~ msgstr "Feil ved repetering av notis." diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 8aba59437d..893fd2201e 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,7 +77,9 @@ msgstr "Toegangsinstellingen opslaan" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,6 +91,7 @@ msgstr "Opslaan" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Deze pagina bestaat niet." @@ -849,16 +852,6 @@ msgstr "U kunt de status van een andere gebruiker niet verwijderen." msgid "No such notice." msgstr "De mededeling bestaat niet." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "U kunt uw eigen mededeling niet herhalen." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "U hebt die mededeling al herhaald." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1002,6 +995,8 @@ msgstr "Mededelingen met het label %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates met het label %1$s op %2$s!" @@ -1117,10 +1112,12 @@ msgstr "" "afwijzen." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." msgstr "Er moet een profiel opgegeven worden." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, php-format @@ -1128,10 +1125,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "%s heeft geen openstaand verzoek voor deze groep." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "Interne fout: zowel annuleren als afbreken is niet ontvangen." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "Interne fout: er is zowel annuleren als afbreken ontvangen." @@ -1158,6 +1157,36 @@ msgstr "Uw verzoek om lid te worden is geaccepteerd." msgid "Join request canceled." msgstr "Het verzoek voor lidmaatschap is geweigerd." +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s heeft geen openstaand verzoek voor deze groep." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Het was niet mogelijk het verzoek van gebruiker %1$s om lid te worden van de " +"groep %2$s te annuleren." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Verzoek van %1$s voor %2$s." + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Het abonnement is geautoriseerd" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Autorisatie geannuleerd." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1195,8 +1224,8 @@ msgstr "Deze mededeling is al een favoriet." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "groepslidmaatschappen van %s" #. TRANS: Subtitle for group membership feed. @@ -1209,8 +1238,7 @@ msgstr "Groepen waar %1$s lid van is op %2$s" msgid "Cannot add someone else's membership." msgstr "Het is niet mogelijk om een lidmaatschap van een ander toe te voegen." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "" "Het is alleen mogelijk om activiteiten met betrekking tot lidmaatschap af te " @@ -1527,6 +1555,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s heeft de groep %2$s verlaten" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Niet aangemeld." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Het profiel-ID was niet aanwezig in het verzoek." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Er is geen profiel met dat ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Het abonnement is opgezegd" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Geen bevestigingscode." @@ -1736,24 +1807,6 @@ msgstr "Deze groep niet verwijderen." msgid "Delete this group." msgstr "Deze groep verwijderen." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Niet aangemeld." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2437,14 +2490,6 @@ msgstr "Deze gebruiker heeft deze rol al." msgid "No profile specified." msgstr "Er is geen profiel opgegeven." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Er is geen profiel met dat ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3058,6 +3103,7 @@ msgid "License selection" msgstr "Licentieselectie" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privé" @@ -3790,6 +3836,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nooit" @@ -3949,17 +3996,21 @@ msgstr "De URL van uw thuispagina, blog of profiel bij een andere website." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "Beschrijf uzelf en uw interesses in %d teken" -msgstr[1] "Beschrijf uzelf en uw interesses in %d tekens" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "Beschrijf uzelf en uw interesses in %d teken." +msgstr[1] "Beschrijf uzelf en uw interesses in %d tekens." #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "Beschrijf uzelf en uw interesses" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "Beschrijf uzelf en uw interesses." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3972,14 +4023,16 @@ msgid "Location" msgstr "Locatie" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Mijn huidige locatie weergeven bij het plaatsen van mededelingen" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Labels" @@ -4014,6 +4067,28 @@ msgstr "" "Automatisch abonneren bij abonnement op mij (beste voor automatische " "processen)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonnementen" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Het is alleen mogelijk om mensen te volgen." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4044,7 +4119,8 @@ msgstr "Ongeldig label: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "" "Het was niet mogelijk de instelling voor automatisch abonneren voor de " "gebruiker bij te werken." @@ -4054,6 +4130,7 @@ msgid "Could not save location prefs." msgstr "Het was niet mogelijk de locatievoorkeuren op te slaan." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Het was niet mogelijk de labels op te slaan." @@ -4397,24 +4474,7 @@ msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel." msgid "Longer name, preferably your \"real\" name." msgstr "Een langere naam, mogelijk uw echte naam." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Beschrijf uzelf en uw interesses in %d teken." -msgstr[1] "Beschrijf uzelf en uw interesses in %d tekens." - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "Beschrijf uzelf en uw interesses." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Registreren" @@ -4533,6 +4593,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. msgctxt "BUTTON" msgid "Subscribe" msgstr "Abonneren" @@ -4565,15 +4626,8 @@ msgstr "Alleen aangemelde gebruikers kunnen hun mededelingen herhalen." msgid "No notice specified." msgstr "Er is geen mededeling opgegeven." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "U kunt uw eigen mededeling niet herhalen." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "U hebt die mededeling al herhaald." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Herhaald" @@ -4740,6 +4794,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." @@ -5014,27 +5069,32 @@ msgstr "Bericht aan %1$s op %2$s" msgid "Message from %1$s on %2$s" msgstr "Bericht van %1$s op %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM is niet beschikbaar." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Deze mededeling is verwijderd." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%2$s gelabeld door %1$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%2$s gelabeld door %1$s, pagina %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pagina %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Mededelingen met het label %1$s, pagina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5123,6 +5183,7 @@ msgid "Repeat of %s" msgstr "Herhaald van %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "U kunt gebruikers op deze website niet muilkorven." @@ -5415,52 +5476,73 @@ msgstr "" msgid "No code entered." msgstr "Er is geen code ingevoerd." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Snapshots" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Snapshotinstellingen beheren" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "De waarde voor het uitvoeren van snapshots is ongeldig." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "De snapshotfrequentie moet een getal zijn." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "De rapportage-URL voor snapshots is ongeldig." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Snapshots" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Willekeurig tijdens een websitehit" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Als geplande taak" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Snapshots van gegevens" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "" "Wanneer statistische gegevens naar de status.net-servers verzonden worden" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequentie" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Iedere zoveel websitehits wordt een snapshot verzonden" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Rapportage-URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Snapshots worden naar deze URL verzonden" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Opslaan" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Snapshotinstellingen opslaan" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5472,6 +5554,31 @@ msgstr "U bent niet geabonneerd op dat profiel." msgid "Could not save subscription." msgstr "Het was niet mogelijk het abonnement op te slaan." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Groepslidmaatschapsaanvragen voor %s die wachten op goedkeuring" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "" +"Groepslidmaatschapsaanvragen voor %1$s die wachten op goedkeuring, pagina %2" +"$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "" +"Een lijst met gebruikers die wachten om geaccepteerd te worden voor deze " +"groep." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5595,31 +5702,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Mededelingen met het label %1$s, pagina %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Mededelingenfeed voor label %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Mededelingenfeed voor label %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Mededelingenfeed voor label %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Geen ID-argument." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Label %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Gebruikersprofiel" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Gebruiker labelen" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." @@ -5627,17 +5746,26 @@ msgstr "" "Labels voor deze gebruiker (letters, cijfers, -, ., en _). Gebruik komma's " "of spaties als scheidingsteken." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "U kunt alleen gebruikers labelen waarop u geabonneerd bent of die op u " "geabonneerd zijn." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Labels" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Gebruik dit formulier om labels toe te voegen aan uw abonnementen of " "abonnees." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Onbekend label." @@ -5645,25 +5773,31 @@ msgstr "Onbekend label." msgid "You haven't blocked that user." msgstr "U hebt deze gebruiker niet geblokkeerd." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Deze gebruiker is niet in de zandbak geplaatst." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Deze gebruiker is niet gemuilkorfd." -msgid "No profile ID in request." -msgstr "Het profiel-ID was niet aanwezig in het verzoek." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "De licentie \"%1$s\" voor de stream die u wilt volgen is niet compatibel met " "de sitelicentie \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "URL-instellingen" @@ -5677,9 +5811,11 @@ msgstr "Overige instellingen beheren." msgid " (free service)" msgstr " (vrij beschikbare dienst)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[geen]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[intern]" @@ -5691,15 +5827,19 @@ msgstr "URL's inkorten met" msgid "Automatic shortening service to use." msgstr "Te gebruiken automatische verkortingsdienst." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL langer dan" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "URL's langer dan dit worden ingekort. 0 betekent altijd inkorten." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Tekst langer dan" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5710,12 +5850,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "De URL voor de verkortingdienst is te lang (maximaal 50 tekens)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum URL length." msgstr "Ongeldig getal voor maximale URL-lengte." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." msgstr "Ongeldig getal voor maximale mededelingslengte." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "Fout bij het opslaan van gebruikersinstellingen voor URL-verkorting." @@ -5793,7 +5938,7 @@ msgstr "Gebruikersinstellingen opslaan." msgid "Authorize subscription" msgstr "Abonneren" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5806,6 +5951,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Aanvaarden" @@ -5816,6 +5962,7 @@ msgstr "Op deze gebruiker abonneren." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Afwijzen" @@ -5832,9 +5979,11 @@ msgstr "Geen autorisatieverzoek!" msgid "Subscription authorized" msgstr "Het abonnement is geautoriseerd" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " @@ -5845,9 +5994,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Het abonnement is afgewezen" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " @@ -5878,16 +6029,6 @@ msgstr "De abonnements-URI \"%s\" is een lokale gebruiker." msgid "Profile URL \"%s\" is for a local user." msgstr "De profiel-URL \"%s\" is van een lokale gebruiker." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"De licentie \"%1$s\" voor de stream die u wilt volgen is niet compatibel met " -"de sitelicentie \"%2$s\"." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -6114,18 +6255,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ongeldige bestandsnaam." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Groepslidmaatschap toevoegen is mislukt." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Geen lid van groep." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Groepslidmaatschap opzeggen is mislukt." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6138,6 +6267,18 @@ msgstr "Profiel-ID %s is ongeldig." msgid "Group ID %s is invalid." msgstr "Groep-ID %s is ongeldig." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Groepslidmaatschap toevoegen is mislukt." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Geen lid van groep." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Groepslidmaatschap opzeggen is mislukt." + #. TRANS: Activity title. msgid "Join" msgstr "Toetreden" @@ -6217,6 +6358,35 @@ msgid "You are banned from posting notices on this site." msgstr "" "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "U kunt uw eigen mededeling niet herhalen." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "U kunt uw eigen mededeling niet herhalen." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "U kunt uw eigen mededeling niet herhalen." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "U kunt uw eigen mededeling niet herhalen." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "U hebt die mededeling al herhaald." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Deze gebruiker heeft geen laatste mededeling." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6244,16 +6414,13 @@ msgstr "Het was niet mogelijk antwoord %1$d voor %2$d op te slaan." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -msgstr "Ongeldig groepslidmaatschapverzoek: niet in behandeling." - #. 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). #, php-format @@ -6307,7 +6474,9 @@ msgstr "" msgid "Could not delete subscription." msgstr "Kon abonnement niet verwijderen." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Volgen" @@ -6376,18 +6545,24 @@ msgid "User deletion in progress..." msgstr "Bezig met het verwijderen van de gebruiker..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Profielinstellingen bewerken" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Bewerken" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Deze gebruiker een direct bericht zenden" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Bericht" @@ -6409,10 +6584,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abonneren" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6671,6 +6842,10 @@ msgstr "Mededeling van de website" msgid "Snapshots configuration" msgstr "Snapshotinstellingen" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Snapshots" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Sitelicentie instellen" @@ -6824,6 +6999,10 @@ msgstr "" msgid "Cancel" msgstr "Annuleren" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Opslaan" + msgid " by " msgstr " door " @@ -6885,7 +7064,13 @@ msgstr "Deze gebruiker blokkeren" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Lidmaatschapsverzoek weigeren" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Lidmaatschapsverzoek weigeren" #. TRANS: Title for command results. msgid "Command results" @@ -7041,10 +7226,6 @@ msgstr "Er is een fout opgetreden bij het verzonden van het directe bericht." msgid "Notice from %s repeated." msgstr "De mededeling van %s is herhaald." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Er is een fout opgetreden bij het herhalen van de mededeling." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7786,6 +7967,22 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s volgt nu uw berichten %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s volgt nu uw berichten %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" +"%1$s wil lid worden van de groep %2$s op %3$s. U kunt dit verzoek accepteren " +"of weigeren via de volgende verwijzing: %4$s." + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8270,7 +8467,9 @@ msgstr "Antwoorden" msgid "Delete this notice" msgstr "Deze mededeling verwijderen" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Mededeling herhaald" msgid "Update your status..." @@ -8547,28 +8746,77 @@ msgstr "Muilkorven" msgid "Silence this user" msgstr "Deze gebruiker muilkorven" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profiel" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonnementen" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Gebruikers waarop %s een abonnement heeft" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abonnees" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Gebruikers met een abonnement op %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "Opstaande aanvraag voor groepslidmaatschap" + +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Groepen" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Groepen waar %s lid van is" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Uitnodigen" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" msgid "Subscribe to this user" msgstr "Op deze gebruiker abonneren" +msgid "Subscribe" +msgstr "Abonneren" + msgid "People Tagcloud as self-tagged" msgstr "Gebruikerslabelwolk als zelf gelabeld" @@ -8690,6 +8938,28 @@ msgstr[1] "%d personen hebben deze mededeling herhaald." msgid "Top posters" msgstr "Meest actieve gebruikers" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Aan" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Onbekend werkwoord: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8803,10 +9073,32 @@ msgstr "Ongeldige XML. De XRD-root mist." msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." -#~ msgid "BUTTON" -#~ msgstr "X" +#~ msgid "Already repeated that notice." +#~ msgstr "U hebt die mededeling al herhaald." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Beschrijf uzelf en uw interesses in %d teken" +#~ msgstr[1] "Beschrijf uzelf en uw interesses in %d tekens" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Beschrijf uzelf en uw interesses" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" #~ msgstr "" -#~ "Het bericht te is lang. De maximale lengte is %1$d tekens. De lengte van " -#~ "uw bericht was %2$d." +#~ "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, pagina %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "De licentie \"%1$s\" voor de stream die u wilt volgen is niet compatibel " +#~ "met de sitelicentie \"%2$s\"." + +#~ msgid "Invalid group join approval: not pending." +#~ msgstr "Ongeldig groepslidmaatschapverzoek: niet in behandeling." + +#~ msgid "Error repeating notice." +#~ msgstr "Er is een fout opgetreden bij het herhalen van de mededeling." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 270951de02..cf6ec7ce4b 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:33+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -79,7 +79,9 @@ msgstr "Zapisz ustawienia dostępu" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +93,7 @@ msgstr "Zapisz" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Nie ma takiej strony." @@ -847,16 +850,6 @@ msgstr "Nie można usuwać stanów innych użytkowników." msgid "No such notice." msgstr "Nie ma takiego wpisu." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Nie można powtórzyć własnego wpisu." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Już powtórzono ten wpis." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1000,6 +993,8 @@ msgstr "Wpisy ze znacznikiem %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s." @@ -1114,11 +1109,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Brak profilu." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1126,10 +1123,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Lista użytkowników znajdujących się w tej grupie." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1154,6 +1153,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Lista użytkowników znajdujących się w tej grupie." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Stan użytkownika %1$s na %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Upoważniono subskrypcję" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Anulowano upoważnienie." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1190,8 +1217,8 @@ msgstr "Jest już ulubiony." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s członków grupy" #. TRANS: Subtitle for group membership feed. @@ -1204,8 +1231,7 @@ msgstr "Grupy %s są członkiem" msgid "Cannot add someone else's membership." msgstr "Nie można dodać członkostwa innej osoby." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Można obsługiwać tylko działania dołączania." @@ -1521,6 +1547,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "Użytkownik %1$s opuścił grupę %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Niezalogowany." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Brak identyfikatora profilu w żądaniu." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Brak profilu o tym identyfikatorze." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Zrezygnowano z subskrypcji" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Brak kodu potwierdzającego." @@ -1731,24 +1800,6 @@ msgstr "Nie usuwaj tej grupy" msgid "Delete this group." msgstr "Usuń tę grupę" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Niezalogowany." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2432,14 +2483,6 @@ msgstr "Użytkownik ma już tę rolę." msgid "No profile specified." msgstr "Nie podano profilu." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Brak profilu o tym identyfikatorze." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3070,6 +3113,7 @@ msgid "License selection" msgstr "Wybór licencji" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Prywatna" @@ -3812,6 +3856,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nigdy" @@ -3968,18 +4013,23 @@ msgstr "Adres URL strony domowej, bloga lub profilu na innej witrynie." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Opisz siebie i swoje zainteresowania w %d znaku" msgstr[1] "Opisz siebie i swoje zainteresowania w %d znakach" msgstr[2] "Opisz siebie i swoje zainteresowania w %d znakach" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Opisz się i swoje zainteresowania" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3992,7 +4042,9 @@ msgid "Location" msgstr "Położenie" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" #. TRANS: Checkbox label in form for profile settings. @@ -4000,6 +4052,7 @@ msgid "Share my current location when posting notices" msgstr "Podziel się swoim obecnym położeniem podczas wysyłania wpisów" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Znaczniki" @@ -4036,6 +4089,28 @@ msgid "" msgstr "" "Automatycznie subskrybuj każdego, kto mnie subskrybuje (najlepsze dla botów)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subskrypcje" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Można obserwować tylko osoby." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4067,7 +4142,8 @@ msgstr "Nieprawidłowy znacznik: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4075,6 +4151,7 @@ msgid "Could not save location prefs." msgstr "Nie można zapisać preferencji położenia." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Nie można zapisać znaczników." @@ -4422,27 +4499,7 @@ msgstr "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła" msgid "Longer name, preferably your \"real\" name." msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" imię i nazwisko" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Opisz siebie i swoje zainteresowania w %d znaku" -msgstr[1] "Opisz siebie i swoje zainteresowania w %d znakach" -msgstr[2] "Opisz siebie i swoje zainteresowania w %d znakach" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Opisz się i swoje zainteresowania" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4562,6 +4619,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4596,15 +4654,8 @@ msgstr "Tylko zalogowani użytkownicy mogą powtarzać wpisy." msgid "No notice specified." msgstr "Nie podano wpisu." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Nie można powtórzyć własnego wpisu." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Już powtórzono ten wpis." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Powtórzono" @@ -4768,6 +4819,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Nie można ograniczać użytkowników na tej witrynie." @@ -5049,27 +5101,32 @@ msgstr "Wiadomość do użytkownika %1$s na %2$s" msgid "Message from %1$s on %2$s" msgstr "Wiadomość od użytkownika %1$s na %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Komunikator nie jest dostępny." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Usunięto wpis." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s nadał etykietę %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s nadał etykietę %2$s, strona %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, strona %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5158,6 +5215,7 @@ msgid "Repeat of %s" msgstr "Powtórzenia %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Nie można wyciszać użytkowników na tej witrynie." @@ -5457,51 +5515,72 @@ msgstr "" msgid "No code entered." msgstr "Nie podano kodu" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Migawki" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Zarządzaj konfiguracją migawki" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Nieprawidłowa wartość wykonania migawki." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Częstotliwość migawek musi być liczbą." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Nieprawidłowy adres URL zgłaszania migawek." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Migawki" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Losowo podczas trafienia WWW" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Jako zaplanowane zadanie" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Migawki danych" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Kiedy wysyłać dane statystyczne na serwery status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Częstotliwość" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Migawki będą wysyłane co N trafień WWW" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Adres URL zgłaszania" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Migawki będą wysyłane na ten adres URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Zapisz" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Zapisz ustawienia migawki" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5513,6 +5592,27 @@ msgstr "Nie jesteś subskrybowany do tego profilu." msgid "Could not save subscription." msgstr "Nie można zapisać subskrypcji." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s członków grupy" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Członkowie grupy %1$s, strona %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Lista użytkowników znajdujących się w tej grupie." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5636,31 +5736,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Kanał wpisów dla znacznika %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Brak parametru identyfikatora." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Znacznik %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Profil użytkownika" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Znacznik użytkownika" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5669,16 +5781,25 @@ msgstr "" "Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone " "przecinkami lub spacjami" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy " "subskrybują ciebie." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Znaczniki" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Nie ma takiego znacznika." @@ -5686,25 +5807,31 @@ msgstr "Nie ma takiego znacznika." msgid "You haven't blocked that user." msgstr "Ten użytkownik nie został zablokowany." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Użytkownik nie jest ograniczony." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Użytkownik nie jest wyciszony." -msgid "No profile ID in request." -msgstr "Brak identyfikatora profilu w żądaniu." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Zrezygnowano z subskrypcji" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licencja nasłuchiwanego strumienia \"%1$s\" nie jest zgodna z licencją " "witryny \"%2$s\"." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Ustawienia komunikatora" @@ -5719,10 +5846,12 @@ msgstr "Zarządzaj różnymi innymi opcjami." msgid " (free service)" msgstr " (wolna usługa)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Brak" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5734,15 +5863,19 @@ msgstr "Skracanie adresów URL za pomocą" msgid "Automatic shortening service to use." msgstr "Używana automatyczna usługa skracania." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5751,13 +5884,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Adres URL usługi skracania jest za długi (maksymalnie 50 znaków)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Nieprawidłowa treść wpisu." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Nieprawidłowa treść wpisu." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5836,7 +5973,7 @@ msgstr "Zapisz ustawienia użytkownika" msgid "Authorize subscription" msgstr "Upoważnij subskrypcję" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5849,6 +5986,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5861,6 +5999,7 @@ msgstr "Subskrybuj tego użytkownika" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5879,9 +6018,11 @@ msgstr "Brak żądania upoważnienia." msgid "Subscription authorized" msgstr "Upoważniono subskrypcję" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " @@ -5891,9 +6032,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Odrzucono subskrypcję" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " @@ -5923,16 +6066,6 @@ msgstr "Adres URI nasłuchującego \"%s\" jest lokalnym użytkownikiem." msgid "Profile URL \"%s\" is for a local user." msgstr "Adres URL profilu \"%s\" jest dla lokalnego użytkownika." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Licencja nasłuchiwanego strumienia \"%1$s\" nie jest zgodna z licencją " -"witryny \"%2$s\"." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6176,18 +6309,6 @@ msgstr[2] "" msgid "Invalid filename." msgstr "Nieprawidłowa nazwa pliku." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Dołączenie do grupy nie powiodło się." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Nie jest częścią grupy." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Opuszczenie grupy nie powiodło się." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6200,6 +6321,18 @@ msgstr "Identyfikator profilu %s jest nieprawidłowy." msgid "Group ID %s is invalid." msgstr "Identyfikator grupy %s jest nieprawidłowy." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Dołączenie do grupy nie powiodło się." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Nie jest częścią grupy." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Opuszczenie grupy nie powiodło się." + #. TRANS: Activity title. msgid "Join" msgstr "Dołącz" @@ -6274,6 +6407,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Zabroniono ci wysyłania wpisów na tej witrynie." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Nie można powtórzyć własnego wpisu." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Nie można powtórzyć własnego wpisu." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Nie można powtórzyć własnego wpisu." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Nie można powtórzyć własnego wpisu." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Już powtórzono ten wpis." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Użytkownik nie posiada ostatniego wpisu." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6299,16 +6461,13 @@ msgstr "Nie można zapisać odpowiedzi na %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6358,7 +6517,9 @@ msgstr "Nie można usunąć tokenu subskrypcji OMB." msgid "Could not delete subscription." msgstr "Nie można usunąć subskrypcji." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Obserwuj" @@ -6427,18 +6588,24 @@ msgid "User deletion in progress..." msgstr "Trwa usuwanie użytkownika..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Zmodyfikuj ustawienia profilu" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Edycja" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Wiadomość" @@ -6460,10 +6627,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subskrybuj" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6721,6 +6884,10 @@ msgstr "Wpis witryny" msgid "Snapshots configuration" msgstr "Konfiguracja migawek" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Migawki" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Ustaw licencję witryny" @@ -6870,6 +7037,10 @@ msgstr "" msgid "Cancel" msgstr "Anuluj" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Zapisz" + msgid " by " msgstr " autorstwa " @@ -6933,6 +7104,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Wszystkie subskrypcje" + #. TRANS: Title for command results. msgid "Command results" msgstr "Wyniki polecenia" @@ -7083,10 +7260,6 @@ msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." msgid "Notice from %s repeated." msgstr "Powtórzono wpis od użytkownika %s." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Błąd podczas powtarzania wpisu." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7846,6 +8019,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "Użytkownik %1$s obserwuje teraz twoje wpisy na %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "Użytkownik %1$s obserwuje teraz twoje wpisy na %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8353,7 +8540,9 @@ msgstr "Odpowiedz" msgid "Delete this notice" msgstr "Usuń ten wpis" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Powtórzono wpis" msgid "Update your status..." @@ -8633,28 +8822,77 @@ msgstr "Wycisz" msgid "Silence this user" msgstr "Wycisz tego użytkownika" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subskrypcje" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Osoby %s subskrybowane do" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subskrybenci" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Osoby subskrybowane do %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupy" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupy %s są członkiem" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Zaproś" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" msgid "Subscribe to this user" msgstr "Subskrybuj tego użytkownika" +msgid "Subscribe" +msgstr "Subskrybuj" + msgid "People Tagcloud as self-tagged" msgstr "Chmura znaczników osób, które same sobie nadały znaczniki" @@ -8780,6 +9018,28 @@ msgstr[2] "Już powtórzono ten wpis." msgid "Top posters" msgstr "Najczęściej wysyłający wpisy" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Do" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Nieznany czasownik: \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8902,5 +9162,29 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD." msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Wiadomość jest za długa - maksymalnie %1$d znaków, wysłano %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Już powtórzono ten wpis." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Opisz siebie i swoje zainteresowania w %d znaku" +#~ msgstr[1] "Opisz siebie i swoje zainteresowania w %d znakach" +#~ msgstr[2] "Opisz siebie i swoje zainteresowania w %d znakach" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Opisz się i swoje zainteresowania" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, strona %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "Licencja nasłuchiwanego strumienia \"%1$s\" nie jest zgodna z licencją " +#~ "witryny \"%2$s\"." + +#~ msgid "Error repeating notice." +#~ msgstr "Błąd podczas powtarzania wpisu." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 805e361281..f3ba5bd0b5 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -82,7 +82,9 @@ msgstr "Gravar configurações de acesso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -94,6 +96,7 @@ msgstr "Gravar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Página não foi encontrada." @@ -837,16 +840,6 @@ msgstr "Não pode apagar o estado de outro utilizador." msgid "No such notice." msgstr "Nota não foi encontrada." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Não pode repetir a sua própria nota." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Já repetiu essa nota." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -985,6 +978,8 @@ msgstr "Notas categorizadas com %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizações categorizadas com %1$s em %2$s!" @@ -1099,11 +1094,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Perfil não existe." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1111,10 +1108,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Uma lista dos utilizadores neste grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1139,6 +1138,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Uma lista dos utilizadores neste grupo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Não foi possível adicionar %1$s ao grupo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Estado de %1$s em %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Subscrição autorizada" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Confirmação do mensageiro instantâneo cancelada." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1175,8 +1202,8 @@ msgstr "Já nos favoritos" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s membros do grupo" #. TRANS: Subtitle for group membership feed. @@ -1189,8 +1216,7 @@ msgstr "Os grupos %1$s são membros em %2$s" msgid "Cannot add someone else's membership." msgstr "Não é possível adicionar alguém já subscrito." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Só podes tratar de participar nas atividades." @@ -1496,6 +1522,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Não iniciou sessão." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "O pedido não tem a identificação do perfil." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Não foi encontrado um perfil com essa identificação." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Subscrição cancelada" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Sem código de confimação." @@ -1703,24 +1772,6 @@ msgstr "Não apagues este grupo." msgid "Delete this group." msgstr "Apagar este grupo." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Não iniciou sessão." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2404,14 +2455,6 @@ msgstr "O utilizador já tem esta função." msgid "No profile specified." msgstr "Não foi especificado um perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Não foi encontrado um perfil com essa identificação." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3037,6 +3080,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privado" @@ -3781,6 +3825,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunca" @@ -3941,17 +3986,22 @@ msgstr "URL da sua página pessoal, blogue ou perfil noutro site na internet" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Descreva-se e aos seus interesses (máx. 140 caracteres)" msgstr[1] "Descreva-se e aos seus interesses (máx. 140 caracteres)" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Descreva-se e aos seus interesses" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3964,7 +4014,9 @@ msgid "Location" msgstr "Localidade" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Onde está, por ex. \"Cidade, Região, País\"" #. TRANS: Checkbox label in form for profile settings. @@ -3972,6 +4024,7 @@ msgid "Share my current location when posting notices" msgstr "Compartilhar a minha localização presente ao publicar notas" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Categorias" @@ -4006,6 +4059,28 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "Subscrever automaticamente quem me subscreva (óptimo para não-humanos)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Subscrições" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Só podes seguir pessoas." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4038,7 +4113,7 @@ msgstr "Categoria inválida: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Não foi possível actualizar o utilizador para subscrição automática." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4047,6 +4122,7 @@ msgid "Could not save location prefs." msgstr "Não foi possível gravar as preferências de localização." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Não foi possível gravar as categorias." @@ -4400,26 +4476,7 @@ msgstr "Usado apenas para actualizações, anúncios e recuperação da senha" msgid "Longer name, preferably your \"real\" name." msgstr "Nome mais longo, de preferência o seu nome \"verdadeiro\"" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descreva-se e aos seus interesses (máx. 140 caracteres)" -msgstr[1] "Descreva-se e aos seus interesses (máx. 140 caracteres)" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descreva-se e aos seus interesses" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Onde está, por ex. \"Cidade, Região, País\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4544,6 +4601,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL do seu perfil noutro serviço de microblogues compatível" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4580,16 +4638,8 @@ msgstr "Só utilizadores com sessão iniciada podem repetir notas." msgid "No notice specified." msgstr "Nota não foi especificada." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Não pode repetir a sua própria nota." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Já repetiu essa nota." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetida" @@ -4753,6 +4803,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Não pode impedir notas públicas neste site." @@ -5034,27 +5085,32 @@ msgstr "Mensagem para %1$s a %2$s" msgid "Message from %1$s on %2$s" msgstr "Mensagem de %1$s a %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "MI não está disponível." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Avatar actualizado." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s etiquetado como %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Notas categorizadas com %1$s, página %2$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, página %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Notas categorizadas com %1$s, página %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5142,6 +5198,7 @@ msgid "Repeat of %s" msgstr "Repetições de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Não pode silenciar utilizadores neste site." @@ -5442,51 +5499,72 @@ msgstr "" msgid "No code entered." msgstr "Nenhum código introduzido." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Instantâneos" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Alterar a configuração do instantâneo" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Valor de criação do instantâneo é inválido." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Frequência dos instantâneos estatísticos tem de ser um número." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "URL para onde enviar instantâneos é inválida" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Instantâneos" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Aleatoriamente, durante o acesso pela internet" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Num processo agendado" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Instantâneos dos dados" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quando enviar dados estatísticos para os servidores do status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequência" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Instantâneos serão enviados uma vez a cada N acessos da internet" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL para relatórios" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Instantâneos serão enviados para esta URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Gravar" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Gravar configurações do instantâneo" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5498,6 +5576,27 @@ msgstr "Não subscreveu esse perfil." msgid "Could not save subscription." msgstr "Não foi possível gravar a subscrição." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s membros do grupo" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membros do grupo %1$s, página %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Uma lista dos utilizadores neste grupo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Não pode subscrever um perfil remoto OMB 0.1 com esta operação." @@ -5620,31 +5719,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notas categorizadas com %1$s, página %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de notas para a categoria %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de notas para a categoria %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de notas para a categoria %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Argumento de identificação (ID) em falta." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Categoria %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Categorizar utilizador" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5653,15 +5764,24 @@ msgstr "" "Categorias para este utilizador (letras, números, ., _), separadas por " "vírgulas ou espaços" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "Só pode categorizar pessoas que subscreve ou os seus subscritores." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Categorias" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Use este formulário para categorizar os seus subscritores ou os que " "subscreve." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Categoria não foi encontrada." @@ -5669,25 +5789,31 @@ msgstr "Categoria não foi encontrada." msgid "You haven't blocked that user." msgstr "Não bloqueou esse utilizador." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Utilizador não está impedido de criar notas públicas." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Utilizador não está silenciado." -msgid "No profile ID in request." -msgstr "O pedido não tem a identificação do perfil." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Subscrição cancelada" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licença ‘%1$s’ da listenee stream não é compatível com a licença ‘%2$s’ do " "site." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Configurações do IM" @@ -5702,9 +5828,11 @@ msgstr "Gerir várias outras opções." msgid " (free service)" msgstr " (serviço livre)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[nenhum]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[interno]" @@ -5716,15 +5844,19 @@ msgstr "Encurtar URLs com" msgid "Automatic shortening service to use." msgstr "Serviço de encurtamento que será usado automaticamente" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5734,13 +5866,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Serviço de encurtamento de URLs demasiado extenso (máx. 50 caracteres)" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Conteúdo da nota é inválido." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Conteúdo da nota é inválido." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5821,7 +5957,7 @@ msgstr "Gravar configurações do site" msgid "Authorize subscription" msgstr "Autorizar subscrição" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5834,6 +5970,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Aceitar" @@ -5845,6 +5982,7 @@ msgstr "Subscrever este utilizador" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Rejeitar" @@ -5862,9 +6000,11 @@ msgstr "Não há pedido de autorização!" msgid "Subscription authorized" msgstr "Subscrição autorizada" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "A subscrição foi autorizada, mas não foi enviada nenhuma URL de retorno. " @@ -5875,9 +6015,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Subscrição rejeitada" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "A subscrição foi rejeitada, mas não foi enviada nenhuma URL de retorno. " @@ -5908,16 +6050,6 @@ msgstr "URI do ouvido ‘%s’ é um utilizador local." msgid "Profile URL \"%s\" is for a local user." msgstr "A URL ‘%s’ do perfil é de um utilizador local." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Licença ‘%1$s’ da listenee stream não é compatível com a licença ‘%2$s’ do " -"site." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6148,18 +6280,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Nome de ficheiro inválido." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Entrada no grupo falhou." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Não faz parte do grupo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Saída do grupo falhou." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6172,6 +6292,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Erro ao guardar utilizador; inválido." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Entrada no grupo falhou." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Não faz parte do grupo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Saída do grupo falhou." + #. TRANS: Activity title. msgid "Join" msgstr "Juntar-me" @@ -6246,6 +6378,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Está proibido de publicar notas neste site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Não pode repetir a sua própria nota." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Não pode repetir a sua própria nota." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Não pode repetir a sua própria nota." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Não pode repetir a sua própria nota." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Já repetiu essa nota." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Utilizador não tem nenhuma última nota." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6272,16 +6434,13 @@ msgstr "Não foi possível gravar a informação do grupo local." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6333,9 +6492,11 @@ msgstr "Não foi possível apagar a chave OMB da subscrição." msgid "Could not delete subscription." msgstr "Não foi possível apagar a subscrição." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Permitir" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6401,18 +6562,24 @@ msgid "User deletion in progress..." msgstr "A apagar o utilizador..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Editar configurações do perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Editar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Enviar mensagem directa a este utilizador" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mensagem" @@ -6434,10 +6601,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Subscrever" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6698,6 +6861,10 @@ msgstr "Aviso do site" msgid "Snapshots configuration" msgstr "Configuração dos instântaneos" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Instantâneos" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Conjunto de licenças do site" @@ -6846,6 +7013,10 @@ msgstr "Acesso por omissão para esta aplicação: leitura ou leitura e escrita" msgid "Cancel" msgstr "Cancelar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Gravar" + msgid " by " msgstr "por " @@ -6912,6 +7083,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Todas as subscrições" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados do comando" @@ -7062,10 +7239,6 @@ msgstr "Erro no envio da mensagem directa." msgid "Notice from %s repeated." msgstr "Nota de %s repetida." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Erro ao repetir nota." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7816,6 +7989,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está agora a ouvir as suas notas em %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s está agora a ouvir as suas notas em %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8326,7 +8513,9 @@ msgstr "Responder" msgid "Delete this notice" msgstr "Apagar esta nota" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Nota repetida" msgid "Update your status..." @@ -8607,28 +8796,77 @@ msgstr "Silenciar" msgid "Silence this user" msgstr "Silenciar este utilizador" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Subscrições" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Pessoas que %s subscreve" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Subscritores" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Pessoas que subscrevem %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupos de que %s é membro" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Convidar" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Convidar amigos e colegas para se juntarem a si em %s" msgid "Subscribe to this user" msgstr "Subscrever este utilizador" +msgid "Subscribe" +msgstr "Subscrever" + msgid "People Tagcloud as self-tagged" msgstr "Nuvem da auto-categorização das pessoas" @@ -8747,6 +8985,28 @@ msgstr[1] "Já repetiu essa nota." msgid "Top posters" msgstr "Quem mais publica" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Para" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Língua desconhecida \"%s\"." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8865,5 +9125,29 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Mensagem demasiado extensa - máx. %1$d caracteres, enviou %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Já repetiu essa nota." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Descreva-se e aos seus interesses (máx. 140 caracteres)" +#~ msgstr[1] "Descreva-se e aos seus interesses (máx. 140 caracteres)" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Descreva-se e aos seus interesses" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Onde está, por ex. \"Cidade, Região, País\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, página %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "Licença ‘%1$s’ da listenee stream não é compatível com a licença ‘%2$s’ " +#~ "do site." + +#~ msgid "Error repeating notice." +#~ msgstr "Erro ao repetir nota." diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 401d83517f..3da4511c93 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:36+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -81,7 +81,9 @@ msgstr "Salvar as configurações de acesso" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -93,6 +95,7 @@ msgstr "Salvar" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Esta página não existe." @@ -407,7 +410,6 @@ msgid "Recipient user not found." msgstr "O usuário destinatário não foi encontrado." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). -#, fuzzy msgid "Cannot send direct messages to users who aren't your friend." msgstr "" "Não é possível enviar mensagens diretas para usuários que não sejam seus " @@ -667,7 +669,6 @@ msgstr "" #. TRANS: API validation exception thrown when alias is the same as nickname. #. TRANS: Group create form validation error. -#, fuzzy msgid "Alias cannot be the same as nickname." msgstr "O apelido não pode ser igual à identificação." @@ -852,16 +853,6 @@ msgstr "Você não pode excluir uma mensagem de outro usuário." msgid "No such notice." msgstr "Essa mensagem não existe." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Você não pode repetir a sua própria mensagem." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Você já repetiu essa mensagem." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -873,7 +864,7 @@ msgstr "O método HTTP não é suportado." #. TRANS: Exception thrown requesting an unsupported notice output format. #. TRANS: %s is the requested output format. -#, fuzzy, php-format +#, php-format msgid "Unsupported format: %s." msgstr "Formato não suportado: %s" @@ -976,9 +967,9 @@ msgstr "Repetida para %s" #. TRANS: Subtitle for API action that shows most recent notices that are repeats in user's inbox. #. TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that were to repeated to %2$s / %3$s." -msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s." +msgstr "Mensagens em %1$s que são repetições de %2$s / %3$s." #. TRANS: Title of list of repeated notices of the logged in user. #. TRANS: %s is the nickname of the logged in user. @@ -986,9 +977,9 @@ msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s." msgid "Repeats of %s" msgstr "Repetições de %s" -#, fuzzy, php-format +#, php-format msgid "%1$s notices that %2$s / %3$s has repeated." -msgstr "%1$s marcou a mensagem %2$s como favorita." +msgstr "Mensagens em %1$s que %2$s / %3$s repetiu." #. TRANS: Title for timeline with lastest notices with a given tag. #. TRANS: %s is the tag. @@ -1000,6 +991,8 @@ msgstr "Mensagens etiquetadas como %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mensagens etiquetadas como %1$s no %2$s!" @@ -1103,56 +1096,92 @@ msgstr "Nenhum apelido ou identificação." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "Você não está autenticado." +msgstr "É necessário estar autenticado." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." msgstr "" +"Somente administradores do grupo podem aprovar ou cancelar requisições de " +"associação." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. -#, fuzzy +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." -msgstr "Perfil não existe." +msgstr "É necessário especificar um perfil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Uma lista dos usuários deste grupo." +msgstr "%s não está na fila de moderação para este grupo." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." -msgstr "" +msgstr "Erro interno: não foi recebido nem cancelar nem abortar." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." -msgstr "" +msgstr "Erro interno: foram recebidos simultaneamente cancelar e abortar." #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." +msgstr "" +"Não foi possível cancelar a requisição de associação do usuário %1$s para o " +"grupo %2$s." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "Mensagem de %1$s no %2$s" +msgstr "Requisição de associação de %1$s em %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." -msgstr "" +msgstr "A requisição de associação foi aprovada." #. TRANS: Message on page for group admin after rejecting a join request. msgid "Join request canceled." +msgstr "A requisição de associação foi cancelada." + +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "%s não está na fila de moderação para este grupo." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." msgstr "" +"Não foi possível cancelar a requisição de associação do usuário %1$s para o " +"grupo %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Requisição de associação de %1$s em %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "A assinatura foi autorizada" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "A autorização foi cancelada." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1172,7 +1201,6 @@ msgid "Cannot add someone else's subscription." msgstr "Não é possível adicionar a assinatura de outra pessoa." #. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method. -#, fuzzy msgid "Can only handle favorite activities." msgstr "Só é possível manipular as atividades das Favoritas." @@ -1181,7 +1209,6 @@ msgid "Can only fave notices." msgstr "Só é possível tornar favoritas as mensagens." #. TRANS: Client exception thrown when trying favorite a notice without content. -#, fuzzy msgid "Unknown notice." msgstr "Mensagem desconhecida." @@ -1191,23 +1218,21 @@ msgstr "Já foi adicionada às Favoritas." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "Membros do grupo %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Groups %1$s is a member of on %2$s" -msgstr "Grupos dos quais %s é membro" +msgstr "Grupos nos quais %1$s está associado em %2$s" #. TRANS: Client exception thrown when trying subscribe someone else to a group. -#, fuzzy msgid "Cannot add someone else's membership." -msgstr "Não é possível adicionar a assinatura de outra pessoa" +msgstr "Não é possível efetuar a associação de outra pessoa." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Só é possível manipular as atividades de associação." @@ -1530,6 +1555,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Você não está autenticado." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "A requisição não possui nenhuma ID de perfil." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Não foi encontrado nenhum perfil com esse ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Cancelado" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Nenhum código de confirmação." @@ -1743,24 +1811,6 @@ msgstr "Não excluir este grupo" msgid "Delete this group." msgstr "Excluir este grupo" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Você não está autenticado." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2456,14 +2506,6 @@ msgstr "O usuário já possui este papel." msgid "No profile specified." msgstr "Não foi especificado nenhum perfil." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Não foi encontrado nenhum perfil com esse ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3099,6 +3141,7 @@ msgid "License selection" msgstr "Seleção da licença" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Particular" @@ -3849,6 +3892,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Nunca" @@ -4005,17 +4049,22 @@ msgstr "URL do seu site, blog ou perfil em outro site." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Descreva a si mesmo e os seus interesses em %d caractere" msgstr[1] "Descreva a si mesmo e os seus interesses em %d caracteres" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Descreva a si mesmo e os seus interesses" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4028,7 +4077,9 @@ msgid "Location" msgstr "Localização" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" #. TRANS: Checkbox label in form for profile settings. @@ -4036,6 +4087,7 @@ msgid "Share my current location when posting notices" msgstr "Compartilhe minha localização atual ao publicar mensagens" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etiquetas" @@ -4072,6 +4124,28 @@ msgid "" msgstr "" "Assinar automaticamente à quem me assinar (melhor para perfis não humanos)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Assinaturas" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Só é possível assinar pessoas." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4103,7 +4177,7 @@ msgstr "Etiqueta inválida: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Não foi possível atualizar o usuário para assinar automaticamente." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4112,6 +4186,7 @@ msgid "Could not save location prefs." msgstr "Não foi possível salvar as preferências de localização." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Não foi possível salvar as etiquetas." @@ -4467,26 +4542,7 @@ msgstr "Usado apenas para atualizações, anúncios e recuperações de senha" msgid "Longer name, preferably your \"real\" name." msgstr "Nome completo, de preferência seu nome \"real\"" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descreva a si mesmo e os seus interesses em %d caractere" -msgstr[1] "Descreva a si mesmo e os seus interesses em %d caracteres" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Descreva a si mesmo e os seus interesses" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4609,6 +4665,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL do seu perfil em outro serviço de microblog compatível" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4644,16 +4701,8 @@ msgstr "Apenas usuários autenticados podem repetir mensagens." msgid "No notice specified." msgstr "Não foi especificada nenhuma mensagem." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Você não pode repetir sua própria mensagem." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Você já repetiu essa mensagem." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Repetida" @@ -4821,6 +4870,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Você não pode colocar usuários deste site em isolamento." @@ -5100,27 +5150,32 @@ msgstr "Mensagem para %1$s no %2$s" msgid "Message from %1$s on %2$s" msgstr "Mensagem de %1$s no %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "MI não está disponível" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "A mensagem excluída." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "Mensagens de %1$s etiquetadas como %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Mensagens de %1$s etiquetadas como %2$s, pág. %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, pág. %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Mensagens etiquetadas com %1$s, pág. %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5210,6 +5265,7 @@ msgid "Repeat of %s" msgstr "Repetição de %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Você não pode silenciar os usuários neste site." @@ -5508,51 +5564,72 @@ msgstr "" msgid "No code entered." msgstr "Não foi digitado nenhum código" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Estatísticas" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Gerenciar as configurações das estatísticas" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "O valor de execução da obtenção das estatísticas é inválido." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "A frequência de geração de estatísticas deve ser um número." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "A URL para o envio das estatísticas é inválida." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Estatísticas" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Aleatoriamente durante as visitas ao site" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Em horários pré-definidos" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Estatísticas dos dados" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Quando enviar dados estatísticos para os servidores status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequentemente" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "As estatísticas serão enviadas uma vez a cada N usos da web" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL para envio" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "As estatísticas serão enviadas para esta URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Salvar" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Salvar as configurações de estatísticas" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5564,6 +5641,27 @@ msgstr "Você não está assinando esse perfil." msgid "Could not save subscription." msgstr "Não foi possível salvar a assinatura." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Membros do grupo %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Membros do grupo %1$s, pág. %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Uma lista dos usuários deste grupo." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Não é possível assinar um perfil OMB 0.1 remoto com essa ação." @@ -5685,31 +5783,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Mensagens etiquetadas com %1$s, pág. %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de mensagens de %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de mensagens de %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de mensagens de %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Nenhum argumento de ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Etiqueta %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Perfil do usuário" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Etiquetar o usuário" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5718,15 +5828,24 @@ msgstr "" "Etiquetas para este usuário (letras, números, -, ., e _), separadas por " "vírgulas ou espaços" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "Você só pode etiquetar pessoas às quais assina ou que assinam você." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiquetas" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Use esse formulário para adicionar etiquetas aos seus assinantes ou " "assinados." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Esta etiqueta não existe." @@ -5734,25 +5853,31 @@ msgstr "Esta etiqueta não existe." msgid "You haven't blocked that user." msgstr "Você não bloqueou esse usuário." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "O usuário não está em isolamento." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "O usuário não está silenciado." -msgid "No profile ID in request." -msgstr "A requisição não possui nenhuma ID de perfil." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Cancelado" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "A licença '%1$s' do fluxo do usuário não é compatível com a licença '%2$s' " "do site." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Configurações do MI" @@ -5767,10 +5892,12 @@ msgstr "Gerencia várias outras opções." msgid " (free service)" msgstr " (serviço livre)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Nenhuma" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5782,15 +5909,19 @@ msgstr "Encolher URLs com" msgid "Automatic shortening service to use." msgstr "Serviço de encolhimento automático a ser utilizado." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5799,13 +5930,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "O serviço de encolhimento de URL é muito extenso (máx. 50 caracteres)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "O conteúdo da mensagem é inválido." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "O conteúdo da mensagem é inválido." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5885,7 +6020,7 @@ msgstr "Salvar as configurações de usuário" msgid "Authorize subscription" msgstr "Autorizar a assinatura" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5898,6 +6033,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5910,6 +6046,7 @@ msgstr "Assinar este usuário" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5928,9 +6065,11 @@ msgstr "Nenhum pedido de autorização!" msgid "Subscription authorized" msgstr "A assinatura foi autorizada" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. " @@ -5941,9 +6080,11 @@ msgstr "" msgid "Subscription rejected" msgstr "A assinatura foi recusada" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. " @@ -5974,16 +6115,6 @@ msgstr "A URI ‘%s’ é de um usuário local." msgid "Profile URL \"%s\" is for a local user." msgstr "A URL ‘%s’ do perfil é de um usuário local." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"A licença '%1$s' do fluxo do usuário não é compatível com a licença '%2$s' " -"do site." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6214,18 +6345,6 @@ msgstr[1] "Um arquivo deste tamanho excederá a sua conta mensal de %d bytes." msgid "Invalid filename." msgstr "Nome de arquivo inválido." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Não foi possível se unir ao grupo." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Não é parte de um grupo." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Não foi possível deixar o grupo." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6238,6 +6357,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Erro ao salvar usuário; inválido." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Não foi possível se unir ao grupo." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Não é parte de um grupo." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Não foi possível deixar o grupo." + #. TRANS: Activity title. msgid "Join" msgstr "Entrar" @@ -6312,6 +6443,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Você está proibido de publicar mensagens neste site." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Você não pode repetir a sua própria mensagem." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Você não pode repetir sua própria mensagem." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Você não pode repetir a sua própria mensagem." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Você não pode repetir a sua própria mensagem." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Você já repetiu essa mensagem." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "O usuário não tem nenhuma \"última mensagem\"." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6338,16 +6499,13 @@ msgstr "Não foi possível salvar a informação do grupo local." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6398,9 +6556,11 @@ msgstr "Não foi possível salvar a assinatura." msgid "Could not delete subscription." msgstr "Não foi possível salvar a assinatura." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "Permitir" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6466,18 +6626,24 @@ msgid "User deletion in progress..." msgstr "Exclusão do usuário em andamento..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Editar as configurações do perfil" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Editar" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Enviar uma mensagem para este usuário." #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Mensagem" @@ -6499,10 +6665,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderador" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Assinar" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6760,6 +6922,10 @@ msgstr "Avisos do site" msgid "Snapshots configuration" msgstr "Configurações das estatísticas" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Estatísticas" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6914,6 +7080,10 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Salvar" + msgid " by " msgstr "" @@ -6980,6 +7150,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Todas as assinaturas" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultados do comando" @@ -7133,10 +7309,6 @@ msgstr "Ocorreu um erro durante o envio da mensagem direta." msgid "Notice from %s repeated." msgstr "A mensagem de %s foi repetida." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Erro na repetição da mensagem." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7893,6 +8065,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s agora está acompanhando suas mensagens no %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s agora está acompanhando suas mensagens no %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8404,7 +8590,9 @@ msgstr "Responder" msgid "Delete this notice" msgstr "Excluir esta mensagem" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Mensagem repetida" msgid "Update your status..." @@ -8685,28 +8873,77 @@ msgstr "Silenciar" msgid "Silence this user" msgstr "Silenciar este usuário" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Assinaturas" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Assinaturas de %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Assinantes" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Assinantes de %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupos dos quais %s é membro" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Convidar" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Convide seus amigos e colegas para unir-se a você no %s" msgid "Subscribe to this user" msgstr "Assinar este usuário" +msgid "Subscribe" +msgstr "Assinar" + msgid "People Tagcloud as self-tagged" msgstr "Nuvem de etiquetas pessoais definidas pelas próprios usuários" @@ -8823,6 +9060,28 @@ msgstr[1] "Você já repetiu essa mensagem." msgid "Top posters" msgstr "Quem mais publica" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Para" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Idioma \"%s\" desconhecido." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8941,7 +9200,28 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Você já repetiu essa mensagem." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Descreva a si mesmo e os seus interesses em %d caractere" +#~ msgstr[1] "Descreva a si mesmo e os seus interesses em %d caracteres" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Descreva a si mesmo e os seus interesses" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, pág. %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." #~ msgstr "" -#~ "A mensagem é muito extensa - o máximo são %1$d caracteres e você enviou %2" -#~ "$d." +#~ "A licença '%1$s' do fluxo do usuário não é compatível com a licença '%2" +#~ "$s' do site." + +#~ msgid "Error repeating notice." +#~ msgstr "Erro na repetição da mensagem." diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index a208159af4..c164e129cc 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -18,18 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -85,7 +85,9 @@ msgstr "Сохранить настройки доступа" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -97,6 +99,7 @@ msgstr "Сохранить" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Нет такой страницы." @@ -854,16 +857,6 @@ msgstr "Вы не можете удалять статус других поль msgid "No such notice." msgstr "Нет такой записи." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Невозможно повторить собственную запись." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Запись уже повторена." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1004,6 +997,8 @@ msgstr "Записи с тегом %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Обновления с тегом %1$s на %2$s!" @@ -1118,11 +1113,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Отсутствующий профиль." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1130,10 +1127,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Список пользователей, являющихся членами этой группы." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1158,6 +1157,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Список пользователей, являющихся членами этой группы." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Статус %1$s на %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Подписка авторизована" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Авторизация отменена." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1193,8 +1220,8 @@ msgstr "Запись уже в числе любимых." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "Участники группы %s" #. TRANS: Subtitle for group membership feed. @@ -1207,8 +1234,7 @@ msgstr "Группы, в которых состоит %1$s на %2$s" msgid "Cannot add someone else's membership." msgstr "Не удаётся добавить пользователя в группу." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Возможна обработка только запросов на присоединение." @@ -1522,6 +1548,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s покинул группу %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Не авторизован." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Нет ID профиля в запросе." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Нет профиля с таким ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Отписано" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Нет кода подтверждения." @@ -1731,24 +1800,6 @@ msgstr "Не удалять эту группу." msgid "Delete this group." msgstr "Удалить эту группу." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Не авторизован." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2434,14 +2485,6 @@ msgstr "Пользователь уже имеет эту роль." msgid "No profile specified." msgstr "Профиль не определен." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Нет профиля с таким ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3056,6 +3099,7 @@ msgid "License selection" msgstr "Выбор лицензии" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Личное" @@ -3782,6 +3826,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Никогда" @@ -3937,18 +3982,22 @@ msgstr "Адрес вашей домашней страницы, блога ил #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "Опишите себя и свои увлечения при помощи %d символа" -msgstr[1] "Опишите себя и свои увлечения при помощи %d символов" -msgstr[2] "Опишите себя и свои увлечения при помощи %d символов" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "Опишите себя и свои увлечения при помощи %d символа." +msgstr[1] "Опишите себя и свои увлечения при помощи %d символов." +msgstr[2] "Опишите себя и свои увлечения при помощи %d символов." #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "Опишите себя и свои интересы" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "Опишите себя и свои интересы." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3961,14 +4010,16 @@ msgid "Location" msgstr "Местоположение" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Где вы находитесь, например «Город, область, страна»" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Где вы находитесь, например «Город, область (или регион), страна»." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Делиться своим текущим местоположением при отправке записей" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Теги" @@ -4002,6 +4053,28 @@ msgstr "" "Автоматически подписываться на всех, кто подписался на меня (идеально для " "людей-машин)." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Подписки" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Можно следить только за людьми." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4033,7 +4106,8 @@ msgstr "Неверный тег «%s»." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Не удаётся обновить пользователя для автоподписки." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4041,6 +4115,7 @@ msgid "Could not save location prefs." msgstr "Не удаётся сохранить настройки местоположения." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Не удаётся сохранить теги." @@ -4379,25 +4454,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Полное имя, предпочтительно ваше настоящее имя." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Опишите себя и свои увлечения при помощи %d символа." -msgstr[1] "Опишите себя и свои увлечения при помощи %d символов." -msgstr[2] "Опишите себя и свои увлечения при помощи %d символов." - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "Опишите себя и свои интересы." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Где вы находитесь, например «Город, область (или регион), страна»." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Регистрация" @@ -4515,6 +4572,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL-адрес вашего профиля на другом совместимом сервисе микроблогинга." #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. msgctxt "BUTTON" msgid "Subscribe" msgstr "Подписаться" @@ -4545,15 +4603,8 @@ msgstr "Повторять записи могут только вошедшие msgid "No notice specified." msgstr "Не указана запись." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Вы не можете повторить собственную запись." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Вы уже повторили эту запись." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Повторено" @@ -4716,6 +4767,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "" "Вы не можете устанавливать режим песочницы для пользователей этого сайта." @@ -4973,7 +5025,6 @@ msgstr "" "короткими сообщениями о своей жизни и интересах. " #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Администраторы" @@ -4998,27 +5049,32 @@ msgstr "Сообщение для %1$s на %2$s" msgid "Message from %1$s on %2$s" msgstr "Сообщение от %1$s на %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM не доступен." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Запись удалена." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s с тегом %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s с тегом %2$s, страница %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, страница %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Записи с тегом %1$s, страница %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5108,6 +5164,7 @@ msgid "Repeat of %s" msgstr "Повтор за %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Вы не можете заглушать пользователей на этом сайте." @@ -5116,7 +5173,6 @@ msgid "User is already silenced." msgstr "Пользователь уже заглушён." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Сайт" @@ -5148,53 +5204,46 @@ msgid "Dupe limit must be one or more seconds." msgstr "Ограничение дублирования должно составлять одну или более секунд." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" -msgstr "Базовые" +msgstr "Основные" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Имя сайта" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "Имя вашего сайта, например, «Yourcompany Microblog»" +msgstr "Имя вашего сайта, например, «Yourcompany Microblog»." #. TRANS: Field label on site settings panel. msgid "Brought by" msgstr "Предоставлено" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." msgstr "" -"Текст, используемый для указания авторов в нижнем колонтитуле каждой страницы" +"Текст, используемый для указания авторов в нижнем колонтитуле каждой " +"страницы." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "URL-адрес поставщика услуг" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "" -"URL, используемый для ссылки на авторов в нижнем колонтитуле каждой страницы" +msgstr "URL ссылки на авторов в нижнем колонтитуле каждой страницы." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "Email" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Контактный email-адрес для вашего сайта" +msgstr "Контактный email-адрес для вашего сайта." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" msgstr "Внутренние настройки" @@ -5217,10 +5266,9 @@ msgstr "" "Язык сайта в случае, если автоопределение из настроек браузера не сработало" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" -msgstr "Границы" +msgstr "Ограничения" #. TRANS: Field label on site settings panel. msgid "Text limit" @@ -5404,51 +5452,72 @@ msgstr "" msgid "No code entered." msgstr "Код не введён." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Снимки" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Управление снимками конфигурации" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Неверное значение запуска снимка." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Частота снимков должна быть числом." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Неверный URL отчёта снимка." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Снимки" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "При случайном веб-обращении" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "По заданному графику" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Снимки данных" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Когда отправлять статистические данные на сервера status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Частота" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Снимки будут отправляться каждые N посещений" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL отчёта" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Снимки будут отправляться по этому URL-адресу" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Сохранить" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Сохранить настройки снимка" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5460,6 +5529,27 @@ msgstr "Вы не подписаны на этот профиль." msgid "Could not save subscription." msgstr "Не удаётся сохранить подписку." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Участники группы %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Участники группы %1$s, страница %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Список пользователей, являющихся членами этой группы." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5583,31 +5673,43 @@ msgstr "СМС" msgid "Notices tagged with %1$s, page %2$d" msgstr "Записи с тегом %1$s, страница %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Лента записей для тега %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Лента записей для тега %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Лента записей для тега %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Нет аргумента ID." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Теги %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Профиль пользователя" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Теги для пользователя" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." @@ -5615,16 +5717,25 @@ msgstr "" "Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятыми " "или пробелами." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Вы можете помечать тегами только пользователей, на которых подписаны или " "которые подписаны на Вас." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Теги" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Нет такого тега." @@ -5632,24 +5743,30 @@ msgstr "Нет такого тега." msgid "You haven't blocked that user." msgstr "Вы не заблокировали этого пользователя." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Для пользователя не установлен режим песочницы." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Пользователь не заглушён." -msgid "No profile ID in request." -msgstr "Нет ID профиля в запросе." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Отписано" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2$s»." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "Настройки URL-адреса" @@ -5663,9 +5780,11 @@ msgstr "Управление другими опциями." msgid " (free service)" msgstr " (свободный сервис)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[нет]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[внутренний]" @@ -5677,16 +5796,20 @@ msgstr "Сокращать URL с помощью" msgid "Automatic shortening service to use." msgstr "Автоматически использовать выбранный сервис" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL-адрес длиной более" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" "URL-адреса, длиннее этого значения, будут сокращены (0 — всегда сокращать)." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Текст больше, чем" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5697,12 +5820,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Сервис сокращения URL слишком длинный (максимум 50 символов)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum URL length." msgstr "Неверное значение параметра максимальной длины URL-адреса." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." msgstr "Неверное значение параметра максимальной длины сообщения." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "Ошибка при сохранении настроек сервиса сокращения URL." @@ -5781,7 +5909,7 @@ msgstr "Сохранить пользовательские настройки." msgid "Authorize subscription" msgstr "Авторизовать подписку" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5793,6 +5921,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Принять" @@ -5803,6 +5932,7 @@ msgstr "Подписаться на этого пользователя." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Отказаться" @@ -5819,9 +5949,11 @@ msgstr "Не авторизованный запрос!" msgid "Subscription authorized" msgstr "Подписка авторизована" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " @@ -5831,9 +5963,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Подписка отменена" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Подписка отвергнута, но не бы передан URL обратного вызова. Проверьте " @@ -5863,15 +5997,6 @@ msgstr "Просматривающий URI «%s» является локаль msgid "Profile URL \"%s\" is for a local user." msgstr "URL профиля «%s» предназначен только для локального пользователя." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2$s»." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -6101,18 +6226,6 @@ msgstr[2] "Файл такого размера превысит вашу мес msgid "Invalid filename." msgstr "Неверное имя файла." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Не удаётся присоединиться к группе." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Не является частью группы." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Не удаётся покинуть группу." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6125,6 +6238,18 @@ msgstr "Неверный идентификатор профиля %s." msgid "Group ID %s is invalid." msgstr "Неверный идентификатор группы %s." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Не удаётся присоединиться к группе." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Не является частью группы." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Не удаётся покинуть группу." + #. TRANS: Activity title. msgid "Join" msgstr "Присоединиться" @@ -6199,6 +6324,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Вам запрещено поститься на этом сайте (бан)" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Невозможно повторить собственную запись." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Вы не можете повторить собственную запись." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Невозможно повторить собственную запись." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Невозможно повторить собственную запись." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Вы уже повторили эту запись." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "У пользователя нет последней записи." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6224,16 +6378,13 @@ msgstr "Не удаётся сохранить ответ для %1$d, %2$d." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6285,7 +6436,9 @@ msgstr "Не удаётся удалить подписочный жетон OMB msgid "Could not delete subscription." msgstr "Не удаётся удалить подписку." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Следить" @@ -6353,18 +6506,24 @@ msgid "User deletion in progress..." msgstr "Идёт удаление пользователя…" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Изменение настроек профиля" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Редактировать" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Послать приватное сообщение этому пользователю." #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Сообщение" @@ -6386,10 +6545,6 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Подписаться" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6643,6 +6798,10 @@ msgstr "Уведомление сайта" msgid "Snapshots configuration" msgstr "Конфигурация снимков" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Снимки" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Установить лицензию сайта" @@ -6791,6 +6950,10 @@ msgstr "" msgid "Cancel" msgstr "Отменить" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Сохранить" + msgid " by " msgstr " от " @@ -6852,7 +7015,13 @@ msgstr "Заблокировать пользователя." #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Отменить запрос на вступление" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Отменить запрос на вступление" #. TRANS: Title for command results. msgid "Command results" @@ -7006,10 +7175,6 @@ msgstr "Ошибка при отправке прямого сообщения." msgid "Notice from %s repeated." msgstr "Запись %s повторена." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Ошибка при повторении записи." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7460,18 +7625,17 @@ msgid "URL of the homepage or blog of the group or topic." msgstr "Адрес домашней страницы или блога группы или темы." #. TRANS: Text area title for group description when there is no text limit. -#, fuzzy msgid "Describe the group or topic." -msgstr "Опишите группу или тему" +msgstr "Опишите группу или тему." #. TRANS: Text area title for group description. #. TRANS: %d is the number of characters available for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less." msgid_plural "Describe the group or topic in %d characters or less." -msgstr[0] "Опишите группу или тему, используя до %d символов" -msgstr[1] "Опишите группу или тему, используя до %d символов" -msgstr[2] "Опишите группу или тему, используя до %d символов" +msgstr[0] "Опишите группу или тему, используя до %d символа." +msgstr[1] "Опишите группу или тему, используя до %d символов." +msgstr[2] "Опишите группу или тему, используя до %d символов." #. TRANS: Field title on group edit form. msgid "" @@ -7504,25 +7668,23 @@ msgstr[2] "" "d имён." #. TRANS: Dropdown fieldd label on group edit form. -#, fuzzy msgid "Membership policy" -msgstr "Регистрация" +msgstr "Политика принятия" msgid "Open to all" -msgstr "" +msgstr "Открыта для всех" msgid "Admin must approve all members" -msgstr "" +msgstr "Администратор должен подтверждать всех участников" #. TRANS: Dropdown field title on group edit form. msgid "Whether admin approval is required to join this group." -msgstr "" +msgstr "Нужно ли подтверждение администратора для присоединения к группе." #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" -msgstr "Настройки" +msgstr "Администратор" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" @@ -7764,6 +7926,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s теперь следит за вашими записями на %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s теперь следит за вашими записями на %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8267,7 +8443,9 @@ msgstr "Ответить" msgid "Delete this notice" msgstr "Удалить эту запись" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Запись повторена" msgid "Update your status..." @@ -8544,28 +8722,77 @@ msgstr "Заглушить" msgid "Silence this user" msgstr "Заглушить этого пользователя." -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Профиль" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Подписки" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Люди на которых подписан %s" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Подписчики" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Люди подписанные на %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Группы" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Группы, в которых состоит %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Пригласить" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Пригласите друзей и коллег стать такими же как вы участниками %s" msgid "Subscribe to this user" msgstr "Подписаться на этого пользователя" +msgid "Subscribe" +msgstr "Подписаться" + msgid "People Tagcloud as self-tagged" msgstr "Облако собственных тегов людей" @@ -8685,6 +8912,28 @@ msgstr[2] "Запись повторена %d пользователями." msgid "Top posters" msgstr "Самые активные" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Для" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Неизвестное действие «%s»." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8804,6 +9053,32 @@ msgstr "Неверный XML, отсутствует корень XRD." msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Запись уже повторена." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Опишите себя и свои увлечения при помощи %d символа" +#~ msgstr[1] "Опишите себя и свои увлечения при помощи %d символов" +#~ msgstr[2] "Опишите себя и свои увлечения при помощи %d символов" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Опишите себя и свои интересы" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Где вы находитесь, например «Город, область, страна»" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, страница %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." #~ msgstr "" -#~ "Сообщение слишком длинное — не больше %1$d символов, вы отправили %2$d." +#~ "Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2" +#~ "$s»." + +#~ msgid "Invalid group join approval: not pending." +#~ msgstr "Неверное подтверждение вступления в группу: не ожидается." + +#~ msgid "Error repeating notice." +#~ msgstr "Ошибка при повторении записи." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 47d27a9fe0..9ef31942a9 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -80,7 +80,9 @@ msgstr "" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -89,19 +91,21 @@ msgstr "" #: actions/accessadminpanel.php:193 actions/designadminpanel.php:732 #: actions/emailsettings.php:251 actions/imsettings.php:201 #: actions/licenseadminpanel.php:335 actions/pathsadminpanel.php:517 -#: actions/profilesettings.php:198 actions/sessionsadminpanel.php:202 +#: actions/profilesettings.php:215 actions/sessionsadminpanel.php:202 #: actions/siteadminpanel.php:319 actions/sitenoticeadminpanel.php:197 -#: actions/smssettings.php:204 actions/subscriptions.php:261 -#: actions/tagother.php:134 actions/urlsettings.php:152 -#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 -#: lib/designform.php:320 lib/groupeditform.php:228 +#: actions/smssettings.php:204 actions/snapshotadminpanel.php:252 +#: actions/subscriptions.php:261 actions/tagother.php:144 +#: actions/urlsettings.php:152 actions/useradminpanel.php:298 +#: lib/applicationeditform.php:355 lib/designform.php:320 +#: lib/groupeditform.php:228 msgctxt "BUTTON" msgid "Save" msgstr "" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) -#: actions/all.php:68 actions/public.php:99 actions/replies.php:93 +#. TRANS: Server error when page not found (404). +#: actions/all.php:68 actions/public.php:102 actions/replies.php:93 #: actions/showfavorites.php:140 actions/tag.php:52 msgid "No such page." msgstr "" @@ -339,9 +343,9 @@ msgstr "" #. TRANS: Server exception thrown on Profile design page when updating design settings fails. #: actions/apiaccountupdatedeliverydevice.php:136 #: actions/confirmaddress.php:122 actions/emailsettings.php:353 -#: actions/emailsettings.php:499 actions/profilesettings.php:323 +#: actions/emailsettings.php:499 actions/profilesettings.php:342 #: actions/smssettings.php:300 actions/smssettings.php:453 -#: actions/urlsettings.php:211 actions/userdesignsettings.php:315 +#: actions/urlsettings.php:212 actions/userdesignsettings.php:315 msgid "Could not update user." msgstr "" @@ -369,7 +373,7 @@ msgstr "" #. TRANS: Server error displayed if a user profile could not be saved. #. TRANS: Server error thrown when user profile settings could not be saved. -#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:419 +#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:442 msgid "Could not save profile." msgstr "" @@ -607,7 +611,7 @@ msgstr "" #. TRANS: Form validation error displayed when trying to register with an existing nickname. #: actions/apigroupcreate.php:156 actions/apigroupprofileupdate.php:256 #: actions/editgroup.php:192 actions/newgroup.php:138 -#: actions/profilesettings.php:274 actions/register.php:209 +#: actions/profilesettings.php:293 actions/register.php:209 msgid "Nickname already in use. Try another one." msgstr "" @@ -619,7 +623,7 @@ msgstr "" #. TRANS: Form validation error displayed when trying to register with an invalid nickname. #: actions/apigroupcreate.php:164 actions/apigroupprofileupdate.php:261 #: actions/editgroup.php:196 actions/newgroup.php:142 -#: actions/profilesettings.php:244 actions/register.php:212 +#: actions/profilesettings.php:263 actions/register.php:212 msgid "Not a valid nickname." msgstr "" @@ -634,7 +638,7 @@ msgstr "" #: actions/apigroupcreate.php:181 actions/apigroupprofileupdate.php:280 #: actions/editapplication.php:235 actions/editgroup.php:203 #: actions/newapplication.php:221 actions/newgroup.php:149 -#: actions/profilesettings.php:249 actions/register.php:220 +#: actions/profilesettings.php:268 actions/register.php:220 msgid "Homepage is not a valid URL." msgstr "" @@ -646,7 +650,7 @@ msgstr "" #. TRANS: Form validation error displayed when trying to register with a too long full name. #: actions/apigroupcreate.php:191 actions/apigroupprofileupdate.php:290 #: actions/editgroup.php:207 actions/newgroup.php:153 -#: actions/profilesettings.php:253 actions/register.php:224 +#: actions/profilesettings.php:272 actions/register.php:224 msgid "Full name is too long (maximum 255 characters)." msgstr "" @@ -678,7 +682,7 @@ msgstr[1] "" #. TRANS: Form validation error displayed when trying to register with a too long location. #: actions/apigroupcreate.php:215 actions/apigroupprofileupdate.php:312 #: actions/editgroup.php:219 actions/newgroup.php:165 -#: actions/profilesettings.php:266 actions/register.php:236 +#: actions/profilesettings.php:285 actions/register.php:236 msgid "Location is too long (maximum 255 characters)." msgstr "" @@ -871,19 +875,19 @@ msgstr "" #. TRANS: Form validation error message. #. TRANS: Client error displayed when the session token is not okay. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:75 -#: actions/emailsettings.php:292 actions/favor.php:75 actions/geocode.php:55 -#: actions/groupblock.php:65 actions/grouplogo.php:321 +#: actions/cancelsubscription.php:74 actions/deletenotice.php:177 +#: actions/disfavor.php:75 actions/emailsettings.php:292 actions/favor.php:75 +#: actions/geocode.php:55 actions/groupblock.php:65 actions/grouplogo.php:321 #: actions/groupunblock.php:65 actions/imsettings.php:243 #: actions/invite.php:60 actions/makeadmin.php:67 actions/newmessage.php:140 #: actions/newnotice.php:104 actions/nudge.php:81 #: actions/oauthappssettings.php:162 actions/oauthconnectionssettings.php:135 #: actions/passwordsettings.php:146 actions/pluginenable.php:87 -#: actions/profilesettings.php:218 actions/recoverpassword.php:387 +#: actions/profilesettings.php:235 actions/recoverpassword.php:387 #: actions/register.php:163 actions/remotesubscribe.php:77 -#: actions/repeat.php:85 actions/smssettings.php:249 actions/subedit.php:40 -#: actions/subscribe.php:87 actions/tagother.php:146 -#: actions/unsubscribe.php:69 actions/urlsettings.php:171 +#: actions/repeat.php:79 actions/smssettings.php:249 actions/subedit.php:40 +#: actions/subscribe.php:87 actions/tagother.php:156 +#: actions/unsubscribe.php:69 actions/urlsettings.php:170 #: actions/userauthorization.php:53 lib/designsettings.php:122 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -963,7 +967,7 @@ msgstr "" #. TRANS: Label for nickname on user authorisation page. #. TRANS: Field label on group edit form. #: actions/apioauthauthorize.php:459 actions/login.php:231 -#: actions/profilesettings.php:107 actions/register.php:436 +#: actions/profilesettings.php:104 actions/register.php:436 #: actions/userauthorization.php:146 lib/groupeditform.php:147 msgid "Nickname" msgstr "" @@ -1058,22 +1062,10 @@ msgstr "" #. TRANS: Client error displayed trying to show a non-existing notice. #: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 #: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61 -#: actions/shownotice.php:92 +#: actions/shownotice.php:130 msgid "No such notice." msgstr "" -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:543 -msgid "Cannot repeat your own notice." -msgstr "" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:549 -msgid "Already repeated that notice." -msgstr "" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1241,7 +1233,9 @@ msgstr "" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. -#: actions/apitimelinetag.php:105 actions/tagrss.php:65 +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. +#: actions/apitimelinetag.php:105 actions/tagrss.php:67 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -1378,7 +1372,8 @@ msgstr "" #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#: actions/approvegroup.php:102 actions/cancelgroup.php:101 +#: actions/approvegroup.php:102 actions/approvesub.php:60 +#: actions/cancelgroup.php:101 msgid "Must be logged in." msgstr "" @@ -1390,53 +1385,89 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. -#: actions/approvegroup.php:115 +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. +#: actions/approvegroup.php:115 actions/approvesub.php:67 msgid "Must specify a profile." msgstr "" #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#: actions/approvegroup.php:124 actions/cancelgroup.php:123 +#: actions/approvegroup.php:125 actions/cancelgroup.php:123 +#: actions/cancelsubscription.php:101 #, php-format msgid "%s is not in the moderation queue for this group." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. -#: actions/approvegroup.php:131 +#. TRANS: Client error displayed trying to approve/deny subscription. +#: actions/approvegroup.php:132 actions/approvesub.php:83 msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. -#: actions/approvegroup.php:135 +#. TRANS: Client error displayed trying to approve/deny subscription +#: actions/approvegroup.php:136 actions/approvesub.php:87 msgid "Internal error: received both cancel and abort." msgstr "" #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#: actions/approvegroup.php:163 actions/cancelgroup.php:147 +#: actions/approvegroup.php:164 actions/cancelgroup.php:147 #, php-format msgid "Could not cancel request for user %1$s to join group %2$s." msgstr "" #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#: actions/approvegroup.php:173 +#: actions/approvegroup.php:174 #, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" msgstr "" #. TRANS: Message on page for group admin after approving a join request. -#: actions/approvegroup.php:180 +#: actions/approvegroup.php:181 msgid "Join request approved." msgstr "" #. TRANS: Message on page for group admin after rejecting a join request. -#: actions/approvegroup.php:183 +#: actions/approvegroup.php:184 msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#: actions/approvesub.php:76 +#, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#: actions/approvesub.php:116 +#, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#: actions/approvesub.php:126 +#, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "" + +#. TRANS: Message on page for user after approving a subscription request. +#: actions/approvesub.php:132 +msgid "Subscription approved." +msgstr "" + +#. TRANS: Message on page for user after rejecting a subscription request. +#: actions/approvesub.php:135 +msgid "Subscription canceled." +msgstr "" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1465,7 +1496,7 @@ msgid "Can only handle favorite activities." msgstr "" #. TRANS: Client exception thrown when trying favorite an object that is not a notice. -#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250 +#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:249 msgid "Can only fave notices." msgstr "" @@ -1483,7 +1514,7 @@ msgstr "" #. TRANS: %s is a username. #: actions/atompubmembershipfeed.php:144 #, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "" #. TRANS: Subtitle for group membership feed. @@ -1498,24 +1529,23 @@ msgstr "" msgid "Cannot add someone else's membership." msgstr "" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. -#: actions/atompubmembershipfeed.php:242 +#. TRANS: Client error displayed when not using the join verb. +#: actions/atompubmembershipfeed.php:241 msgid "Can only handle join activities." msgstr "" #. TRANS: Client exception thrown when trying to subscribe to a non-existing group. -#: actions/atompubmembershipfeed.php:259 +#: actions/atompubmembershipfeed.php:258 msgid "Unknown group." msgstr "" #. TRANS: Client exception thrown when trying to subscribe to an already subscribed group. -#: actions/atompubmembershipfeed.php:267 +#: actions/atompubmembershipfeed.php:266 msgid "Already a member." msgstr "" #. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group. -#: actions/atompubmembershipfeed.php:275 +#: actions/atompubmembershipfeed.php:274 msgid "Blocked by admin." msgstr "" @@ -1725,7 +1755,7 @@ msgstr "" #. TRANS: Title for backup account page. #. TRANS: Option in profile settings to create a backup of the account of the currently logged in user. -#: actions/backupaccount.php:61 actions/profilesettings.php:468 +#: actions/backupaccount.php:61 actions/profilesettings.php:491 msgid "Backup account" msgstr "" @@ -1873,6 +1903,62 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +#: actions/cancelsubscription.php:57 actions/deletenotice.php:52 +#: actions/disfavor.php:61 actions/favor.php:62 actions/groupblock.php:60 +#: actions/groupunblock.php:60 actions/logout.php:69 actions/makeadmin.php:62 +#: actions/newmessage.php:89 actions/newnotice.php:87 actions/nudge.php:64 +#: actions/pluginenable.php:98 actions/subedit.php:33 actions/subscribe.php:98 +#: actions/tagother.php:35 actions/unsubscribe.php:52 +#: lib/adminpanelaction.php:71 lib/profileformaction.php:63 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#: actions/cancelsubscription.php:83 actions/unsubscribe.php:78 +msgid "No profile ID in request." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +#: actions/cancelsubscription.php:91 actions/groupblock.php:77 +#: actions/groupunblock.php:77 actions/makeadmin.php:79 actions/subedit.php:57 +#: actions/tagother.php:50 actions/unsubscribe.php:86 +#: lib/profileformaction.php:87 +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +#: actions/cancelsubscription.php:110 +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. #: actions/confirmaddress.php:74 msgid "No confirmation code." @@ -1943,7 +2029,7 @@ msgstr "" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#: actions/conversationreplies.php:83 actions/shownotice.php:242 +#: actions/conversationreplies.php:83 actions/shownotice.php:267 msgctxt "TITLE" msgid "Notice" msgstr "" @@ -1977,7 +2063,7 @@ msgstr "" #. TRANS: Page title for page on which a user account can be deleted. #. TRANS: Option in profile settings to delete the account of the currently logged in user. -#: actions/deleteaccount.php:228 actions/profilesettings.php:476 +#: actions/deleteaccount.php:228 actions/profilesettings.php:499 msgid "Delete account" msgstr "" @@ -2036,7 +2122,7 @@ msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 #: actions/newapplication.php:112 actions/showapplication.php:116 -#: lib/action.php:1456 +#: lib/action.php:1462 msgid "There was a problem with your session token." msgstr "" @@ -2112,31 +2198,6 @@ msgstr "" msgid "Delete this group." msgstr "" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:69 -#: actions/makeadmin.php:62 actions/newmessage.php:89 actions/newnotice.php:87 -#: actions/nudge.php:64 actions/pluginenable.php:98 actions/subedit.php:33 -#: actions/subscribe.php:98 actions/tagother.php:34 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:71 lib/profileformaction.php:63 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "" - #. TRANS: Instructions for deleting a notice. #: actions/deletenotice.php:110 msgid "" @@ -2944,17 +3005,6 @@ msgstr "" msgid "No profile specified." msgstr "" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -#: actions/groupblock.php:77 actions/groupunblock.php:77 -#: actions/makeadmin.php:79 actions/subedit.php:57 actions/tagother.php:47 -#: actions/unsubscribe.php:84 lib/profileformaction.php:87 -msgid "No profile with that ID." -msgstr "" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3298,7 +3348,7 @@ msgstr "" #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. -#: actions/imsettings.php:300 actions/urlsettings.php:244 +#: actions/imsettings.php:300 actions/urlsettings.php:246 msgid "Preferences saved." msgstr "" @@ -3479,7 +3529,7 @@ msgstr "" #. TRANS: Send button for inviting friends #. TRANS: Button text for sending notice. -#: actions/invite.php:232 lib/noticeform.php:256 +#: actions/invite.php:232 lib/noticeform.php:301 msgctxt "BUTTON" msgid "Send" msgstr "" @@ -3605,7 +3655,8 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. -#: actions/licenseadminpanel.php:247 +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. +#: actions/licenseadminpanel.php:247 lib/toselector.php:123 msgid "Private" msgstr "" @@ -3845,7 +3896,7 @@ msgstr "" #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. #: actions/newmessage.php:150 actions/newnotice.php:139 lib/command.php:484 -#: lib/command.php:587 +#: lib/command.php:573 msgid "No content!" msgstr "" @@ -3877,17 +3928,17 @@ msgstr "" #. TRANS: Page title after an AJAX error occurred on the "send direct message" page. #. TRANS: Page title after an AJAX error occurs on the send notice page. -#: actions/newmessage.php:227 actions/newnotice.php:264 lib/error.php:117 +#: actions/newmessage.php:227 actions/newnotice.php:268 lib/error.php:117 msgid "Ajax Error" msgstr "" #. TRANS: Page title for sending a new notice. -#: actions/newnotice.php:67 actions/newnotice.php:285 +#: actions/newnotice.php:67 actions/newnotice.php:289 msgid "New notice" msgstr "" #. TRANS: Page title after sending a notice. -#: actions/newnotice.php:230 +#: actions/newnotice.php:234 msgid "Notice posted" msgstr "" @@ -4043,14 +4094,14 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. -#: actions/oembed.php:85 actions/shownotice.php:101 +#: actions/oembed.php:85 actions/shownotice.php:99 msgid "Notice has no profile." msgstr "" #. TRANS: oEmbed title. %1$s is the author name, %2$s is the creation date. #. TRANS: Title of the page that shows a notice. #. TRANS: %1$s is a user name, %2$s is the notice creation date/time. -#: actions/oembed.php:89 actions/shownotice.php:171 +#: actions/oembed.php:89 actions/shownotice.php:196 #, php-format msgid "%1$s's status on %2$s" msgstr "" @@ -4472,7 +4523,8 @@ msgid "SSL" msgstr "" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). -#: actions/pathsadminpanel.php:482 actions/snapshotadminpanel.php:202 +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. +#: actions/pathsadminpanel.php:482 actions/snapshotadminpanel.php:203 msgid "Never" msgstr "" @@ -4602,25 +4654,25 @@ msgid "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." msgstr "" #. TRANS: Page title for profile settings. -#: actions/profilesettings.php:60 +#: actions/profilesettings.php:57 msgid "Profile settings" msgstr "" #. TRANS: Usage instructions for profile settings. -#: actions/profilesettings.php:71 +#: actions/profilesettings.php:68 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" #. TRANS: Profile settings form legend. -#: actions/profilesettings.php:99 +#: actions/profilesettings.php:96 msgid "Profile information" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. #. TRANS: Field title on group edit form. -#: actions/profilesettings.php:110 actions/register.php:438 +#: actions/profilesettings.php:107 actions/register.php:438 #: lib/groupeditform.php:150 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4628,7 +4680,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. #. TRANS: Field label on group edit form. -#: actions/profilesettings.php:114 actions/register.php:469 +#: actions/profilesettings.php:111 actions/register.php:469 #: lib/groupeditform.php:154 msgid "Full name" msgstr "" @@ -4637,103 +4689,133 @@ msgstr "" #. TRANS: Field label on account registration page. #. TRANS: Form input field label. #. TRANS: Field label on group edit form; points to "more info" for a group. -#: actions/profilesettings.php:119 actions/register.php:476 +#: actions/profilesettings.php:116 actions/register.php:476 #: lib/applicationeditform.php:236 lib/groupeditform.php:159 msgid "Homepage" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#: actions/profilesettings.php:122 actions/register.php:479 +#: actions/profilesettings.php:119 actions/register.php:479 msgid "URL of your homepage, blog, or profile on another site." msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:130 +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#: actions/profilesettings.php:127 actions/register.php:488 #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "" msgstr[1] "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:136 -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#: actions/profilesettings.php:133 actions/register.php:494 +msgid "Describe yourself and your interests." msgstr "" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. -#: actions/profilesettings.php:140 actions/register.php:497 +#: actions/profilesettings.php:137 actions/register.php:497 msgid "Bio" msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. #. TRANS: Field label on group edit form. -#: actions/profilesettings.php:146 actions/register.php:503 +#: actions/profilesettings.php:143 actions/register.php:503 #: lib/groupeditform.php:184 msgid "Location" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:149 -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#: actions/profilesettings.php:146 actions/register.php:506 +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "" #. TRANS: Checkbox label in form for profile settings. -#: actions/profilesettings.php:154 +#: actions/profilesettings.php:151 msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. -#: actions/profilesettings.php:162 actions/tagother.php:129 -#: actions/tagother.php:191 lib/subscriptionlist.php:104 -#: lib/subscriptionlist.php:106 +#. TRANS: Field label for inputting tags on "tag other users" page. +#: actions/profilesettings.php:159 actions/tagother.php:137 +#: lib/subscriptionlist.php:104 lib/subscriptionlist.php:106 msgid "Tags" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:165 +#: actions/profilesettings.php:162 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. -#: actions/profilesettings.php:170 +#: actions/profilesettings.php:167 msgid "Language" msgstr "" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#: actions/profilesettings.php:172 +#: actions/profilesettings.php:169 msgid "Preferred language." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. -#: actions/profilesettings.php:182 +#: actions/profilesettings.php:179 msgid "Timezone" msgstr "" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#: actions/profilesettings.php:184 +#: actions/profilesettings.php:181 msgid "What timezone are you normally in?" msgstr "" #. TRANS: Checkbox label in form for profile settings. -#: actions/profilesettings.php:190 +#: actions/profilesettings.php:187 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#: actions/profilesettings.php:195 +msgid "Subscription policy" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +#: actions/profilesettings.php:197 +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +#: actions/profilesettings.php:199 +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +#: actions/profilesettings.php:201 +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +#: actions/profilesettings.php:209 +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). #. TRANS: Form validation error on registration page when providing too long a bio text. #. TRANS: %d is the maximum number of characters for bio; used for plural. -#: actions/profilesettings.php:259 actions/register.php:229 +#: actions/profilesettings.php:278 actions/register.php:229 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4742,12 +4824,12 @@ msgstr[1] "" #. TRANS: Validation error in form for profile settings. #. TRANS: Client error displayed trying to save site settings without a timezone. -#: actions/profilesettings.php:270 actions/siteadminpanel.php:152 +#: actions/profilesettings.php:289 actions/siteadminpanel.php:152 msgid "Timezone not selected." msgstr "" #. TRANS: Validation error in form for profile settings. -#: actions/profilesettings.php:278 +#: actions/profilesettings.php:297 msgid "Language is too long (maximum 50 characters)." msgstr "" @@ -4755,36 +4837,37 @@ msgstr "" #. TRANS: %s is an invalid tag. #. TRANS: Form validation error when entering an invalid tag. #. TRANS: %s is the invalid tag. -#: actions/profilesettings.php:292 actions/tagother.php:160 +#: actions/profilesettings.php:311 actions/tagother.php:170 #, php-format msgid "Invalid tag: \"%s\"." msgstr "" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#: actions/profilesettings.php:348 -msgid "Could not update user for autosubscribe." +#: actions/profilesettings.php:371 +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "" #. TRANS: Server error thrown when user profile location preference settings could not be updated. -#: actions/profilesettings.php:406 +#: actions/profilesettings.php:429 msgid "Could not save location prefs." msgstr "" #. TRANS: Server error thrown when user profile settings tags could not be saved. -#: actions/profilesettings.php:428 actions/tagother.php:182 +#. TRANS: Client error on "tag other users" page when saving tags fails server side. +#: actions/profilesettings.php:451 actions/tagother.php:194 msgid "Could not save tags." msgstr "" #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:437 lib/adminpanelaction.php:138 +#: actions/profilesettings.php:460 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "" #. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup. #. TRANS: Page title for page where a user account can be restored from backup. -#: actions/profilesettings.php:484 actions/restoreaccount.php:60 +#: actions/profilesettings.php:507 actions/restoreaccount.php:60 msgid "Restore account" msgstr "" @@ -4796,39 +4879,39 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#: actions/public.php:93 +#: actions/public.php:96 msgid "Could not retrieve public stream." msgstr "" #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. -#: actions/public.php:131 +#: actions/public.php:134 #, php-format msgid "Public timeline, page %d" msgstr "" #. TRANS: Title for the first public timeline page. -#: actions/public.php:134 lib/publicgroupnav.php:65 +#: actions/public.php:137 lib/publicgroupnav.php:65 msgid "Public timeline" msgstr "" #. TRANS: Link description for public timeline feed. -#: actions/public.php:162 +#: actions/public.php:165 msgid "Public Stream Feed (RSS 1.0)" msgstr "" #. TRANS: Link description for public timeline feed. -#: actions/public.php:167 +#: actions/public.php:170 msgid "Public Stream Feed (RSS 2.0)" msgstr "" #. TRANS: Link description for public timeline feed. -#: actions/public.php:172 +#: actions/public.php:175 msgid "Public Stream Feed (Atom)" msgstr "" #. TRANS: Text displayed for public feed when there are no public notices. -#: actions/public.php:178 +#: actions/public.php:181 #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " @@ -4836,12 +4919,12 @@ msgid "" msgstr "" #. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user. -#: actions/public.php:182 +#: actions/public.php:185 msgid "Be the first to post!" msgstr "" #. TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user. -#: actions/public.php:187 +#: actions/public.php:190 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" @@ -4849,7 +4932,7 @@ msgstr "" #. TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices. #. TRANS: This message contains Markdown links. Please mind the formatting. -#: actions/public.php:235 +#: actions/public.php:238 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4860,7 +4943,7 @@ msgstr "" #. TRANS: Message for not logged in users at a closed site trying to view the public feed of notices. #. TRANS: This message contains Markdown links. Please mind the formatting. -#: actions/public.php:242 +#: actions/public.php:245 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5157,27 +5240,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#: actions/register.php:488 -#, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "" -msgstr[1] "" - -#. TRANS: Text area title on account registration page. -#: actions/register.php:494 -msgid "Describe yourself and your interests." -msgstr "" - -#. TRANS: Field title on account registration page. -#: actions/register.php:506 -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #: actions/register.php:535 msgctxt "BUTTON" msgid "Register" @@ -5287,7 +5350,8 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. -#: actions/remotesubscribe.php:146 +#. TRANS: Link text for link that will subscribe to a remote profile. +#: actions/remotesubscribe.php:146 lib/accountprofileblock.php:290 msgctxt "BUTTON" msgid "Subscribe" msgstr "" @@ -5324,23 +5388,14 @@ msgstr "" msgid "No notice specified." msgstr "" -#. TRANS: Client error displayed when trying to repeat an own notice. -#: actions/repeat.php:78 -msgid "You cannot repeat your own notice." -msgstr "" - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -#: actions/repeat.php:93 -msgid "You already repeated that notice." -msgstr "" - #. TRANS: Title after repeating a notice. -#: actions/repeat.php:115 lib/noticelistitem.php:602 +#. TRANS: Repeat form status in notice list when a notice has been repeated. +#: actions/repeat.php:101 lib/noticelistitem.php:591 msgid "Repeated" msgstr "" #. TRANS: Confirmation text after repeating a notice. -#: actions/repeat.php:121 +#: actions/repeat.php:107 msgid "Repeated!" msgstr "" @@ -5516,7 +5571,8 @@ msgid "StatusNet" msgstr "" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. -#: actions/sandbox.php:64 actions/unsandbox.php:65 +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. +#: actions/sandbox.php:64 actions/unsandbox.php:64 msgid "You cannot sandbox users on this site." msgstr "" @@ -5788,7 +5844,7 @@ msgid "" msgstr "" #. TRANS: Title for list of group administrators on a group page. -#: actions/showgroup.php:388 +#: actions/showgroup.php:400 msgctxt "TITLE" msgid "Admins" msgstr "" @@ -5817,8 +5873,13 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#: actions/shownotice.php:92 +msgid "Not available." +msgstr "" + #. TRANS: Client error displayed trying to show a deleted notice. -#: actions/shownotice.php:89 +#: actions/shownotice.php:127 msgid "Notice deleted." msgstr "" @@ -5826,21 +5887,21 @@ msgstr "" #. TRANS: %1$s is the username, %2$s is the hash tag. #: actions/showstream.php:70 #, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #: actions/showstream.php:74 #, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. #: actions/showstream.php:82 #, php-format -msgid "%1$s, page %2$d" +msgid "Notices by %1$s, page %2$d" msgstr "" #. TRANS: Title for link to notice feed. @@ -5922,13 +5983,14 @@ msgid "" msgstr "" #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. -#: actions/showstream.php:330 +#: actions/showstream.php:342 #, php-format msgid "Repeat of %s" msgstr "" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. -#: actions/silence.php:64 actions/unsilence.php:65 +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. +#: actions/silence.php:64 actions/unsilence.php:64 msgid "You cannot silence users on this site." msgstr "" @@ -6266,67 +6328,81 @@ msgstr "" msgid "No code entered." msgstr "" -#. TRANS: Menu item for site administration -#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelnav.php:142 +#. TRANS: Title for admin panel to configure snapshots. +#: actions/snapshotadminpanel.php:53 +msgctxt "TITLE" msgid "Snapshots" msgstr "" -#: actions/snapshotadminpanel.php:65 +#. TRANS: Instructions for admin panel to configure snapshots. +#: actions/snapshotadminpanel.php:64 msgid "Manage snapshot configuration" msgstr "" -#: actions/snapshotadminpanel.php:127 +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. +#: actions/snapshotadminpanel.php:125 msgid "Invalid snapshot run value." msgstr "" -#: actions/snapshotadminpanel.php:133 +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. +#: actions/snapshotadminpanel.php:132 msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #: actions/snapshotadminpanel.php:144 msgid "Invalid snapshot report URL." msgstr "" -#: actions/snapshotadminpanel.php:200 +#. TRANS: Fieldset legend on admin panel for snapshots. +#: actions/snapshotadminpanel.php:194 +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. +#: actions/snapshotadminpanel.php:199 msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. #: actions/snapshotadminpanel.php:201 msgid "In a scheduled job" msgstr "" -#: actions/snapshotadminpanel.php:206 +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. +#: actions/snapshotadminpanel.php:208 msgid "Data snapshots" msgstr "" -#: actions/snapshotadminpanel.php:208 -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#: actions/snapshotadminpanel.php:211 +msgid "When to send statistical data to status.net servers." msgstr "" -#: actions/snapshotadminpanel.php:217 +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. +#: actions/snapshotadminpanel.php:221 msgid "Frequency" msgstr "" -#: actions/snapshotadminpanel.php:218 -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#: actions/snapshotadminpanel.php:223 +msgid "Snapshots will be sent once every N web hits." msgstr "" -#: actions/snapshotadminpanel.php:226 +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. +#: actions/snapshotadminpanel.php:232 msgid "Report URL" msgstr "" -#: actions/snapshotadminpanel.php:227 -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#: actions/snapshotadminpanel.php:234 +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -#: actions/snapshotadminpanel.php:245 lib/applicationeditform.php:357 -msgid "Save" -msgstr "" - -#: actions/snapshotadminpanel.php:248 -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#: actions/snapshotadminpanel.php:256 +msgid "Save snapshot settings." msgstr "" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -6336,10 +6412,34 @@ 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:141 +#: actions/subedit.php:89 classes/Subscription.php:147 msgid "Could not save subscription." msgstr "" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +#: actions/subqueue.php:62 +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#: actions/subqueue.php:73 +#, php-format +msgid "%s subscribers awaiting approval" +msgstr "" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#: actions/subqueue.php:78 +#, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "" + +#. TRANS: Page notice for group members page. +#: actions/subqueue.php:88 +msgid "A list of users awaiting approval to subscribe to you." +msgstr "" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #: actions/subscribe.php:121 msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -6469,53 +6569,74 @@ msgstr "" msgid "Notices tagged with %1$s, page %2$d" msgstr "" -#: actions/tag.php:91 +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#: actions/tag.php:93 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:97 +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#: actions/tag.php:101 #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "" -#: actions/tag.php:103 +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#: actions/tag.php:109 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" -#: actions/tagother.php:40 +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. +#: actions/tagother.php:42 msgid "No ID argument." msgstr "" -#: actions/tagother.php:66 +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. +#: actions/tagother.php:71 #, php-format msgid "Tag %s" msgstr "" -#: actions/tagother.php:78 +#. TRANS: Header for user details on "tag other users" page. +#: actions/tagother.php:84 msgid "User profile" msgstr "" -#: actions/tagother.php:121 +#. TRANS: Fieldset legend on "tag other users" page. +#: actions/tagother.php:128 msgid "Tag user" msgstr "" -#: actions/tagother.php:131 +#. TRANS: Title for input field for inputting tags on "tag other users" page. +#: actions/tagother.php:140 msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" -#: actions/tagother.php:175 +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. +#: actions/tagother.php:186 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:218 +#. TRANS: Title of "tag other users" page. +#: actions/tagother.php:204 +msgctxt "TITLE" +msgid "Tags" +msgstr "" + +#. TRANS: Page notice on "tag other users" page. +#: actions/tagother.php:232 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. #: actions/tagrss.php:35 msgid "No such tag." msgstr "" @@ -6525,93 +6646,107 @@ msgstr "" msgid "You haven't blocked that user." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #: actions/unsandbox.php:72 msgid "User is not sandboxed." msgstr "" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #: actions/unsilence.php:72 msgid "User is not silenced." msgstr "" -#: actions/unsubscribe.php:77 -msgid "No profile ID in request." -msgstr "" - -#: actions/unsubscribe.php:98 +#. TRANS: Page title for page to unsubscribe. +#: actions/unsubscribe.php:101 msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:64 +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#: actions/updateprofile.php:65 actions/userauthorization.php:342 #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#: actions/urlsettings.php:60 +#. TRANS: Title of URL settings tab in profile settings. +#: actions/urlsettings.php:57 msgid "URL settings" msgstr "" #. TRANS: Instructions for tab "Other" in user profile settings. -#: actions/urlsettings.php:72 +#: actions/urlsettings.php:68 msgid "Manage various other options." msgstr "" #. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a #. TRANS: user's profile settings. This message has one space at the beginning. Use your #. TRANS: language's word separator here if it has one (most likely a single space). -#: actions/urlsettings.php:115 +#: actions/urlsettings.php:110 msgid " (free service)" msgstr "" -#: actions/urlsettings.php:121 +#. TRANS: Default value for URL shortening settings. +#: actions/urlsettings.php:117 msgid "[none]" msgstr "" -#: actions/urlsettings.php:122 +#. TRANS: Default value for URL shortening settings. +#: actions/urlsettings.php:119 msgid "[internal]" msgstr "" #. TRANS: Label for dropdown with URL shortener services. -#: actions/urlsettings.php:130 +#: actions/urlsettings.php:126 msgid "Shorten URLs with" msgstr "" #. TRANS: Tooltip for for dropdown with URL shortener services. -#: actions/urlsettings.php:132 +#: actions/urlsettings.php:128 msgid "Automatic shortening service to use." msgstr "" -#: actions/urlsettings.php:138 +#. TRANS: Field label in URL settings in profile. +#: actions/urlsettings.php:135 msgid "URL longer than" msgstr "" -#: actions/urlsettings.php:141 +#. TRANS: Field title in URL settings in profile. +#: actions/urlsettings.php:139 msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" -#: actions/urlsettings.php:145 +#. TRANS: Field label in URL settings in profile. +#: actions/urlsettings.php:144 msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. #: actions/urlsettings.php:148 msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" #. TRANS: Form validation error for form "Other settings" in user profile. -#: actions/urlsettings.php:180 +#: actions/urlsettings.php:179 msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #: actions/urlsettings.php:187 -msgid "Invalid number for max url length." +msgid "Invalid number for maximum URL length." msgstr "" -#: actions/urlsettings.php:193 -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#: actions/urlsettings.php:194 +msgid "Invalid number for maximum notice length." msgstr "" -#: actions/urlsettings.php:238 +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. +#: actions/urlsettings.php:240 msgid "Error saving user URL shortening preferences." msgstr "" @@ -6644,7 +6779,7 @@ msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" #: actions/useradminpanel.php:215 lib/personalgroupnav.php:79 -#: lib/settingsnav.php:83 lib/subgroupnav.php:79 +#: lib/settingsnav.php:83 msgid "Profile" msgstr "" @@ -6708,7 +6843,7 @@ msgstr "" msgid "Authorize subscription" msgstr "" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #: actions/userauthorization.php:115 msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -6718,7 +6853,9 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #: actions/userauthorization.php:202 lib/approvegroupform.php:116 +#: lib/approvesubform.php:110 msgctxt "BUTTON" msgid "Accept" msgstr "" @@ -6730,7 +6867,9 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #: actions/userauthorization.php:207 lib/approvegroupform.php:118 +#: lib/approvesubform.php:112 msgctxt "BUTTON" msgid "Reject" msgstr "" @@ -6750,10 +6889,11 @@ msgstr "" msgid "Subscription authorized" msgstr "" +#. TRANS: Accept message text from Authorise subscription page. #: actions/userauthorization.php:248 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -6762,10 +6902,11 @@ msgstr "" msgid "Subscription rejected" msgstr "" +#. TRANS: Reject message from Authorise subscription page. #: actions/userauthorization.php:262 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -6797,15 +6938,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#: actions/userauthorization.php:342 -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #: actions/userauthorization.php:352 @@ -7046,6 +7178,20 @@ msgstr[1] "" msgid "Invalid filename." msgstr "" +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#: classes/Group_join_queue.php:66 classes/Group_member.php:86 +#, 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_join_queue.php:79 classes/Group_member.php:99 +#, php-format +msgid "Group ID %s is invalid." +msgstr "" + #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:52 msgid "Group join failed." @@ -7061,20 +7207,6 @@ msgstr "" msgid "Group leave failed." msgstr "" -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#: classes/Group_member.php:86 -#, 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:99 -#, php-format -msgid "Group ID %s is invalid." -msgstr "" - #. TRANS: Activity title. #: classes/Group_member.php:148 lib/joinform.php:114 msgid "Join" @@ -7121,75 +7253,108 @@ msgstr "" #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). -#: classes/Notice.php:99 +#: classes/Notice.php:106 #, php-format msgid "No such profile (%1$d) for notice (%2$d)." msgstr "" #. TRANS: Server exception. %s are the error details. -#: classes/Notice.php:200 +#: classes/Notice.php:207 #, php-format msgid "Database error inserting hashtag: %s" msgstr "" #. TRANS: Client exception thrown if a notice contains too many characters. -#: classes/Notice.php:281 +#: classes/Notice.php:290 msgid "Problem saving notice. Too long." msgstr "" #. TRANS: Client exception thrown when trying to save a notice for an unknown user. -#: classes/Notice.php:286 +#: classes/Notice.php:295 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:292 +#: classes/Notice.php:301 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:299 +#: classes/Notice.php:308 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:307 +#: classes/Notice.php:316 msgid "You are banned from posting notices on this site." msgstr "" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#: classes/Notice.php:355 +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an own notice. +#: classes/Notice.php:360 +msgid "You cannot repeat your own notice." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#: classes/Notice.php:366 +msgid "Cannot repeat a private notice." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#: classes/Notice.php:372 +msgid "Cannot repeat a notice you cannot read." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +#: classes/Notice.php:377 +msgid "You already repeated that notice." +msgstr "" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#: classes/Notice.php:390 +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. -#: classes/Notice.php:380 classes/Notice.php:407 +#: classes/Notice.php:445 classes/Notice.php:472 msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:865 +#: classes/Notice.php:930 msgid "Bad type provided to saveKnownGroups." msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:964 +#: classes/Notice.php:1029 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:1080 +#: classes/Notice.php:1145 #, 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:1544 +#: classes/Notice.php:1618 #, php-format msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #: classes/Profile.php:172 classes/User_group.php:245 #, php-format @@ -7197,21 +7362,16 @@ msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -#: classes/Profile.php:335 -msgid "Invalid group join approval: not pending." -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:793 +#: classes/Profile.php:790 #, 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:802 +#: classes/Profile.php:799 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -7227,66 +7387,67 @@ msgid "Unable to save tag." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:77 lib/oauthstore.php:482 +#: classes/Subscription.php:79 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:82 +#: classes/Subscription.php:84 msgid "Already subscribed!" msgstr "" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. -#: classes/Subscription.php:87 +#: classes/Subscription.php:89 msgid "User has blocked you." msgstr "" #. TRANS: Exception thrown when trying to unsibscribe without a subscription. -#: classes/Subscription.php:176 +#: classes/Subscription.php:182 msgid "Not subscribed!" msgstr "" #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. -#: classes/Subscription.php:183 +#: classes/Subscription.php:189 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:211 +#: classes/Subscription.php:217 msgid "Could not delete subscription OMB token." msgstr "" #. TRANS: Exception thrown when a subscription could not be deleted on the server. -#: classes/Subscription.php:223 +#: classes/Subscription.php:229 msgid "Could not delete subscription." msgstr "" -#. TRANS: Activity tile when subscribing to another person. -#: classes/Subscription.php:265 +#. TRANS: Activity title when subscribing to another person. +#: classes/Subscription.php:271 +msgctxt "TITLE" 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:268 +#: classes/Subscription.php:274 #, php-format msgid "%1$s is now following %2$s." msgstr "" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. -#: classes/User.php:393 +#: classes/User.php:404 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Server exception. -#: classes/User.php:871 +#: classes/User.php:882 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:875 +#: classes/User.php:886 msgid "Single-user mode code called when not enabled." msgstr "" @@ -7333,60 +7494,57 @@ msgstr "" #. TRANS: H2 for user actions in a profile. #. TRANS: H2 for entity actions in a profile. -#: lib/accountprofileblock.php:103 lib/accountprofileblock.php:118 +#: lib/accountprofileblock.php:102 lib/accountprofileblock.php:117 msgid "User actions" msgstr "" #. TRANS: Text shown in user profile of not yet compeltely deleted users. -#: lib/accountprofileblock.php:107 +#: lib/accountprofileblock.php:106 msgid "User deletion in progress..." msgstr "" #. TRANS: Link title for link on user profile. -#: lib/accountprofileblock.php:134 -msgid "Edit profile settings" +#: lib/accountprofileblock.php:133 +msgid "Edit profile settings." msgstr "" #. TRANS: Link text for link on user profile. -#: lib/accountprofileblock.php:136 +#: lib/accountprofileblock.php:135 +msgctxt "BUTTON" msgid "Edit" msgstr "" #. TRANS: Link title for link on user profile. -#: lib/accountprofileblock.php:160 -msgid "Send a direct message to this user" +#: lib/accountprofileblock.php:162 +msgid "Send a direct message to this user." msgstr "" #. TRANS: Link text for link on user profile. -#: lib/accountprofileblock.php:162 +#: lib/accountprofileblock.php:164 +msgctxt "BUTTON" msgid "Message" msgstr "" #. TRANS: Label text on user profile to select a user role. -#: lib/accountprofileblock.php:204 +#: lib/accountprofileblock.php:206 msgid "Moderate" msgstr "" #. TRANS: Label text on user profile to select a user role. -#: lib/accountprofileblock.php:243 +#: lib/accountprofileblock.php:245 msgid "User role" msgstr "" -#. TRANS: Role that can be set for a user profile. -#: lib/accountprofileblock.php:246 -msgctxt "role" -msgid "Administrator" -msgstr "" - #. TRANS: Role that can be set for a user profile. #: lib/accountprofileblock.php:248 msgctxt "role" -msgid "Moderator" +msgid "Administrator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -#: lib/accountprofileblock.php:288 lib/subscribeform.php:139 -msgid "Subscribe" +#. TRANS: Role that can be set for a user profile. +#: lib/accountprofileblock.php:250 +msgctxt "role" +msgid "Moderator" msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. @@ -7426,7 +7584,7 @@ msgstr "" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:986 +#: lib/action.php:992 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -7434,7 +7592,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:989 +#: lib/action.php:995 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -7443,7 +7601,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:996 +#: lib/action.php:1002 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -7453,39 +7611,39 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:1014 +#: lib/action.php:1020 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:1021 +#: lib/action.php:1027 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:1025 +#: lib/action.php:1031 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:1057 +#: lib/action.php:1063 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1400 +#: lib/action.php:1406 msgid "After" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1410 +#: lib/action.php:1416 msgid "Before" msgstr "" @@ -7685,6 +7843,11 @@ msgstr "" msgid "Snapshots configuration" msgstr "" +#. TRANS: Menu item for site administration +#: lib/adminpanelnav.php:142 +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip #: lib/adminpanelnav.php:148 msgid "Set site license" @@ -7864,6 +8027,11 @@ msgstr "" msgid "Cancel" msgstr "" +#. TRANS: Submit button title. +#: lib/applicationeditform.php:357 +msgid "Save" +msgstr "" + #: lib/applicationlist.php:247 msgid " by " msgstr "" @@ -7942,6 +8110,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#: lib/cancelsubscriptionform.php:122 +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "" + #. TRANS: Title for command results. #: lib/channel.php:104 lib/channel.php:125 msgid "Command results" @@ -7969,7 +8143,7 @@ msgstr "" #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:99 lib/command.php:636 +#: lib/command.php:99 lib/command.php:622 msgid "User has no last notice." msgstr "" @@ -8057,7 +8231,7 @@ msgstr "" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a location. -#: lib/command.php:440 lib/mail.php:296 +#: lib/command.php:440 lib/mail.php:339 #, php-format msgid "Location: %s" msgstr "" @@ -8065,7 +8239,7 @@ msgstr "" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a homepage. -#: lib/command.php:444 lib/mail.php:301 +#: lib/command.php:444 lib/mail.php:344 #, php-format msgid "Homepage: %s" msgstr "" @@ -8106,19 +8280,14 @@ msgstr "" #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:559 +#: lib/command.php:546 #, php-format msgid "Notice from %s repeated." msgstr "" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:562 -msgid "Error repeating notice." -msgstr "" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:597 +#: lib/command.php:583 #, php-format msgid "Notice too long - maximum is %1$d character, you sent %2$d." msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d." @@ -8127,100 +8296,100 @@ msgstr[1] "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:610 +#: lib/command.php:596 #, php-format msgid "Reply to %s sent." msgstr "" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:613 +#: lib/command.php:599 msgid "Error saving notice." msgstr "" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:660 +#: lib/command.php:646 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:669 +#: lib/command.php:655 msgid "Can't subscribe to OMB profiles by command." msgstr "" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:677 +#: lib/command.php:663 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:698 lib/command.php:809 +#: lib/command.php:684 lib/command.php:795 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:709 +#: lib/command.php:695 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:729 lib/command.php:755 +#: lib/command.php:715 lib/command.php:741 msgid "Command not yet implemented." msgstr "" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:733 +#: lib/command.php:719 msgid "Notification off." msgstr "" #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:736 +#: lib/command.php:722 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:759 +#: lib/command.php:745 msgid "Notification on." msgstr "" #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:762 +#: lib/command.php:748 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:776 +#: lib/command.php:762 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:789 +#: lib/command.php:775 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:818 +#: lib/command.php:804 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:836 +#: lib/command.php:822 msgid "You are not subscribed to anyone." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:841 +#: lib/command.php:827 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "" @@ -8228,14 +8397,14 @@ msgstr[1] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:863 +#: lib/command.php:849 msgid "No one is subscribed to you." msgstr "" #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:868 +#: lib/command.php:854 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "" @@ -8243,178 +8412,178 @@ msgstr[1] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:890 +#: lib/command.php:876 msgid "You are not a member of any groups." msgstr "" #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:895 +#: lib/command.php:881 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "" msgstr[1] "" #. TRANS: Header line of help text for commands. -#: lib/command.php:909 +#: lib/command.php:895 msgctxt "COMMANDHELP" msgid "Commands:" msgstr "" #. TRANS: Help message for IM/SMS command "on" -#: lib/command.php:911 +#: lib/command.php:897 msgctxt "COMMANDHELP" msgid "turn on notifications" msgstr "" #. TRANS: Help message for IM/SMS command "off" -#: lib/command.php:913 +#: lib/command.php:899 msgctxt "COMMANDHELP" msgid "turn off notifications" msgstr "" #. TRANS: Help message for IM/SMS command "help" -#: lib/command.php:915 +#: lib/command.php:901 msgctxt "COMMANDHELP" msgid "show this help" msgstr "" #. TRANS: Help message for IM/SMS command "follow " -#: lib/command.php:917 +#: lib/command.php:903 msgctxt "COMMANDHELP" msgid "subscribe to user" msgstr "" #. TRANS: Help message for IM/SMS command "groups" -#: lib/command.php:919 +#: lib/command.php:905 msgctxt "COMMANDHELP" msgid "lists the groups you have joined" msgstr "" #. TRANS: Help message for IM/SMS command "subscriptions" -#: lib/command.php:921 +#: lib/command.php:907 msgctxt "COMMANDHELP" msgid "list the people you follow" msgstr "" #. TRANS: Help message for IM/SMS command "subscribers" -#: lib/command.php:923 +#: lib/command.php:909 msgctxt "COMMANDHELP" msgid "list the people that follow you" msgstr "" #. TRANS: Help message for IM/SMS command "leave " -#: lib/command.php:925 +#: lib/command.php:911 msgctxt "COMMANDHELP" msgid "unsubscribe from user" msgstr "" #. TRANS: Help message for IM/SMS command "d " -#: lib/command.php:927 +#: lib/command.php:913 msgctxt "COMMANDHELP" msgid "direct message to user" msgstr "" #. TRANS: Help message for IM/SMS command "get " -#: lib/command.php:929 +#: lib/command.php:915 msgctxt "COMMANDHELP" msgid "get last notice from user" msgstr "" #. TRANS: Help message for IM/SMS command "whois " -#: lib/command.php:931 +#: lib/command.php:917 msgctxt "COMMANDHELP" msgid "get profile info on user" msgstr "" #. TRANS: Help message for IM/SMS command "lose " -#: lib/command.php:933 +#: lib/command.php:919 msgctxt "COMMANDHELP" msgid "force user to stop following you" msgstr "" #. TRANS: Help message for IM/SMS command "fav " -#: lib/command.php:935 +#: lib/command.php:921 msgctxt "COMMANDHELP" msgid "add user's last notice as a 'fave'" msgstr "" #. TRANS: Help message for IM/SMS command "fav #" -#: lib/command.php:937 +#: lib/command.php:923 msgctxt "COMMANDHELP" msgid "add notice with the given id as a 'fave'" msgstr "" #. TRANS: Help message for IM/SMS command "repeat #" -#: lib/command.php:939 +#: lib/command.php:925 msgctxt "COMMANDHELP" msgid "repeat a notice with a given id" msgstr "" #. TRANS: Help message for IM/SMS command "repeat " -#: lib/command.php:941 +#: lib/command.php:927 msgctxt "COMMANDHELP" msgid "repeat the last notice from user" msgstr "" #. TRANS: Help message for IM/SMS command "reply #" -#: lib/command.php:943 +#: lib/command.php:929 msgctxt "COMMANDHELP" msgid "reply to notice with a given id" msgstr "" #. TRANS: Help message for IM/SMS command "reply " -#: lib/command.php:945 +#: lib/command.php:931 msgctxt "COMMANDHELP" msgid "reply to the last notice from user" msgstr "" #. TRANS: Help message for IM/SMS command "join " -#: lib/command.php:947 +#: lib/command.php:933 msgctxt "COMMANDHELP" msgid "join group" msgstr "" #. TRANS: Help message for IM/SMS command "login" -#: lib/command.php:949 +#: lib/command.php:935 msgctxt "COMMANDHELP" msgid "Get a link to login to the web interface" msgstr "" #. TRANS: Help message for IM/SMS command "drop " -#: lib/command.php:951 +#: lib/command.php:937 msgctxt "COMMANDHELP" msgid "leave group" msgstr "" #. TRANS: Help message for IM/SMS command "stats" -#: lib/command.php:953 +#: lib/command.php:939 msgctxt "COMMANDHELP" msgid "get your stats" msgstr "" #. TRANS: Help message for IM/SMS command "stop" #. TRANS: Help message for IM/SMS command "quit" -#: lib/command.php:955 lib/command.php:957 +#: lib/command.php:941 lib/command.php:943 msgctxt "COMMANDHELP" msgid "same as 'off'" msgstr "" #. TRANS: Help message for IM/SMS command "sub " -#: lib/command.php:959 +#: lib/command.php:945 msgctxt "COMMANDHELP" msgid "same as 'follow'" msgstr "" #. TRANS: Help message for IM/SMS command "unsub " -#: lib/command.php:961 +#: lib/command.php:947 msgctxt "COMMANDHELP" msgid "same as 'leave'" msgstr "" #. TRANS: Help message for IM/SMS command "last " -#: lib/command.php:963 +#: lib/command.php:949 msgctxt "COMMANDHELP" msgid "same as 'get'" msgstr "" @@ -8428,15 +8597,15 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all" #. TRANS: Help message for IM/SMS command "tracks" #. TRANS: Help message for IM/SMS command "tracking" -#: lib/command.php:965 lib/command.php:967 lib/command.php:971 -#: lib/command.php:973 lib/command.php:975 lib/command.php:977 -#: lib/command.php:979 lib/command.php:981 lib/command.php:983 +#: lib/command.php:951 lib/command.php:953 lib/command.php:957 +#: lib/command.php:959 lib/command.php:961 lib/command.php:963 +#: lib/command.php:965 lib/command.php:967 lib/command.php:969 msgctxt "COMMANDHELP" msgid "not yet implemented." msgstr "" #. TRANS: Help message for IM/SMS command "nudge " -#: lib/command.php:969 +#: lib/command.php:955 msgctxt "COMMANDHELP" msgid "remind a user to update." msgstr "" @@ -8473,7 +8642,7 @@ msgstr "" #. TRANS: Title of form for deleting a user. #: lib/deletegroupform.php:121 lib/deleteuserform.php:64 -#: lib/noticelistitem.php:583 +#: lib/noticelistitem.php:568 msgid "Delete" msgstr "" @@ -8968,10 +9137,26 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#: lib/mail.php:284 +#, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#: lib/mail.php:291 +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. -#: lib/mail.php:267 +#: lib/mail.php:310 #, php-format msgid "" "Faithfully yours,\n" @@ -8983,21 +9168,21 @@ msgstr "" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#: lib/mail.php:292 +#: lib/mail.php:335 #, php-format msgid "Profile: %s" msgstr "" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. -#: lib/mail.php:306 +#: lib/mail.php:349 #, php-format msgid "Bio: %s" msgstr "" #. TRANS: This is a paragraph in a new-subscriber e-mail. #. TRANS: %s is a URL where the subscriber can be reported as abusive. -#: lib/mail.php:316 +#: lib/mail.php:359 #, php-format msgid "" "If you believe this account is being used abusively, you can block them from " @@ -9006,7 +9191,7 @@ msgstr "" #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. -#: lib/mail.php:344 +#: lib/mail.php:387 #, php-format msgid "New email address for posting to %s" msgstr "" @@ -9014,7 +9199,7 @@ msgstr "" #. TRANS: Body of notification mail for new posting email address. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send #. TRANS: to to post by e-mail, %3$s is a URL to more instructions. -#: lib/mail.php:350 +#: lib/mail.php:393 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -9026,26 +9211,26 @@ msgstr "" #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. -#: lib/mail.php:471 +#: lib/mail.php:514 #, php-format msgid "%s status" msgstr "" #. TRANS: Subject line for SMS-by-email address confirmation message. -#: lib/mail.php:497 +#: lib/mail.php:540 msgid "SMS confirmation" msgstr "" #. TRANS: Main body heading for SMS-by-email address confirmation message. #. TRANS: %s is the addressed user's nickname. -#: lib/mail.php:501 +#: lib/mail.php:544 #, php-format msgid "%s: confirm you own this phone number with this code:" msgstr "" #. TRANS: Subject for 'nudge' notification email. #. TRANS: %s is the nudging user. -#: lib/mail.php:522 +#: lib/mail.php:565 #, php-format msgid "You have been nudged by %s" msgstr "" @@ -9053,7 +9238,7 @@ msgstr "" #. TRANS: Body for 'nudge' notification email. #. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname, #. TRANS: %3$s is a URL to post notices at. -#: lib/mail.php:529 +#: lib/mail.php:572 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -9068,7 +9253,7 @@ msgstr "" #. TRANS: Subject for direct-message notification email. #. TRANS: %s is the sending user's nickname. -#: lib/mail.php:574 +#: lib/mail.php:617 #, php-format msgid "New private message from %s" msgstr "" @@ -9076,7 +9261,7 @@ msgstr "" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#: lib/mail.php:581 +#: lib/mail.php:624 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -9094,7 +9279,7 @@ msgstr "" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. -#: lib/mail.php:631 +#: lib/mail.php:674 #, php-format msgid "%1$s (@%2$s) added your notice as a favorite" msgstr "" @@ -9104,7 +9289,7 @@ msgstr "" #. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text, #. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename, #. TRANS: %7$s is the adding user's nickname. -#: lib/mail.php:638 +#: lib/mail.php:681 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -9123,7 +9308,7 @@ msgid "" msgstr "" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. -#: lib/mail.php:695 +#: lib/mail.php:738 #, php-format msgid "" "The full conversation can be read here:\n" @@ -9133,7 +9318,7 @@ msgstr "" #. TRANS: E-mail subject for notice notification. #. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname. -#: lib/mail.php:703 +#: lib/mail.php:746 #, php-format msgid "%1$s (@%2$s) sent a notice to your attention" msgstr "" @@ -9143,7 +9328,7 @@ msgstr "" #. TRANS: %3$s is a URL to the notice, %4$s is the notice text, #. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty), #. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user, -#: lib/mail.php:710 +#: lib/mail.php:753 #, php-format msgid "" "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -9171,14 +9356,14 @@ msgstr "" #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. #. TRANS: %5$s is a link to the addressed user's e-mail settings. -#: lib/mail.php:781 lib/mail.php:791 +#: lib/mail.php:824 lib/mail.php:834 #, php-format msgid "%1$s has joined your group %2$s on %3$s." msgstr "" #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. -#: lib/mail.php:828 +#: lib/mail.php:871 #, php-format msgid "%1$s wants to join your group %2$s on %3$s." msgstr "" @@ -9186,7 +9371,7 @@ msgstr "" #. TRANS: Main body of pending group join request notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is the URL to the moderation queue page. -#: lib/mail.php:836 +#: lib/mail.php:879 #, php-format msgid "" "%1$s would like to join your group %2$s on %3$s. You may approve or reject " @@ -9323,7 +9508,7 @@ msgstr "" msgid "Messages" msgstr "" -#: lib/messagelistitem.php:123 lib/noticelistitem.php:432 +#: lib/messagelistitem.php:123 lib/noticelistitem.php:421 msgid "from" msgstr "" @@ -9357,98 +9542,99 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Form legend for notice form. -#: lib/noticeform.php:157 +#: lib/noticeform.php:194 msgid "Send a notice" msgstr "" #. TRANS: Title for notice label. %s is the user's nickname. -#: lib/noticeform.php:171 +#: lib/noticeform.php:208 #, php-format msgid "What's up, %s?" msgstr "" #. TRANS: Input label in notice form for adding an attachment. -#: lib/noticeform.php:191 +#: lib/noticeform.php:228 msgid "Attach" msgstr "" #. TRANS: Title for input field to attach a file to a notice. -#: lib/noticeform.php:196 +#: lib/noticeform.php:233 msgid "Attach a file." msgstr "" #. TRANS: Field label to add location to a notice. -#: lib/noticeform.php:225 +#: lib/noticeform.php:270 msgid "Share my location" msgstr "" #. TRANS: Text to not share location for a notice in notice form. -#: lib/noticeform.php:230 +#: lib/noticeform.php:275 msgid "Do not share my location" msgstr "" #. TRANS: Timeout error text for location retrieval in notice form. -#: lib/noticeform.php:232 +#: lib/noticeform.php:277 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" #. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelistitem.php:362 +#: lib/noticelistitem.php:352 msgid "N" msgstr "" #. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelistitem.php:364 +#: lib/noticelistitem.php:354 msgid "S" msgstr "" #. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelistitem.php:366 +#: lib/noticelistitem.php:356 msgid "E" msgstr "" #. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelistitem.php:368 +#: lib/noticelistitem.php:358 msgid "W" msgstr "" -#: lib/noticelistitem.php:370 +#: lib/noticelistitem.php:360 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelistitem.php:379 +#: lib/noticelistitem.php:369 msgid "at" msgstr "" -#: lib/noticelistitem.php:428 +#: lib/noticelistitem.php:417 msgid "web" msgstr "" -#: lib/noticelistitem.php:494 +#: lib/noticelistitem.php:482 msgid "in context" msgstr "" -#: lib/noticelistitem.php:529 +#: lib/noticelistitem.php:516 msgid "Repeated by" msgstr "" -#: lib/noticelistitem.php:556 +#: lib/noticelistitem.php:542 msgid "Reply to this notice" msgstr "" -#: lib/noticelistitem.php:557 +#: lib/noticelistitem.php:543 msgid "Reply" msgstr "" -#: lib/noticelistitem.php:583 +#: lib/noticelistitem.php:568 msgid "Delete this notice" msgstr "" -#: lib/noticelistitem.php:601 -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#: lib/noticelistitem.php:589 +msgid "Notice repeated." msgstr "" #: lib/noticeplaceholderform.php:54 @@ -9562,7 +9748,7 @@ msgstr "" #. TRANS: H2 text for user subscription statistics. #. TRANS: Label for user statistics. -#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:86 +#: lib/profileaction.php:127 lib/profileaction.php:225 msgid "Subscriptions" msgstr "" @@ -9573,7 +9759,7 @@ msgstr "" #. TRANS: H2 text for user subscriber statistics. #. TRANS: Label for user statistics. -#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:94 +#: lib/profileaction.php:164 lib/profileaction.php:232 msgid "Subscribers" msgstr "" @@ -9595,7 +9781,7 @@ msgstr "" #. TRANS: Label for user statistics. #. TRANS: H2 text for user group membership statistics. #: lib/profileaction.php:239 lib/profileaction.php:290 -#: lib/publicgroupnav.php:67 lib/searchgroupnav.php:80 lib/subgroupnav.php:102 +#: lib/publicgroupnav.php:67 lib/searchgroupnav.php:80 msgid "Groups" msgstr "" @@ -9653,7 +9839,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:1008 +#: lib/router.php:1016 msgid "Page not found." msgstr "" @@ -9804,34 +9990,85 @@ msgstr "" msgid "Silence this user" msgstr "" -#: lib/subgroupnav.php:87 -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#: lib/subgroupnav.php:77 +msgctxt "MENU" +msgid "Profile" msgstr "" -#: lib/subgroupnav.php:95 -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#: lib/subgroupnav.php:85 +msgctxt "MENU" +msgid "Subscriptions" msgstr "" -#: lib/subgroupnav.php:103 +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#: lib/subgroupnav.php:88 #, php-format -msgid "Groups %s is a member of" +msgid "People %s subscribes to." msgstr "" -#: lib/subgroupnav.php:109 +#. TRANS: Menu item in local navigation menu. +#: lib/subgroupnav.php:96 +msgctxt "MENU" +msgid "Subscribers" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#: lib/subgroupnav.php:99 +#, php-format +msgid "People subscribed to %s." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#: lib/subgroupnav.php:111 +#, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#: lib/subgroupnav.php:113 +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#: lib/subgroupnav.php:123 +msgctxt "MENU" +msgid "Groups" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#: lib/subgroupnav.php:126 +#, php-format +msgid "Groups %s is a member of." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#: lib/subgroupnav.php:133 +msgctxt "MENU" msgid "Invite" msgstr "" -#: lib/subgroupnav.php:110 +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#: lib/subgroupnav.php:136 #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Invite friends and colleagues to join you on %s." msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 msgid "Subscribe to this user" msgstr "" +#: lib/subscribeform.php:139 +msgid "Subscribe" +msgstr "" + #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" @@ -9967,6 +10204,31 @@ msgstr[1] "" msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +#: lib/toselector.php:87 +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#: lib/toselector.php:93 +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#: lib/toselector.php:115 +msgctxt "LABEL" +msgid "To:" +msgstr "" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#: lib/toselector.php:157 +#, php-format +msgid "Unknown to value: \"%s\"." +msgstr "" + #. TRANS: Title for the form to unblock a user. #: lib/unblockform.php:67 msgctxt "TITLE" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 160afc31f2..e9513eed77 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:39+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -79,7 +79,9 @@ msgstr "Spara inställningar för åtkomst" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +93,7 @@ msgstr "Spara" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Ingen sådan sida" @@ -841,16 +844,6 @@ msgstr "Du kan inte ta bort en annan användares status." msgid "No such notice." msgstr "Ingen sådan notis." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Kan inte upprepa din egen notis." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Redan upprepat denna notis." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -992,6 +985,8 @@ msgstr "Notiser taggade med %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Uppdateringar taggade med %1$s på %2$s!" @@ -1106,11 +1101,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Saknar profil." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1118,10 +1115,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "En lista av användarna i denna grupp." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1146,6 +1145,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "En lista av användarna i denna grupp." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$ss status den %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Prenumeration godkänd" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Bekräftelse för snabbmeddelanden avbruten." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1187,7 +1214,7 @@ msgstr "Lägg till i favoriter" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s gruppmedlemmar" #. TRANS: Subtitle for group membership feed. @@ -1201,8 +1228,7 @@ msgstr "Grupper %s är en medlem i" msgid "Cannot add someone else's membership." msgstr "Kunde inte infoga ny prenumeration." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Hitta innehåll i notiser" @@ -1516,6 +1542,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s lämnade grupp %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Inte inloggad." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "Ingen profil-ID i begäran." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Ingen profil med det ID:t." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Prenumeration avslutad" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Ingen bekräftelsekod." @@ -1727,24 +1796,6 @@ msgstr "Ta inte bort denna grupp" msgid "Delete this group." msgstr "Ta bort denna grupp" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Inte inloggad." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2433,14 +2484,6 @@ msgstr "Användaren har redan denna roll." msgid "No profile specified." msgstr "Ingen profil angiven." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Ingen profil med det ID:t." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3071,6 +3114,7 @@ msgid "License selection" msgstr "" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Privat" @@ -3822,6 +3866,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Aldrig" @@ -3979,17 +4024,22 @@ msgstr "URL till din hemsida, blogg eller profil på en annan webbplats." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Beskriv dig själv och dina intressen med högst 140 tecken" msgstr[1] "Beskriv dig själv och dina intressen med högst 140 tecken" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "Beskriv dig själv och dina intressen" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -4002,7 +4052,9 @@ msgid "Location" msgstr "Plats" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Var du håller till, såsom \"Stad, Län, Land\"" #. TRANS: Checkbox label in form for profile settings. @@ -4010,6 +4062,7 @@ msgid "Share my current location when posting notices" msgstr "Dela min nuvarande plats när jag skickar notiser" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Taggar" @@ -4047,6 +4100,27 @@ msgstr "" "Prenumerera automatiskt på den som prenumererar på mig (bäst för icke-" "människa) " +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Prenumerationer" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4079,7 +4153,7 @@ msgstr "Ogiltig tagg: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Kunde inte uppdatera användaren för automatisk prenumeration." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4088,6 +4162,7 @@ msgid "Could not save location prefs." msgstr "Kunde inte spara platsinställningar." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Kunde inte spara taggar." @@ -4441,26 +4516,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "Längre namn, förslagsvis ditt \"verkliga\" namn" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Beskriv dig själv och dina intressen med högst 140 tecken" -msgstr[1] "Beskriv dig själv och dina intressen med högst 140 tecken" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Beskriv dig själv och dina intressen" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Var du håller till, såsom \"Stad, Län, Land\"" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4581,6 +4637,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL till din profil på en annan kompatibel mikrobloggtjänst" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4617,16 +4674,8 @@ msgstr "Bara inloggade användaren kan upprepa notiser." msgid "No notice specified." msgstr "Ingen notis angiven." -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Du kan inte upprepa din egna notis." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Du har redan upprepat denna notis." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Upprepad" @@ -4791,6 +4840,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Du kan inte flytta användare till sandlådan på denna webbplats." @@ -5070,6 +5120,11 @@ msgstr "Meddelande till %1$s på %2$s" msgid "Message from %1$s on %2$s" msgstr "Meddelande från %1$s på %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM är inte tillgänglig." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Notis borttagen." @@ -5077,20 +5132,20 @@ msgstr "Notis borttagen." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s taggade %2$d" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s taggade %2$s, sida %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, sida %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Notiser taggade med %1$s, sida %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5177,6 +5232,7 @@ msgid "Repeat of %s" msgstr "Upprepning av %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Du kan inte tysta ned användare på denna webbplats." @@ -5476,51 +5532,72 @@ msgstr "" msgid "No code entered." msgstr "Ingen kod ifylld" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Ögonblicksbilder" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Hantera konfiguration för ögonblicksbild" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Ogiltigt körvärde för ögonblicksbild." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Frekvens för ögonblicksbilder måste vara ett nummer." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Ogiltig rapport-URL för ögonblicksbild" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Ögonblicksbilder" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Slumpmässigt vid webbförfrågningar" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "I ett schemalagt jobb" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Ögonblicksbild av data" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "När statistikdata skall skickas till status.net-servrar" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frekvens" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Ögonblicksbild kommer skickas var N:te webbträff" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL för rapport" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Ögonblicksbild kommer skickat till denna URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Spara" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Spara inställningar för ögonblicksbild" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5532,6 +5609,27 @@ msgstr "Du är inte prenumerat hos den profilen." msgid "Could not save subscription." msgstr "Kunde inte spara prenumeration." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s gruppmedlemmar" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%1$s gruppmedlemmar, sida %2$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "En lista av användarna i denna grupp." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Du kan inte prenumerera på en 0MB 0.1-fjärrprofil med denna åtgärd." @@ -5654,31 +5752,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "Notiser taggade med %1$s, sida %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Flöde av notiser för tagg %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Flöde av notiser för tagg %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Flöde av notiser för tagg %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Inget ID-argument." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Tagg %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Användarprofil" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Tagga användare" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5687,16 +5797,25 @@ msgstr "" "Taggar för denna användare (bokstäver, nummer, -, ., och _), separerade med " "kommatecken eller mellanslag" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Du kan bara tagga personer du prenumererar på eller som prenumererar på dig." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Taggar" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Använd detta formulär för att lägga till taggar till dina prenumeranter " "eller prenumerationer." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Ingen sådan tagg." @@ -5704,25 +5823,31 @@ msgstr "Ingen sådan tagg." msgid "You haven't blocked that user." msgstr "Du har inte blockerat denna användared." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Användare är inte flyttad till sandlådan." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Användare är inte nedtystad." -msgid "No profile ID in request." -msgstr "Ingen profil-ID i begäran." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Prenumeration avslutad" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" "Licensen för lyssnarströmmen '%1$s' är inte förenlig med webbplatslicensen '%" "2$s'." +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Inställningar för snabbmeddelanden" @@ -5737,10 +5862,12 @@ msgstr "Hantera diverse andra alternativ." msgid " (free service)" msgstr " (fri tjänst)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "Ingen" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5752,15 +5879,19 @@ msgstr "Förkorta URL:er med" msgid "Automatic shortening service to use." msgstr "Automatiska förkortningstjänster att använda." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5770,13 +5901,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Namnet på URL-förkortningstjänsen är för långt (max 50 tecken)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Ogiltigt notisinnehåll." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Ogiltigt notisinnehåll." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5859,7 +5994,7 @@ msgstr "Spara webbplatsinställningar" msgid "Authorize subscription" msgstr "Godkänn prenumeration" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5872,6 +6007,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5884,6 +6020,7 @@ msgstr "Prenumerera på denna användare" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5902,9 +6039,11 @@ msgstr "Ingen begäran om godkännande!" msgid "Subscription authorized" msgstr "Prenumeration godkänd" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Prenumerationen har godkänts, men ingen anrops-URL har gått igenom. Kolla " @@ -5915,9 +6054,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Prenumeration avvisad" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Prenumerationen har blivit avvisad, men ingen URL har gått igenom. Kolla med " @@ -5948,16 +6089,6 @@ msgstr "Lyssnar-URI '%s' är en lokal användare." msgid "Profile URL \"%s\" is for a local user." msgstr "Profil-URL ‘%s’ är för en lokal användare." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" -"Licensen för lyssnarströmmen '%1$s' är inte förenlig med webbplatslicensen '%" -"2$s'." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6188,18 +6319,6 @@ msgstr[1] "" msgid "Invalid filename." msgstr "Ogiltigt filnamn." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Gruppanslutning misslyckades." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Inte med i grupp." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Grupputträde misslyckades." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6212,6 +6331,18 @@ msgstr "" msgid "Group ID %s is invalid." msgstr "Fel vid sparande av användare; ogiltig." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Gruppanslutning misslyckades." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Inte med i grupp." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Grupputträde misslyckades." + #. TRANS: Activity title. msgid "Join" msgstr "Gå med" @@ -6286,6 +6417,36 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Du är utestängd från att posta notiser på denna webbplats." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Kan inte upprepa din egen notis." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Du kan inte upprepa din egna notis." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Kan inte upprepa din egen notis." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Kan inte upprepa din egen notis." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Du har redan upprepat denna notis." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Användare har ingen sista notis." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6312,16 +6473,13 @@ msgstr "Kunde inte spara lokal gruppinformation." msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6370,7 +6528,9 @@ msgstr "Kunde inte spara prenumeration." msgid "Could not delete subscription." msgstr "Kunde inte spara prenumeration." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Följ" @@ -6438,18 +6598,24 @@ msgid "User deletion in progress..." msgstr "Borttagning av användare pågår..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Redigera profilinställningar" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Redigera" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Skicka ett direktmeddelande till denna användare" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Meddelande" @@ -6471,10 +6637,6 @@ msgctxt "role" msgid "Moderator" msgstr "Moderator" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Prenumerera" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6729,6 +6891,10 @@ msgstr "Webbplatsnotis" msgid "Snapshots configuration" msgstr "Konfiguration av ögonblicksbilder" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Ögonblicksbilder" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Ange webbplatslicens" @@ -6880,6 +7046,10 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Spara" + msgid " by " msgstr "" @@ -6944,6 +7114,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Alla prenumerationer" + #. TRANS: Title for command results. msgid "Command results" msgstr "Resultat av kommando" @@ -7093,10 +7269,6 @@ msgstr "Fel vid sändning av direktmeddelande." msgid "Notice from %s repeated." msgstr "Notis från %s upprepad." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Fel vid upprepning av notis." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7847,6 +8019,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lyssnar nu på dina notiser på %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s lyssnar nu på dina notiser på %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8354,7 +8540,9 @@ msgstr "Svara" msgid "Delete this notice" msgstr "Ta bort denna notis" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Notis upprepad" msgid "Update your status..." @@ -8635,28 +8823,77 @@ msgstr "Tysta ned" msgid "Silence this user" msgstr "Tysta ned denna användare" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Prenumerationer" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "Personer %s prenumererar på" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Prenumeranter" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Personer som prenumererar på %s" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupper" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Grupper %s är en medlem i" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Bjud in" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Bjud in vänner och kollegor att gå med dig på %s" msgid "Subscribe to this user" msgstr "Prenumerera på denna användare" +msgid "Subscribe" +msgstr "Prenumerera" + msgid "People Tagcloud as self-tagged" msgstr "Taggmoln för person, såsom taggat själv" @@ -8772,6 +9009,28 @@ msgstr[1] "Redan upprepat denna notis." msgid "Top posters" msgstr "Toppostare" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "Till" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Okänt språk \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8889,5 +9148,29 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Redan upprepat denna notis." + +#, fuzzy +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Beskriv dig själv och dina intressen med högst 140 tecken" +#~ msgstr[1] "Beskriv dig själv och dina intressen med högst 140 tecken" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Beskriv dig själv och dina intressen" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Var du håller till, såsom \"Stad, Län, Land\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, sida %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "" +#~ "Licensen för lyssnarströmmen '%1$s' är inte förenlig med " +#~ "webbplatslicensen '%2$s'." + +#~ msgid "Error repeating notice." +#~ msgstr "Fel vid upprepning av notis." diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 27e429ef8f..1c6cae8252 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:40+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -75,7 +75,9 @@ msgstr "అందుబాటు అమరికలను భద్రపరచ #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -87,6 +89,7 @@ msgstr "భద్రపరచు" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "అటువంటి పేజీ లేదు." @@ -822,16 +825,6 @@ msgstr "ఇతర వాడుకరుల స్థితిని మీరు msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -876,11 +869,11 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#, fuzzy, php-format +#, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." -msgstr[0] "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు." -msgstr[1] "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు." +msgstr[0] "%d అక్షరం" +msgstr[1] "%d అక్షరాలు" #. TRANS: Client error displayed when replying to a non-existing notice. #, fuzzy @@ -889,11 +882,11 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. -#, fuzzy, php-format +#, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." -msgstr[0] "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." -msgstr[1] "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." +msgstr[0] "%d అక్షరం" +msgstr[1] "%d అక్షరాలు" #. TRANS: Client error displayed when requesting profiles of followers in an unsupported format. #. TRANS: Client error displayed when requesting IDs of followers in an unsupported format. @@ -972,6 +965,8 @@ msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నో #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" @@ -1084,14 +1079,16 @@ msgstr "లోనికి ప్రవేశించలేదు." #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." -msgstr "" +msgstr "చేరవచ్చిన అభ్యర్థనలను గుంపు నిర్వాహకులు మాత్రమే అంగీరించగలరు లేదా తిరస్కరించగలరు." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1099,10 +1096,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "ఈ గుంపులో వాడుకరులు జాబితా." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1127,6 +1126,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "ఈ గుంపులో వాడుకరులు జాబితా." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%2$sలో %1$s యొక్క స్థితి" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "చందాని అధీకరించారు" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "అధీకరణ రద్దయింది." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1167,8 +1194,8 @@ msgstr "అది ఇప్పటికే ఇష్టాంశం." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s గుంపు సభ్యత్వాలు" #. TRANS: Subtitle for group membership feed. @@ -1182,8 +1209,7 @@ msgstr "%2$sలో %1$s సభ్యులుగా ఉన్న గుంపు msgid "Cannot add someone else's membership." msgstr "కొత్త చందాని చేర్చలేకపోయాం." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "సైటు గమనికని భద్రపరచు" @@ -1230,9 +1256,8 @@ msgid "Profile %1$d not subscribed to profile %2$d." msgstr "మీరు ఎవరికీ చందాచేరలేదు." #. TRANS: Client exception thrown when trying to delete a subscription of another user. -#, fuzzy msgid "Cannot delete someone else's subscription." -msgstr "కొత్త చందాని చేర్చలేకపోయాం." +msgstr "మరొకరి చందాలని తొలగించలేరు." #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. @@ -1494,6 +1519,50 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "లోనికి ప్రవేశించలేదు." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "అధీకరణ అభ్యర్థన లేదు!" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "ఆ IDతో ఏ ప్రొఫైలూ కనబడలేదు." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "చందామాను" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "నిర్ధారణ సంకేతం లేదు." @@ -1569,7 +1638,7 @@ msgstr "మీ ఖాతాని మీరు తొలగించుకోల #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." -msgstr "" +msgstr "నిశ్చయమే." #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. @@ -1590,7 +1659,7 @@ msgstr "ఖాతా తొలగింపు" msgid "" "This will permanently delete your account data from this " "server." -msgstr "" +msgstr "ఇది మీ ఖాతా భోగట్టాను ఈ సేవిక నుండి శాశ్వతంగా తొలగిస్తుంది." #. TRANS: Additional form text for user deletion form shown if a user has account backup rights. #. TRANS: %s is a URL to the backup page. @@ -1607,9 +1676,9 @@ msgstr "నిర్థారించు" #. TRANS: Input title for the delete account field. #. TRANS: %s is the text that needs to be input. -#, fuzzy, php-format +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "మీరు వాడుకరులని తొలగించలేరు." +msgstr "మీ ఖాతాను తొలగించుకోవాలనుకుంటున్నారని నిర్ధారించేందుకు \"%s\" అని టైపుచెయ్యండి." #. TRANS: Button title for user account deletion. msgid "Permanently delete your account" @@ -1681,14 +1750,14 @@ msgid "Delete group" msgstr "గుంపు తొలగింపు" #. TRANS: Warning in form for deleleting a group. -#, fuzzy msgid "" "Are you sure you want to delete this group? This will clear all data about " "the group from the database, without a backup. Public posts to this group " "will still appear in individual timelines." msgstr "" -"మీరు నిజంగానే ఈ వాడుకరిని తొలగించాలనుకుంటున్నారా? ఇది ఆ వాడుకరి భోగట్టాని డాటాబేసు నుండి తొలగిస్తుంది, " -"వెనక్కి తేలేకుండా." +"మీరు నిజంగానే ఈ గుంపును తొలగించాలనుకుంటున్నారా? ఇది ఆ గుంపు గురించి ఉన్న భోగట్టాను మొత్తం డాటాబేసు " +"నుండి తొలగిస్తుంది, వెనక్కి తేలేకుండా. ఈ గుంపుకి పంపించిన బహిరంగ టపాలు మాత్రం ఆయా వ్యక్తుల కాలరేఖల్లో " +"కనిపిస్తాయి." #. TRANS: Submit button title for 'No' when deleting a group. msgid "Do not delete this group." @@ -1698,24 +1767,6 @@ msgstr "ఈ గుంపును తొలగించవద్దు." msgid "Delete this group." msgstr "ఈ గుంపుని తొలగించు." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "లోనికి ప్రవేశించలేదు." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2267,7 +2318,7 @@ msgstr "ప్రస్తుతం ఈ సైటులో అత్యంత #. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices. msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" +msgstr "ప్రజలు ఇష్టపడ్డ నోటీసులు ఇక్కడ కనిపిస్తాయి కానీ ఎవరూ ఇంకా నోటీసులని ఇష్టపడలేదు." #. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users. msgid "" @@ -2277,11 +2328,13 @@ msgstr "" #. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users. #. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting. -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" -msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!" +msgstr "" +"[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మొదటగా నోటీసులని ఇష్టపడ్డవారు మీరే ఎందుకు " +"కాకూడదు!" #. TRANS: Title of RSS feed with favourite notices of a user. #. TRANS: %s is a user's nickname. @@ -2309,9 +2362,9 @@ msgid "Featured users, page %d" msgstr "విశేష వాడుకరులు, పేజీ %d" #. TRANS: Description on page displaying featured users. -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s." -msgstr "%sలో కొందరు గొప్ప వాడుకరుల యొక్క ఎంపిక" +msgstr "%s లోని కొందరు గొప్ప వాడుకరులు" #. TRANS: Client error displayed when no notice ID was given trying do display a file. msgid "No notice ID." @@ -2399,15 +2452,6 @@ msgstr "వాడుకరికి ఇప్పటికే ఈ పాత్ర msgid "No profile specified." msgstr "గుంపు ఏమీ పేర్కొనలేదు." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -#, fuzzy -msgid "No profile with that ID." -msgstr "ఆ IDతో ఏ నోటీసూ కనబడలేదు." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2810,11 +2854,10 @@ msgstr "కొత్త వాడుకరులని ఆహ్వానిం #. TRANS: is already subscribed to one or more users with the given e-mail address(es). #. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses. #. TRANS: Followed by a bullet list. -#, fuzzy msgid "You are already subscribed to this user:" msgid_plural "You are already subscribed to these users:" -msgstr[0] "మీరు ఇప్పటికే ఈ వాడుకరులకు చందాచేరి ఉన్నారు:" -msgstr[1] "మీరు ఇప్పటికే ఈ వాడుకరులకు చందాచేరి ఉన్నారు:" +msgstr[0] "వాడుకరుకి" +msgstr[1] "వాడుకరులకు" #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). #. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address). @@ -2826,12 +2869,11 @@ msgstr "%1$s (%2$s)" #. TRANS: Message displayed inviting users to use a StatusNet site while the invited user #. TRANS: already uses a this StatusNet site. Plural form is based on the number of #. TRANS: reported already present people. Followed by a bullet list. -#, fuzzy msgid "This person is already a user and you were automatically subscribed:" msgid_plural "" "These people are already users and you were automatically subscribed to them:" -msgstr[0] "ఈ వ్యక్తులు ఇప్పటికే ఇక్కడ వాడుకరులు మరియు మిమ్మల్ని వారికి చందాదార్లుగా చేర్చేసాం:" -msgstr[1] "ఈ వ్యక్తులు ఇప్పటికే ఇక్కడ వాడుకరులు మరియు మిమ్మల్ని వారికి చందాదార్లుగా చేర్చేసాం:" +msgstr[0] "వ్యక్తి ఇప్పటికే ఒక వాడుకరి" +msgstr[1] "వ్యక్తులు ఇప్పటికే వాడుకరులు" #. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is #. TRANS: based on the number of invitations sent. Followed by a bullet list of @@ -2968,7 +3010,7 @@ msgstr "లైసెన్సు" #. TRANS: Form instructions for the site license admin panel. msgid "License for this StatusNet site" -msgstr "" +msgstr "ఈ స్టేటస్‌నెట్ సైటుకి లైసెన్సు" #. TRANS: Client error displayed selecting an invalid license in the license admin panel. msgid "Invalid license selection." @@ -2981,9 +3023,8 @@ msgid "" msgstr "" #. TRANS: Client error displayed selecting a too long license title in the license admin panel. -#, fuzzy msgid "Invalid license title. Maximum length is 255 characters." -msgstr "చెల్లని స్వాగత పాఠ్యం. గరిష్ఠ పొడవు 255 అక్షరాలు." +msgstr "లైసెన్సు శీర్షిక చెల్లదు. గరిష్ఠ పొడవు 255 అక్షరాలు." #. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "Invalid license URL." @@ -3006,6 +3047,7 @@ msgid "License selection" msgstr "లైసెన్సు ఎంపిక" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "అంతరంగికం" @@ -3039,7 +3081,7 @@ msgstr "ఈ సైటులోని సమాచారానికి యజమ #. TRANS: Field label in the license admin panel. msgid "License Title" -msgstr "" +msgstr "లైసెన్సు శీర్షిక" #. TRANS: Field title in the license admin panel. msgid "The title of the license." @@ -3369,15 +3411,15 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when path not found. #. TRANS: %s is a path. -#, fuzzy, php-format +#, php-format msgid "\"%s\" not found." -msgstr "వాడుకరి దొరకలేదు." +msgstr "\"%s\" దొరకలేదు." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. -#, fuzzy, php-format +#, php-format msgid "Notice %s not found." -msgstr "నిర్ధారణ సంకేతం కనబడలేదు." +msgstr "%s అనే నోటీసు దొరకలేదు." #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. @@ -3393,9 +3435,9 @@ msgstr "%2$sలో %1$s యొక్క స్థితి" #. TRANS: Server error displayed in oEmbed action when attachment not found. #. TRANS: %d is an attachment ID. -#, fuzzy, php-format +#, php-format msgid "Attachment %s not found." -msgstr "అందుకోవాల్సిన వాడుకరి కనబడలేదు." +msgstr "%s జోడింపు కనబడలేదు." #. TRANS: Server error displayed in oEmbed request when a path is not supported. #. TRANS: %s is a path. @@ -3741,6 +3783,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "సేవకి" @@ -3798,7 +3841,7 @@ msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నో #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" msgid "Disabled" -msgstr "" +msgstr "అచేతనమయ్యింది" #. TRANS: Client error displayed when trying to use another method than POST. #. TRANS: Do not translate POST. @@ -3818,10 +3861,9 @@ msgstr "అటువంటి ప్లగిన్ లేదు." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" msgid "Enabled" -msgstr "" +msgstr "చేతనమైంది" #. TRANS: Tab and title for plugins admin panel. -#, fuzzy msgctxt "TITLE" msgid "Plugins" msgstr "ప్లగిన్లు" @@ -3834,9 +3876,8 @@ msgid "" msgstr "" #. TRANS: Admin form section header -#, fuzzy msgid "Default plugins" -msgstr "అప్రమేయ భాష" +msgstr "అప్రమేయ ప్లగిన్లు" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" @@ -3871,9 +3912,8 @@ msgstr "ప్రొఫైలు సమాచారం" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. #. TRANS: Field title on group edit form. -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" +msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప." #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. @@ -3897,17 +3937,21 @@ msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వ #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" -msgstr[1] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "%d అక్షరంలో" +msgstr[1] "%d అక్షరాల్లో" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3920,14 +3964,16 @@ msgid "Location" msgstr "ప్రాంతం" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "మీరు ఎక్కడివారు, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "ట్యాగులు" @@ -3959,6 +4005,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ." +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "చందాలు" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3990,7 +4057,7 @@ msgstr "చెల్లని ట్యాగు: \"%s\"" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3999,6 +4066,7 @@ msgid "Could not save location prefs." msgstr "ట్యాగులని భద్రపరచలేకున్నాం." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." @@ -4330,33 +4398,14 @@ msgid "Email" msgstr "ఈమెయిల్" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Used only for updates, announcements, and password recovery." msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." #. TRANS: Field title on account registration page. -#, fuzzy msgid "Longer name, preferably your \"real\" name." -msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది" +msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" -msgstr[1] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" - -#. TRANS: Text area title on account registration page. -msgid "Describe yourself and your interests." -msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి." - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "మీరు ఎక్కడివారు, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"." - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "నమోదు" @@ -4471,6 +4520,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. msgctxt "BUTTON" msgid "Subscribe" msgstr "చందాచేరండి" @@ -4485,7 +4535,6 @@ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." msgstr "" #. TRANS: Form validation error on page for remote subscribe. -#, fuzzy msgid "That is a local profile! Login to subscribe." msgstr "అది స్థానిక ప్రొఫైలు! చందాచేరడానికి ప్రవేశించండి." @@ -4503,15 +4552,8 @@ msgstr "కేవలం ప్రవేశించిన వాడుకరు msgid "No notice specified." msgstr "గుంపు ఏమీ పేర్కొనలేదు." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "పునరావృతం" @@ -4632,9 +4674,8 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. -#, fuzzy msgid "Not an Atom feed." -msgstr "అందరు సభ్యులూ" +msgstr "అది ఆటమ్ ఫీడు కాదు." #. TRANS: Success message when a feed has been restored. msgid "" @@ -4671,6 +4712,7 @@ msgid "StatusNet" msgstr "స్టేటస్‌నెట్" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు." @@ -4742,7 +4784,6 @@ msgid "Application actions" msgstr "ఉపకరణ చర్యలు" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "మార్చు" @@ -4875,7 +4916,6 @@ msgid "Statistics" msgstr "గణాంకాలు" #. TRANS: Label for group creation date. -#, fuzzy msgctxt "LABEL" msgid "Created" msgstr "సృష్టితం" @@ -4946,6 +4986,11 @@ msgstr "%2$sలో %1$sకి స్పందనలు!" msgid "Message from %1$s on %2$s" msgstr "%2$sలో %1$sకి స్పందనలు!" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM అందుబాటులో లేదు." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "నోటీసుని తొలగించాం." @@ -4953,20 +4998,20 @@ msgstr "నోటీసుని తొలగించాం." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s, %2$dవ పేజీ" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, %2$dవ పేజీ" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5052,6 +5097,7 @@ msgid "Repeat of %s" msgstr "%s యొక్క పునరావృతం" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. #, fuzzy msgid "You cannot silence users on this site." msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు." @@ -5094,19 +5140,16 @@ msgid "Dupe limit must be one or more seconds." msgstr "" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" -msgstr "సాధారణ" +msgstr "సాధారణం" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "సైటు పేరు" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." msgstr "మీ సైటు యొక్క పేరు, ఇలా \"మీకంపెనీ మైక్రోబ్లాగు\"" @@ -5136,10 +5179,9 @@ msgid "Contact email address for your site." msgstr "మీ సైటుకి సంప్రదింపుల ఈమెయిల్ చిరునామా" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" -msgstr "స్థానిక" +msgstr "స్థానికం" #. TRANS: Dropdown label on site settings panel. msgid "Default timezone" @@ -5343,54 +5385,69 @@ msgstr "" msgid "No code entered." msgstr "విషయం లేదు!" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "సైటు స్వరూపణాన్ని మార్చండి" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. #, fuzzy msgid "Invalid snapshot run value." msgstr "తప్పుడు పాత్ర." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. #, fuzzy msgid "Invalid snapshot report URL." msgstr "చిహ్నపు URL చెల్లదు." +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "తరచుదనం" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "భద్రపరచు" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "సైటు అమరికలను భద్రపరచు" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5403,6 +5460,27 @@ msgstr "మీరు ఎవరికీ చందాచేరలేదు." msgid "Could not save subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "అనుతికోసం వేచివున్న %s గుంపు సభ్యులు" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "అనుమతి కోసం వేచివున్న %1$s గుంపు సభ్యులు, %2$dవ పుట" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "ఈ గుంపులో చేరడానికి అనుమతి కోసం వేచివున్న వాడుకరుల జాబితా." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" @@ -5435,7 +5513,6 @@ msgid "These are the people who listen to %s's notices." msgstr "వీళ్ళు %s యొక్క నోటీసులని వినే ప్రజలు." #. TRANS: Subscriber list text when the logged in user has no subscribers. -#, fuzzy msgid "" "You have no subscribers. Try subscribing to people you know and they might " "return the favor." @@ -5500,9 +5577,9 @@ msgid "%s is not listening to anyone." msgstr "%s ప్రస్తుతం ఎవరినీ వినడంలేదు." #. TRANS: Atom feed title. %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Subscription feed for %s (Atom)" -msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" +msgstr "%s యొక్క చందాల ఫీడు (ఆటమ్)" #. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list. msgid "IM" @@ -5518,45 +5595,66 @@ msgstr "" msgid "Notices tagged with %1$s, page %2$d" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s కొరకు స్పందనల ఫీడు (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s కొరకు స్పందనల ఫీడు (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "జోడింపులు లేవు." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, fuzzy, php-format msgid "Tag %s" msgstr "ట్యాగులు" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "వాడుకరి ప్రొఫైలు" +#. TRANS: Fieldset legend on "tag other users" page. #, fuzzy msgid "Tag user" msgstr "ట్యాగులు" +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "ట్యాగులు" + +#. TRANS: Page notice on "tag other users" page. #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "అటువంటి ట్యాగు లేదు." @@ -5564,25 +5662,30 @@ msgstr "అటువంటి ట్యాగు లేదు." msgid "You haven't blocked that user." msgstr "మీరు ఆ వాడుకరిని నిరోధించలేదు." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "వాడుకరిని గుంపు నుండి నిరోధించలేదు." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#, fuzzy -msgid "No profile ID in request." -msgstr "అధీకరణ అభ్యర్థన లేదు!" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "చందామాను" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "URL అమరికలు" @@ -5596,9 +5699,11 @@ msgstr "వేరే ఇతర ఎంపికలని సంభాళించ msgid " (free service)" msgstr " (స్వేచ్ఛా సేవ)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[ఏమీలేదు]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[అంతర్గతం]" @@ -5610,15 +5715,19 @@ msgstr "URL కుదింపు సేవ" msgid "Automatic shortening service to use." msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5628,13 +5737,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "URL కుదింపు సేవ మరీ పెద్దగా ఉంది (50 అక్షరాలు గరిష్ఠం)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "తప్పుడు దస్త్రపుపేరు.." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "తప్పుడు దస్త్రపుపేరు.." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5714,7 +5827,7 @@ msgstr "వాడుకరి అమరికలను భద్రపరచు. msgid "Authorize subscription" msgstr "చందాని అధీకరించండి" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5723,6 +5836,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "అంగీకరించు" @@ -5733,6 +5847,7 @@ msgstr "ఈ వాడుకరికి చందాచేరండి." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "తిరస్కరించు" @@ -5749,9 +5864,10 @@ msgstr "అధీకరణ అభ్యర్థన లేదు!" msgid "Subscription authorized" msgstr "చందాని అధీకరించారు" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5759,9 +5875,10 @@ msgstr "" msgid "Subscription rejected" msgstr "చందాని తిరస్కరించారు." +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5789,14 +5906,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -5934,19 +6043,16 @@ msgid "Plugins" msgstr "ప్లగిన్లు" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "పేరు" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "సంచిక" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" msgstr "రచయిత(లు)" @@ -6008,6 +6114,18 @@ msgstr[1] "" msgid "Invalid filename." msgstr "తప్పుడు దస్త్రపుపేరు.." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, php-format +msgid "Group ID %s is invalid." +msgstr "%s అనే గుంపు ID చెల్లదు." + #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." msgstr "గుంపులో చేరడం విఫలమైంది." @@ -6020,18 +6138,6 @@ msgstr "గుంపులో భాగం కాదు." msgid "Group leave failed." msgstr "గుంపు నుండి వైదొలగడం విఫలమైంది." -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." - #. TRANS: Activity title. msgid "Join" msgstr "చేరు" @@ -6105,6 +6211,35 @@ msgstr "చాలా ఎక్కువ నోటీసులు అంత వ msgid "You are banned from posting notices on this site." msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6131,16 +6266,13 @@ msgstr "స్థానిక గుంపుని తాజాకరించ msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6191,7 +6323,9 @@ msgstr "కొత్త చందాని చేర్చలేకపోయా msgid "Could not delete subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "అనుసరించు" @@ -6259,18 +6393,24 @@ msgid "User deletion in progress..." msgstr "వాడుకరి తొలగింపు కొనసాగుతూంది..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "ఫ్రొఫైలు అమరికలని మార్చు" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "మార్చు" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "సందేశం" @@ -6293,10 +6433,6 @@ msgctxt "role" msgid "Moderator" msgstr "సమన్వయకర్త" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "చందాచేరు" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6418,9 +6554,8 @@ msgid "Remote profile is not a group!" msgstr "" #. TRANS: Client exception thrown when trying to join a group the importing user is already a member of. -#, fuzzy msgid "User is already a member of this group." -msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు." +msgstr "మీరు ఇప్పటికే ఈ గుంపులో సభ్యులు." #. TRANS: Client exception thrown when trying to import a notice by another user. #. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author. @@ -6551,6 +6686,10 @@ msgstr "సైటు గమనిక" msgid "Snapshots configuration" msgstr "వాడుకరి స్వరూపణం" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6702,6 +6841,10 @@ msgstr "" msgid "Cancel" msgstr "రద్దుచేయి" +#. TRANS: Submit button title. +msgid "Save" +msgstr "భద్రపరచు" + msgid " by " msgstr "" @@ -6765,7 +6908,13 @@ msgstr "ఈ వాడుకరిని నిరోధించు" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "అభ్యర్థనను రద్దుచేయి" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "అభ్యర్థనను రద్దుచేయి" #. TRANS: Title for command results. msgid "Command results" @@ -6918,10 +7067,6 @@ msgstr "నేరుగా సందేశాలు పంపడం నుండ msgid "Notice from %s repeated." msgstr "సందేశాలు" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "నోటీసుని పునరావృతించడంలో పొరపాటు." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7413,19 +7558,18 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Dropdown fieldd label on group edit form. -#, fuzzy msgid "Membership policy" -msgstr "సభ్యులైన తేదీ" +msgstr "సభ్యత్వ విధానం" msgid "Open to all" -msgstr "" +msgstr "అందరికీ ప్రవేశం" msgid "Admin must approve all members" -msgstr "" +msgstr "సభ్యులందరినీ నిర్వాహకులు అనుమతించాలి" #. TRANS: Dropdown field title on group edit form. msgid "Whether admin approval is required to join this group." -msgstr "" +msgstr "ఈ గుంపులో చేరడానికి నిర్వాహకుని అనుమతి కావాలా." #. TRANS: Indicator in group members list that this user is a group administrator. #, fuzzy @@ -7663,6 +7807,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8156,7 +8314,9 @@ msgstr "స్పందించండి" msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "నోటీసుని పునరావృతించారు" msgid "Update your status..." @@ -8442,28 +8602,77 @@ msgstr "సైటు గమనిక" msgid "Silence this user" msgstr "ఈ వాడుకరిని తొలగించు" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "ప్రొఫైలు" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "చందాలు" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "%s చందాచేరిన వ్యక్తులు" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "చందాదార్లు" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "%sకి చందాచేరిన వ్యక్తులు" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "గుంపులు" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s సభ్యులుగా ఉన్న గుంపులు" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "ఆహ్వానించు" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "%sలో తోడుకై మీ స్నేహితులని మరియు సహోద్యోగులని ఆహ్వానించండి" msgid "Subscribe to this user" msgstr "ఈ వాడుకరికి చందాచేరు" +msgid "Subscribe" +msgstr "చందాచేరు" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8550,29 +8759,50 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "ఈ నోటీసుని పునరావృతించు" -#, fuzzy, php-format +#, php-format msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." -msgstr[0] "ఈ నోటీసుని తొలగించు" -msgstr[1] "ఈ నోటీసుని తొలగించు" +msgstr[0] "ఒక వ్యక్తి" +msgstr[1] "%d వ్యక్తులు" #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "మీరు ఈ నోటీసును పునరావృతించారు." -#, fuzzy, php-format +#, php-format msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." -msgstr[0] "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." -msgstr[1] "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." +msgstr[0] "ఒక వ్యక్తి" +msgstr[1] "%d వ్యక్తులు" #. TRANS: Title for top posters section. msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +msgctxt "LABEL" +msgid "To:" +msgstr "" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "గుర్తు తెలియని భాష \"%s\"." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8602,16 +8832,15 @@ msgid "Unsubscribe from this user" msgstr "ఈ వాడుకరి నుండి చందామాను" #. TRANS: Button text on unsubscribe form. -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" msgstr "చందామాను" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). -#, fuzzy, php-format +#, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "వాడుకరికి ప్రొఫైలు లేదు." +msgstr "%1$s (%2$d) వాడుకరికి ప్రొఫైలు లేదు." #. TRANS: Authorisation exception thrown when a user a not allowed to login. msgid "Not allowed to log in." @@ -8688,5 +8917,22 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "నోటిసు చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు." +#~ msgid "Already repeated that notice." +#~ msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" +#~ msgstr[1] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, %2$dవ పేజీ" + +#~ msgid "Error repeating notice." +#~ msgstr "నోటీసుని పునరావృతించడంలో పొరపాటు." diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 94b5493b54..9e679e8b48 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:41+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -79,7 +79,9 @@ msgstr "Erişim ayarlarını kaydet" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -91,6 +93,7 @@ msgstr "Kaydet" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Böyle bir sayfa yok." @@ -839,16 +842,6 @@ msgstr "Başka bir kullanıcının durum mesajını silemezsiniz." msgid "No such notice." msgstr "Böyle bir durum mesajı yok." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Kendi durum mesajınızı tekrarlayamazsınız." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Bu durum mesajı zaten tekrarlanmış." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -987,6 +980,8 @@ msgstr "%s ile etiketli durum mesajları" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" @@ -1103,11 +1098,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "Profil yok." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1115,10 +1112,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "Bu gruptaki kullanıcıların listesi." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1143,6 +1142,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "Bu gruptaki kullanıcıların listesi." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "%1$s kullanıcısı, %2$s grubuna katılamadı." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s'in %2$s'deki durum mesajları " + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Takip talebine izin verildi" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Yetkilendirme iptal edildi." + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1185,7 +1212,7 @@ msgstr "Favorilere ekle" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. #, fuzzy, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "%s grup üyeleri" #. TRANS: Subtitle for group membership feed. @@ -1199,8 +1226,7 @@ msgstr "%2$s kullanıcısının üye olduğu %1$s grupları." msgid "Cannot add someone else's membership." msgstr "Yeni abonelik eklenemedi." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. #, fuzzy msgid "Can only handle join activities." msgstr "Durum mesajını kaydederken hata oluştu." @@ -1522,6 +1548,50 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Giriş yapılmadı." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +#, fuzzy +msgid "No profile ID in request." +msgstr "Yetkilendirme isteği yok!" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Aboneliği sonlandır" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Onay kodu yok." @@ -1738,24 +1808,6 @@ msgstr "Bu durum mesajını silme" msgid "Delete this group." msgstr "Bu kullanıcıyı sil" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Giriş yapılmadı." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2453,14 +2505,6 @@ msgstr "Kullanıcının profili yok." msgid "No profile specified." msgstr "Hiçbir profil belirtilmedi." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -3043,6 +3087,7 @@ msgid "License selection" msgstr "Lisans seçimi" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. #, fuzzy msgid "Private" msgstr "Gizlilik" @@ -3795,6 +3840,7 @@ msgid "SSL" msgstr "" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Sunucu" @@ -3958,17 +4004,21 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, fuzzy, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #. TRANS: Tooltip for field label in form for profile settings. +#. TRANS: Text area title on account registration page. #, fuzzy -msgid "Describe yourself and your interests" +msgid "Describe yourself and your interests." msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3981,7 +4031,9 @@ msgid "Location" msgstr "Yer" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" +#. TRANS: Field title on account registration page. +#, fuzzy +msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" #. TRANS: Checkbox label in form for profile settings. @@ -3989,6 +4041,7 @@ msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Etiketler" @@ -4024,6 +4077,27 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "Bana abone olan herkese abone yap (insan olmayanlar için en iyisi)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Abonelikler" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4055,7 +4129,7 @@ msgstr "Geçersiz büyüklük." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. #, fuzzy -msgid "Could not update user for autosubscribe." +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Kullanıcı güncellenemedi." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4064,6 +4138,7 @@ msgid "Could not save location prefs." msgstr "Profil kaydedilemedi." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Profil kaydedilemedi." @@ -4410,25 +4485,7 @@ msgstr "" msgid "Longer name, preferably your \"real\" name." msgstr "" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" - -#. TRANS: Field title on account registration page. -#, fuzzy -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4528,6 +4585,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4563,17 +4621,8 @@ msgstr "" msgid "No notice specified." msgstr "Yeni durum mesajı" -#. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy -msgid "You cannot repeat your own notice." -msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -#, fuzzy -msgid "You already repeated that notice." -msgstr "Zaten giriş yapmış durumdasıznız!" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Sıfırla" @@ -4732,6 +4781,7 @@ msgid "StatusNet" msgstr "İstatistikler" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. #, fuzzy msgid "You cannot sandbox users on this site." msgstr "Bize o profili yollamadınız" @@ -4993,6 +5043,11 @@ msgstr "" msgid "Message from %1$s on %2$s" msgstr "" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "Anlık mesajlaşma mevcut değil." + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Durum mesajı silindi." @@ -5000,20 +5055,20 @@ msgstr "Durum mesajı silindi." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format -msgid "%1$s tagged %2$s" +msgid "Notices by %1$s tagged %2$s" msgstr "%s ve arkadaşları" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%s adli kullanicinin durum mesajlari" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format -msgid "%1$s, page %2$d" -msgstr "%s ve arkadaşları" +msgid "Notices by %1$s, page %2$d" +msgstr "%s adli kullanicinin durum mesajlari" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5091,6 +5146,7 @@ msgid "Repeat of %s" msgstr "%s için cevaplar" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "" @@ -5394,52 +5450,67 @@ msgstr "" msgid "No code entered." msgstr "İçerik yok!" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Eposta adresi onayı" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Kaydet" - +#. TRANS: Title for button to save snapshot settings. #, fuzzy -msgid "Save snapshot settings" +msgid "Save snapshot settings." msgstr "Ayarlar" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5452,6 +5523,27 @@ msgstr "Bize o profili yollamadınız" msgid "Could not save subscription." msgstr "Yeni abonelik eklenemedi." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s grup üyeleri" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "Bütün abonelikler" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "Bu gruptaki kullanıcıların listesi." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. #, fuzzy msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5565,33 +5657,45 @@ msgstr "" msgid "Notices tagged with %1$s, page %2$d" msgstr "%s adli kullanicinin durum mesajlari" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s için durum RSS beslemesi" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s için durum RSS beslemesi" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. #, fuzzy msgid "No ID argument." msgstr "Böyle bir belge yok." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "" +#. TRANS: Header for user details on "tag other users" page. #, fuzzy msgid "User profile" msgstr "Kullanıcının profili yok." +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Kullanıcıyı etiketle" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5600,13 +5704,22 @@ msgstr "" "Kendiniz için etiketler (harf, sayı, -. ., ve _ kullanılabilir), virgül veya " "boşlukla ayırabilirsiniz" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiketler" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Böyle bir etiket yok." @@ -5615,27 +5728,32 @@ msgstr "Böyle bir etiket yok." msgid "You haven't blocked that user." msgstr "Zaten giriş yapmış durumdasıznız!" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. #, fuzzy msgid "User is not sandboxed." msgstr "Kullanıcının profili yok." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. #, fuzzy msgid "User is not silenced." msgstr "Kullanıcının profili yok." -#, fuzzy -msgid "No profile ID in request." -msgstr "Yetkilendirme isteği yok!" - +#. TRANS: Page title for page to unsubscribe. #, fuzzy msgid "Unsubscribed" msgstr "Aboneliği sonlandır" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "Profil ayarları" @@ -5650,9 +5768,11 @@ msgstr "" msgid " (free service)" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5664,15 +5784,19 @@ msgstr "Bağlantıları şununla kısalt" msgid "Automatic shortening service to use." msgstr "Kullanılacak otomatik kısaltma servisi." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5682,13 +5806,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "Geçersiz büyüklük." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "Geçersiz büyüklük." + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5772,7 +5900,7 @@ msgstr "Profil ayarları" msgid "Authorize subscription" msgstr "Takip isteğini onayla" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. #, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " @@ -5785,6 +5913,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Accept" @@ -5797,6 +5926,7 @@ msgstr "Bize o profili yollamadınız" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. #, fuzzy msgctxt "BUTTON" msgid "Reject" @@ -5815,9 +5945,10 @@ msgstr "Yetkilendirme isteği yok!" msgid "Subscription authorized" msgstr "Takip talebine izin verildi" +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" @@ -5825,9 +5956,10 @@ msgstr "" msgid "Subscription rejected" msgstr "Abonelik reddedildi." +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" @@ -5855,14 +5987,6 @@ msgstr "" msgid "Profile URL \"%s\" is for a local user." msgstr "" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -6070,6 +6194,18 @@ msgstr[0] "" msgid "Invalid filename." msgstr "Geçersiz dosya ismi." +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, fuzzy, php-format +msgid "Group ID %s is invalid." +msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." + #. TRANS: Exception thrown when joining a group fails. #, fuzzy msgid "Group join failed." @@ -6085,18 +6221,6 @@ msgstr "Kullanıcı güncellenemedi." msgid "Group leave failed." msgstr "Böyle bir durum mesajı yok." -#. TRANS: Exception thrown providing an invalid profile ID. -#. TRANS: %s is the invalid profile ID. -#, php-format -msgid "Profile ID %s is invalid." -msgstr "" - -#. TRANS: Exception thrown providing an invalid group ID. -#. TRANS: %s is the invalid group ID. -#, fuzzy, php-format -msgid "Group ID %s is invalid." -msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." - #. TRANS: Activity title. #, fuzzy msgid "Join" @@ -6171,6 +6295,37 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Kendi durum mesajınızı tekrarlayamazsınız." + +#. TRANS: Client error displayed when trying to repeat an own notice. +#, fuzzy +msgid "You cannot repeat your own notice." +msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Kendi durum mesajınızı tekrarlayamazsınız." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Kendi durum mesajınızı tekrarlayamazsınız." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +#, fuzzy +msgid "You already repeated that notice." +msgstr "Zaten giriş yapmış durumdasıznız!" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Kullanıcının profili yok." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6197,16 +6352,13 @@ msgstr "Profil kaydedilemedi." msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, fuzzy, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s'in %2$s'deki durum mesajları " -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6257,9 +6409,11 @@ msgstr "Yeni abonelik eklenemedi." msgid "Could not delete subscription." msgstr "Yeni abonelik eklenemedi." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" -msgstr "" +msgstr "İzin Ver" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. @@ -6326,20 +6480,24 @@ msgstr "" #. TRANS: Link title for link on user profile. #, fuzzy -msgid "Edit profile settings" +msgid "Edit profile settings." msgstr "Profil ayarları" #. TRANS: Link text for link on user profile. +msgctxt "BUTTON" msgid "Edit" msgstr "" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" -msgstr "" +#, fuzzy +msgid "Send a direct message to this user." +msgstr "%s kullanıcısına özel mesaj" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" -msgstr "" +msgstr "Mesaj gönder" #. TRANS: Label text on user profile to select a user role. msgid "Moderate" @@ -6360,10 +6518,6 @@ msgctxt "role" msgid "Moderator" msgstr "" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Abone ol" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, fuzzy, php-format msgid "%1$s - %2$s" @@ -6620,6 +6774,10 @@ msgstr "Yeni durum mesajı" msgid "Snapshots configuration" msgstr "Eposta adresi onayı" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "" @@ -6775,6 +6933,10 @@ msgstr "" msgid "Cancel" msgstr "İptal et" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Kaydet" + msgid " by " msgstr "" @@ -6841,6 +7003,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Bütün abonelikler" + #. TRANS: Title for command results. msgid "Command results" msgstr "" @@ -6987,10 +7155,6 @@ msgstr "Kullanıcı ayarlamada hata oluştu." msgid "Notice from %s repeated." msgstr "Durum mesajları" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Kullanıcı ayarlamada hata oluştu." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, fuzzy, php-format @@ -7728,6 +7892,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s %2$s'da durumunuzu takip ediyor" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8150,8 +8328,9 @@ msgstr "Cevaplar" msgid "Delete this notice" msgstr "Bu durum mesajını sil" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy -msgid "Notice repeated" +msgid "Notice repeated." msgstr "Durum mesajları" msgid "Update your status..." @@ -8446,28 +8625,77 @@ msgstr "Yeni durum mesajı" msgid "Silence this user" msgstr "Böyle bir kullanıcı yok." +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Abonelikler" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "People %s subscribes to" +msgid "People %s subscribes to." msgstr "Uzaktan abonelik" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Abone olanlar" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, fuzzy, php-format -msgid "People subscribed to %s" +msgid "People subscribed to %s." msgstr "Uzaktan abonelik" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" msgstr "" +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruplar" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." +msgstr "%2$s kullanıcısının üye olduğu %1$s grupları." + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" -msgstr "" +msgstr "Sadece davet" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Invite friends and colleagues to join you on %s." msgstr "" msgid "Subscribe to this user" msgstr "Bize o profili yollamadınız" +msgid "Subscribe" +msgstr "Abone ol" + msgid "People Tagcloud as self-tagged" msgstr "" @@ -8577,6 +8805,27 @@ msgstr[0] "Bu durum mesajı zaten tekrarlanmış." msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +msgctxt "LABEL" +msgid "To:" +msgstr "" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Kullanıcının profili yok." + #. TRANS: Title for the form to unblock a user. #, fuzzy msgctxt "TITLE" @@ -8694,6 +8943,24 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" +#~ msgid "Already repeated that notice." +#~ msgstr "Bu durum mesajı zaten tekrarlanmış." + #, fuzzy -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "Bu çok uzun. Maksimum durum mesajı boyutu %d karakterdir." +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#, fuzzy +#~ msgid "Describe yourself and your interests" +#~ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" + +#, fuzzy +#~ msgid "%1$s, page %2$d" +#~ msgstr "%s ve arkadaşları" + +#~ msgid "Error repeating notice." +#~ msgstr "Kullanıcı ayarlamada hata oluştu." diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 023349de16..33c5fac6d8 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -80,7 +80,9 @@ msgstr "Зберегти параметри доступу" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -92,6 +94,7 @@ msgstr "Зберегти" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "Немає такої сторінки." @@ -854,16 +857,6 @@ msgstr "Ви не можете видалити статус іншого кор msgid "No such notice." msgstr "Такого допису немає." -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "Не можна повторювати власні дописи." - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "Цей допис вже повторено." - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -1010,6 +1003,8 @@ msgstr "Дописи позначені з %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Оновлення позначені з %1$s на %2$s!" @@ -1113,56 +1108,94 @@ msgstr "Немає імені або ІД." #. TRANS: Client error displayed trying to approve group membership while not logged in. #. TRANS: Client error displayed when trying to leave a group while not logged in. -#, fuzzy msgid "Must be logged in." -msgstr "Не увійшли." +msgstr "Мусите увійти до системи." #. TRANS: Client error displayed trying to approve group membership while not a group administrator. #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." msgstr "" +"Лише адміністратор спільноти має право затверджувати чи скасовувати " +"запрошення." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. -#, fuzzy +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. msgid "Must specify a profile." -msgstr "Загублений профіль." +msgstr "Необхідно зазначити профіль." #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Список учасників цієї спільноти." +msgstr "" +"%s відсутній у черзі тих, що очікують затвердження модератором цієї " +"спільноти." #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." -msgstr "" +msgstr "Внутрішня помилка: не отримано ані «скасувати», ані «відмінити»" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." -msgstr "" +msgstr "Внутрішня помилка: отримано і «скасувати» і «відмінити»." #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel request for user %1$s to join group %2$s." -msgstr "Не вдалось долучити користувача %1$s до спільноти %2$s." +msgstr "" +"Не вдалося скасувати запит для користувача %1$s приєднатися до групи %2$s." #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "%1$s має статус на %2$s" +msgstr "Запит %1$s на вступ до %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." -msgstr "" +msgstr "Запит на приєднання до спільноти задовольнили." #. TRANS: Message on page for group admin after rejecting a join request. msgid "Join request canceled." +msgstr "Запит на приєднання до спільноти відхилено." + +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." msgstr "" +"%s відсутній у черзі тих, що очікують затвердження модератором цієї " +"спільноти." + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" +"Не вдалося скасувати запит для користувача %1$s приєднатися до групи %2$s." + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "Запит %1$s на вступ до %2$s" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "Підписку авторизовано" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "Авторизацію скасовано." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1199,8 +1232,8 @@ msgstr "Вже у списку обраних." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "Учасники спільноти %s" #. TRANS: Subtitle for group membership feed. @@ -1213,8 +1246,7 @@ msgstr "Спільноти, до яких залучений %1$s на %2$s" msgid "Cannot add someone else's membership." msgstr "Не вдається надати комусь членство." -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "Можливою є лише обробка POST-запитів." @@ -1527,6 +1559,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s залишив спільноту %2$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "Не увійшли." + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "У запиті відсутній ID профілю." + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "Не визначено профілю з таким ID." + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "Відписано" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "Немає коду підтвердження." @@ -1551,12 +1626,10 @@ msgstr "Цю адресу вже підтверджено." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#, fuzzy msgid "Could not update user IM preferences." msgstr "Не вдалося оновити налаштування сервісу миттєвих повідомлень." #. TRANS: Server error displayed when adding IM preferences fails. -#, fuzzy msgid "Could not insert user IM preferences." msgstr "Не вдалося вставити налаштування сервісу миттєвих повідомлень." @@ -1586,10 +1659,9 @@ msgstr "Дописи" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#, fuzzy msgctxt "TITLE" msgid "Notice" -msgstr "Дописи" +msgstr "Допис" #. TRANS: Client exception displayed trying to delete a user account while not logged in. msgid "Only logged-in users can delete their account." @@ -1736,24 +1808,6 @@ msgstr "Не видаляти цю спільноту." msgid "Delete this group." msgstr "Видалити спільноту." -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "Не увійшли." - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2425,14 +2479,6 @@ msgstr "Користувач вже має цю роль." msgid "No profile specified." msgstr "Не визначено жодного профілю." -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "Не визначено профілю з таким ID." - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2563,24 +2609,27 @@ msgstr "Список учасників цієї спільноти." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Лише адміністратор спільноти може затверджувати користувачів." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. -#, fuzzy, php-format +#, php-format msgid "%s group members awaiting approval" -msgstr "Учасники спільноти %s" +msgstr "Користувачі, що очікують рішення щодо їхнього приєднання до %s" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s group members awaiting approval, page %2$d" -msgstr "Учасники спільноти %1$s, сторінка %2$d" +msgstr "" +"Користувачі, що очікують рішення щодо їхнього приєднання до %1$s, сторінка %2" +"$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to join this group." -msgstr "Список учасників цієї спільноти." +msgstr "" +"Список користувачів, що очікують рішення щодо їхнього приєднання до цієї " +"спільноти." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #, php-format @@ -2701,13 +2750,13 @@ msgstr "Поточна підтверджена %s адреса." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM service name, %2$s is the IM address set. -#, fuzzy, php-format +#, php-format msgid "" "Awaiting confirmation on this address. Check your %1$s account for a message " "with further instructions. (Did you add %2$s to your buddy list?)" msgstr "" -"Очікування підтвердження цієї адреси. Перевірте свій %s-акаунт, туди має " -"надійти повідомлення з подальшими інструкціями. (Ви додали %s до вашого " +"Очікування підтвердження цієї адреси. Перевірте свій %1$s-акаунт, туди має " +"надійти повідомлення з подальшими інструкціями. (Ви додали %2$s до вашого " "списку контактів?)" #. TRANS: Field label for IM address. @@ -2740,7 +2789,6 @@ msgid "Publish a MicroID" msgstr "Публікувати MicroID." #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." msgstr "Не вдалося оновити налаштування сервісу миттєвих повідомлень." @@ -2758,14 +2806,12 @@ msgid "No transport." msgstr "Немає транспорту." #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." -msgstr "Не можна впорядкувати цей псевдонім" +msgstr "Не можна впорядкувати цей псевдонім." #. TRANS: Message given saving IM address that not valid. -#, fuzzy msgid "Not a valid screenname." -msgstr "Це недійсне ім’я користувача" +msgstr "Це недійсне ім’я користувача." #. TRANS: Message given saving IM address that is already set for another user. msgid "Screenname already belongs to another user." @@ -2780,7 +2826,6 @@ msgid "That is the wrong IM address." msgstr "Це помилкова адреса IM." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." msgstr "Не вдалося видалити підтвердження." @@ -2996,9 +3041,8 @@ msgid "%1$s joined group %2$s" msgstr "%1$s приєднався до спільноти %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Невідома спільнота." +msgstr "Невідома помилка при приєднанні до спільноти." #. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. @@ -3051,6 +3095,7 @@ msgid "License selection" msgstr "Вибір ліцензії" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "Приватно" @@ -3569,9 +3614,8 @@ msgstr "Пароль має складатись з 6-ти або більше #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#, fuzzy msgid "Passwords do not match." -msgstr "Паролі не співпадають." +msgstr "Паролі не збігаються." #. TRANS: Form validation error on page where to change password. msgid "Incorrect old password." @@ -3785,6 +3829,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "Ніколи" @@ -3940,18 +3985,22 @@ msgstr "URL-адреса вашої веб-сторінки, блоґу, або #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" -msgstr[0] "Опишіть себе та свої інтереси вкладаючись у %d символ" -msgstr[1] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" -msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "Опишіть себе та свої інтереси вкладаючись у %d символ." +msgstr[1] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів." +msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів." #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" -msgstr "Опишіть себе та свої інтереси" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "Опишіть себе та свої інтереси." -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3964,14 +4013,16 @@ msgid "Location" msgstr "Розташування" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "Показувати моє місцезнаходження при надсиланні дописів" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "Теґи" @@ -4005,6 +4056,28 @@ msgid "" msgstr "" "Автоматично підписуватись до тих, хто підписався до мене. (Слава роботам!)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "Підписки" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "Можливе лише слідування людьми." + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -4036,7 +4109,8 @@ msgstr "Неприпустимий теґ: «%s»." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "Не вдалося оновити користувача для автопідписки." #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -4044,6 +4118,7 @@ msgid "Could not save location prefs." msgstr "Не вдалося зберегти преференції розташування." #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "Не вдалося зберегти теґи." @@ -4315,15 +4390,14 @@ msgid "New password successfully saved. You are now logged in." msgstr "Новий пароль успішно збережено. Тепер ви увійшли." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." msgstr "Немає параметру ID." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "Немає такого файлу «%d»" +msgstr "Немає такого файлу «%d»." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4339,7 +4413,6 @@ msgid "Registration successful" msgstr "Реєстрація успішна" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Реєстрація" @@ -4349,7 +4422,6 @@ msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "Ви не можете зареєструватись, якщо не погодитесь з умовами ліцензії." @@ -4369,13 +4441,11 @@ msgstr "" "будете в курсі справ ваших друзів та колег." #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Підтвердити" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "Пошта" @@ -4388,27 +4458,7 @@ msgstr "Використовується лише для оновлень, ог msgid "Longer name, preferably your \"real\" name." msgstr "Повне ім’я, бажано ваше справжнє ім’я." -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Опишіть себе та свої інтереси вкладаючись у %d символ" -msgstr[1] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" -msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "Опишіть себе та свої інтереси" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»." - -#. TRANS: Field label on account registration page. -#, fuzzy +#. TRANS: Button text to register a user on account registration page. msgctxt "BUTTON" msgid "Register" msgstr "Реєстрація" @@ -4524,7 +4574,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "URL-адреса вашого профілю на іншому сумісному сервісі мікроблоґів." #. TRANS: Button text on page for remote subscribe. -#, fuzzy +#. TRANS: Link text for link that will subscribe to a remote profile. msgctxt "BUTTON" msgid "Subscribe" msgstr "Підписатись" @@ -4556,15 +4606,8 @@ msgstr "Лише користувачі, що знаходяться у сист msgid "No notice specified." msgstr "Зазначеного допису немає." -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "Ви не можете повторювати власні дописи." - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "Ви вже повторили цей допис." - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "Повторено" @@ -4721,7 +4764,6 @@ msgid "You cannot revoke user roles on this site." msgstr "Ви не можете позбавляти користувачів ролей на цьому сайті." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "Користувач не має цієї ролі." @@ -4731,6 +4773,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "Ви не можете нікого ізолювати на цьому сайті." @@ -4739,7 +4782,6 @@ msgid "User is already sandboxed." msgstr "Користувача ізольовано доки набереться уму-розуму." #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Сесії" @@ -4749,7 +4791,6 @@ msgid "Session settings for this StatusNet site" msgstr "Налаштування сесії для даного сайту StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Сесії" @@ -4761,7 +4802,6 @@ msgstr "Сесії обробки даних" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." msgstr "Обробка даних сесій самостійно." @@ -4771,14 +4811,12 @@ msgid "Session debugging" msgstr "Сесія наладки" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Виводити дані сесії наладки." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Зберегти параметри доступу" +msgstr "Зберегти параметри сесії" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -4791,10 +4829,10 @@ msgstr "Профіль додатку" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів" +msgstr[0] "Створено %1$s — %2$s доступ за замовч. — %3$d користувач" msgstr[1] "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів" msgstr[2] "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів" @@ -4803,10 +4841,9 @@ msgid "Application actions" msgstr "Можливості додатку" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" -msgstr "Правка" +msgstr "Змінити" #. TRANS: Button text on the OAuth application page. #. TRANS: Resets the OAuth consumer key and secret. @@ -4818,12 +4855,11 @@ msgid "Application info" msgstr "Інфо додатку" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"До уваги: Всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо " +"До уваги: всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо " "шифрування підписів відкритим текстом." #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. @@ -4987,7 +5023,6 @@ msgstr "" "спільноти роблять короткі дописи про своє життя та інтереси. " #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Адміни" @@ -5012,27 +5047,32 @@ msgstr "Повідомлення до %1$s на %2$s" msgid "Message from %1$s on %2$s" msgstr "Повідомлення від %1$s на %2$s" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "ІМ недоступний" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "Допис видалено." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "Дописи %1$s позначені теґом %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Дописи %1$s позначені теґом %2$s, сторінка %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s, сторінка %2$d" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "Дописи з теґом %1$s, сторінка %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5120,6 +5160,7 @@ msgid "Repeat of %s" msgstr "Повторення за %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "Ви не можете позбавляти користувачів права голосу на цьому сайті." @@ -5128,7 +5169,6 @@ msgid "User is already silenced." msgstr "Користувачу наразі заклеїли рота скотчем." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Сайт" @@ -5162,19 +5202,16 @@ msgstr "" "становити одну і більше секунд." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "Основні" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Назва сайту" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." msgstr "Назва сайту, щось на зразок «Мікроблоґи компанії...»" @@ -5183,30 +5220,26 @@ msgid "Brought by" msgstr "Надано" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." -msgstr "Текст використаний для посілань кредитів унизу кожної сторінки" +msgstr "Текст використаний для посилань кредитів унизу кожної сторінки." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "Наданий URL" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "URL використаний для посілань кредитів унизу кожної сторінки" +msgstr "URL використаний для посилань кредитів унизу кожної сторінки." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "Пошта" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Контактна електронна адреса для вашого сайту" +msgstr "Контактна електронна адреса для вашого сайту." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" msgstr "Локаль" @@ -5230,7 +5263,6 @@ msgstr "" "доступно" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Обмеження" @@ -5378,9 +5410,8 @@ msgid "That is the wrong confirmation number." msgstr "Це помилковий код підтвердження." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." -msgstr "Не вдалося видалити підтвердження." +msgstr "Не вдалося видалити підтвердження по смс." #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." @@ -5418,51 +5449,72 @@ msgstr "" msgid "No code entered." msgstr "Код не введено." -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "Снепшоти" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "Керування конфігурацією знімку" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "Помилкове значення снепшоту." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "Частота повторення снепшотів має містити цифру." +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "Помилковий снепшот URL." +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Снепшоти" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "Випадково під час веб-звернення" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "Згідно плану робіт" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "Снепшоти даних" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "Коли надсилати статистичні дані до серверів status.net" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Частота" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "Снепшоти надсилатимуться раз на N веб-хітів" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Звітня URL-адреса" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "Снепшоти надсилатимуться на цю URL-адресу" -#. TRANS: Submit button title. -msgid "Save" -msgstr "Зберегти" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "Зберегти налаштування знімку" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5474,6 +5526,31 @@ msgstr "Ви не підписані до цього профілю." msgid "Could not save subscription." msgstr "Не вдалося зберегти підписку." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "Користувачі, що очікують рішення щодо їхнього приєднання до %s" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "" +"Користувачі, що очікують рішення щодо їхнього приєднання до %1$s, сторінка %2" +"$d" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "" +"Список користувачів, що очікують рішення щодо їхнього приєднання до цієї " +"спільноти." + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "Цією дією ви не зможете підписатися до віддаленого профілю OMB 0.1." @@ -5595,48 +5672,68 @@ msgstr "СМС" msgid "Notices tagged with %1$s, page %2$d" msgstr "Дописи з теґом %1$s, сторінка %2$d" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Стрічка дописів для теґу %s (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Стрічка дописів для теґу %s (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Стрічка дописів для теґу %s (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "Немає ID аргументу." +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "Позначити %s" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "Профіль користувача." +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "Позначити користувача" -#, fuzzy +#. TRANS: Title for input field for inputting tags on "tag other users" page. msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " "spaces." msgstr "" "Позначити користувача теґами (літери, цифри, -, . та _), відокремлюючи кожен " -"комою або пробілом" +"комою або пробілом." +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Ви маєте можливість позначати теґами тих, до кого ви підписані, а також тих, " "хто є підписаним до вас." +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "Теґи" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Скористайтесь цією формою, щоб додати теґи своїм підпискам та читачам." +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "Такого теґу немає." @@ -5644,23 +5741,29 @@ msgstr "Такого теґу немає." msgid "You haven't blocked that user." msgstr "Цього користувача блокувати неможливо." +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "Користувач не у пісочниці." +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "Користувач поки що має право голосу." -msgid "No profile ID in request." -msgstr "У запиті відсутній ID профілю." - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "Відписано" +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -msgstr "Ліцензія «%1$s» не відповідає ліцензії сайту «%2$s»." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "Ліцензія потоку «%1$s» є несумісною з ліцензією сайту «%2$s»." +#. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" msgstr "Налаштування URL" @@ -5674,9 +5777,11 @@ msgstr "Керування деякими іншими опціями." msgid " (free service)" msgstr " (вільний сервіс)" +#. TRANS: Default value for URL shortening settings. msgid "[none]" msgstr "[пусто]" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "[внутрішній]" @@ -5688,17 +5793,21 @@ msgstr "Скорочення URL" msgid "Automatic shortening service to use." msgstr "Доступні сервіси." +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "URL-адреса, довша за" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" "URL-адреси, довші за це значення, будуть скорочуватись (0 — завжди " "скорочувати)." +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "Текст, довший за" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5709,12 +5818,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Сервіс скорочення URL-адрес надто довгий (50 символів максимум)." -msgid "Invalid number for max url length." +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum URL length." msgstr "Невірне значення параметру максимальної довжини URL-адреси." -msgid "Invalid number for max notice length." +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." msgstr "Невірне значення параметру максимальної довжини допису." +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "Помилка при збереженні налаштувань сервісу скорочення URL-адрес." @@ -5793,7 +5907,7 @@ msgstr "Зберегти налаштування користувача." msgid "Authorize subscription" msgstr "Авторизувати підписку" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5805,6 +5919,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "Погодитись" @@ -5815,6 +5930,7 @@ msgstr "Підписатися до цього користувача." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "Відхилити" @@ -5831,9 +5947,11 @@ msgstr "Немає запиту на авторизацію!" msgid "Subscription authorized" msgstr "Підписку авторизовано" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " @@ -5844,9 +5962,11 @@ msgstr "" msgid "Subscription rejected" msgstr "Підписку скинуто" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " @@ -5877,14 +5997,6 @@ msgstr "URI слухача «%s» — це локальний користува msgid "Profile URL \"%s\" is for a local user." msgstr "URL-адреса профілю «%s» для локального користувача." -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "Ліцензія потоку «%1$s» є несумісною з ліцензією сайту «%2$s»." - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format @@ -6034,25 +6146,21 @@ msgid "Plugins" msgstr "Додатки" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "Ім’я" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "Версія" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" msgstr "Автор(и)" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Description" msgstr "Опис" @@ -6118,18 +6226,6 @@ msgstr[2] "Розміри цього файлу перевищують вашу msgid "Invalid filename." msgstr "Невірне ім’я файлу." -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "Не вдалося приєднатися до спільноти." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "Не є частиною спільноти." - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "Не вдалося залишити спільноту." - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -6142,6 +6238,18 @@ msgstr "Ід. номер профілю %s не є дійсним." msgid "Group ID %s is invalid." msgstr "Ідентифікатор спільноти %s є недійсним." +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "Не вдалося приєднатися до спільноти." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "Не є частиною спільноти." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "Не вдалося залишити спільноту." + #. TRANS: Activity title. msgid "Join" msgstr "Приєднатись" @@ -6216,6 +6324,35 @@ msgstr "" msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надсилати дописи до цього сайту." +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "Не можна повторювати власні дописи." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "Ви не можете повторювати власні дописи." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "Не можна повторювати власні дописи." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "Не можна повторювати власні дописи." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "Ви вже повторили цей допис." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "Користувач не має останнього допису." + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6241,16 +6378,13 @@ msgstr "Не вдалося зберегти відповідь для %1$d, %2$ msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6300,7 +6434,9 @@ msgstr "Не вдається видалити токен підписки OMB." msgid "Could not delete subscription." msgstr "Не вдалося видалити підписку." -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "Слідкувати" @@ -6368,18 +6504,24 @@ msgid "User deletion in progress..." msgstr "Видалення користувача у процесі..." #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "Налаштування профілю" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "Правка" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "Надіслати пряме повідомлення цьому користувачеві" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "Повідомлення" @@ -6401,10 +6543,6 @@ msgctxt "role" msgid "Moderator" msgstr "Модератор" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "Підписатись" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6656,6 +6794,10 @@ msgstr "Об’яви на сайті" msgid "Snapshots configuration" msgstr "Конфігурація знімків" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "Снепшоти" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "Зазначте ліцензію сайту" @@ -6804,6 +6946,10 @@ msgstr "" msgid "Cancel" msgstr "Скасувати" +#. TRANS: Submit button title. +msgid "Save" +msgstr "Зберегти" + msgid " by " msgstr " від " @@ -6865,7 +7011,13 @@ msgstr "Блокувати користувача" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Запит на приєднання скасовано" + +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "Запит на приєднання скасовано" #. TRANS: Title for command results. msgid "Command results" @@ -7022,10 +7174,6 @@ msgstr "Помилка при відправці прямого повідомл msgid "Notice from %s repeated." msgstr "Допису від %s вторували." -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "Помилка при повторенні допису." - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7153,152 +7301,140 @@ msgstr[1] "Ви є учасником таких спільнот:" msgstr[2] "Ви є учасником таких спільнот:" #. TRANS: Header line of help text for commands. -#, fuzzy msgctxt "COMMANDHELP" msgid "Commands:" -msgstr "Результати команди" +msgstr "Команди:" #. TRANS: Help message for IM/SMS command "on" -#, fuzzy msgctxt "COMMANDHELP" msgid "turn on notifications" -msgstr "Не можна увімкнути сповіщення." +msgstr "увімкнути сповіщення" #. TRANS: Help message for IM/SMS command "off" -#, fuzzy msgctxt "COMMANDHELP" msgid "turn off notifications" -msgstr "Не можна вимкнути сповіщення." +msgstr "вимкнути сповіщення" #. TRANS: Help message for IM/SMS command "help" msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "показати довідку" #. TRANS: Help message for IM/SMS command "follow " -#, fuzzy msgctxt "COMMANDHELP" msgid "subscribe to user" -msgstr "Підписатись до цього користувача" +msgstr "підписатись до користувача" #. TRANS: Help message for IM/SMS command "groups" msgctxt "COMMANDHELP" msgid "lists the groups you have joined" -msgstr "" +msgstr "список спільнот, до яких ви приєдналися" #. TRANS: Help message for IM/SMS command "subscriptions" msgctxt "COMMANDHELP" msgid "list the people you follow" -msgstr "" +msgstr "список користувачів, до яких ви підписалися" #. TRANS: Help message for IM/SMS command "subscribers" msgctxt "COMMANDHELP" msgid "list the people that follow you" -msgstr "" +msgstr "список користувачів, що підписані до вас" #. TRANS: Help message for IM/SMS command "leave " -#, fuzzy msgctxt "COMMANDHELP" msgid "unsubscribe from user" -msgstr "Відписатись від цього користувача" +msgstr "відписатися від користувача" #. TRANS: Help message for IM/SMS command "d " -#, fuzzy msgctxt "COMMANDHELP" msgid "direct message to user" -msgstr "Пряме повідомлення до %s" +msgstr "пряме повідомлення користувачеві" #. TRANS: Help message for IM/SMS command "get " msgctxt "COMMANDHELP" msgid "get last notice from user" -msgstr "" +msgstr "отримати останній допис користувача" #. TRANS: Help message for IM/SMS command "whois " -#, fuzzy msgctxt "COMMANDHELP" msgid "get profile info on user" -msgstr "Віддалений профіль не є спільнотою!" +msgstr "отримати інформацію про профіль користувача" #. TRANS: Help message for IM/SMS command "lose " msgctxt "COMMANDHELP" msgid "force user to stop following you" -msgstr "" +msgstr "заборонити слідкувати за вашими дописами" #. TRANS: Help message for IM/SMS command "fav " msgctxt "COMMANDHELP" msgid "add user's last notice as a 'fave'" -msgstr "" +msgstr "додати останній допис користувача до свого списку обраних дописів" #. TRANS: Help message for IM/SMS command "fav #" msgctxt "COMMANDHELP" msgid "add notice with the given id as a 'fave'" -msgstr "" +msgstr "додати допис із зазначеним id-номером до списку обраних дописів" #. TRANS: Help message for IM/SMS command "repeat #" msgctxt "COMMANDHELP" msgid "repeat a notice with a given id" -msgstr "" +msgstr "повторити допис із зазначеним id-номером" #. TRANS: Help message for IM/SMS command "repeat " -#, fuzzy msgctxt "COMMANDHELP" msgid "repeat the last notice from user" -msgstr "Повторити цей допис" +msgstr "повторити останній допис користувача" #. TRANS: Help message for IM/SMS command "reply #" msgctxt "COMMANDHELP" msgid "reply to notice with a given id" -msgstr "" +msgstr "відповісти на допис із зазначеним id-номером" #. TRANS: Help message for IM/SMS command "reply " -#, fuzzy msgctxt "COMMANDHELP" msgid "reply to the last notice from user" -msgstr "Відповісти на цей допис" +msgstr "відповісти на останній допис користувача" #. TRANS: Help message for IM/SMS command "join " -#, fuzzy msgctxt "COMMANDHELP" msgid "join group" -msgstr "Невідома спільнота." +msgstr "приєднатися до спільноти" #. TRANS: Help message for IM/SMS command "login" msgctxt "COMMANDHELP" msgid "Get a link to login to the web interface" -msgstr "" +msgstr "Отримати посилання для входу на веб-сторінку" #. TRANS: Help message for IM/SMS command "drop " -#, fuzzy msgctxt "COMMANDHELP" msgid "leave group" -msgstr "Видалити спільноту" +msgstr "залишити спільноту" #. TRANS: Help message for IM/SMS command "stats" -#, fuzzy msgctxt "COMMANDHELP" msgid "get your stats" -msgstr "Оновити свій статус..." +msgstr "отримати свою статистику" #. TRANS: Help message for IM/SMS command "stop" #. TRANS: Help message for IM/SMS command "quit" msgctxt "COMMANDHELP" msgid "same as 'off'" -msgstr "" +msgstr "те ж саме, що й «off»" #. TRANS: Help message for IM/SMS command "sub " msgctxt "COMMANDHELP" msgid "same as 'follow'" -msgstr "" +msgstr "те ж саме, що й «follow»" #. TRANS: Help message for IM/SMS command "unsub " msgctxt "COMMANDHELP" msgid "same as 'leave'" -msgstr "" +msgstr "те ж саме, що й «leave»" #. TRANS: Help message for IM/SMS command "last " msgctxt "COMMANDHELP" msgid "same as 'get'" -msgstr "" +msgstr "те ж саме, що й «get»" #. TRANS: Help message for IM/SMS command "on " #. TRANS: Help message for IM/SMS command "off " @@ -7309,15 +7445,14 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all" #. TRANS: Help message for IM/SMS command "tracks" #. TRANS: Help message for IM/SMS command "tracking" -#, fuzzy msgctxt "COMMANDHELP" msgid "not yet implemented." -msgstr "Виконання команди ще не завершено." +msgstr "ще не запроваджено." #. TRANS: Help message for IM/SMS command "nudge " msgctxt "COMMANDHELP" msgid "remind a user to update." -msgstr "" +msgstr "нагадати користувачеві, аби щось написав" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. msgid "No configuration file found." @@ -7488,9 +7623,8 @@ msgid "URL of the homepage or blog of the group or topic." msgstr "URL-адреса веб-сторінки або тематичного блоґу спільноти" #. TRANS: Text area title for group description when there is no text limit. -#, fuzzy msgid "Describe the group or topic." -msgstr "Опишіть спільноту або тему" +msgstr "Опишіть спільноту або тему." #. TRANS: Text area title for group description. #. TRANS: %d is the number of characters available for the description. @@ -7531,22 +7665,22 @@ msgstr[2] "" "— %d імен." #. TRANS: Dropdown fieldd label on group edit form. -#, fuzzy msgid "Membership policy" -msgstr "Реєстрація" +msgstr "Політика щодо членства" msgid "Open to all" -msgstr "" +msgstr "Відкрито для всіх" msgid "Admin must approve all members" -msgstr "" +msgstr "Адміністратор має схвалити кандидатури всіх членів" #. TRANS: Dropdown field title on group edit form. msgid "Whether admin approval is required to join this group." msgstr "" +"Приєднатися до спільноти стане можливим, як тільки з’явиться підтвердження " +"адміністратора" #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" msgstr "Адмін" @@ -7581,16 +7715,16 @@ msgstr "Учасники спільноти %s" msgctxt "MENU" msgid "Pending members (%d)" msgid_plural "Pending members (%d)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "В очікуванні учасників (%d)" +msgstr[1] "В очікуванні учасників (%d)" +msgstr[2] "В очікуванні учасників (%d)" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "%s pending members" -msgstr "Учасники спільноти %s" +msgstr "Очікують підтвердження в %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. msgctxt "MENU" @@ -7790,10 +7924,26 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s тепер слідкує за вашими дописами на %2$s." +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s тепер слідкує за вашими дописами на %2$s." + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" +"%1$s має бажання долучитися до вашої спільноти %2$s на %3$s. Ви можете " +"прийняти або відхилити цей запит тут %4$s" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "" "Faithfully yours,\n" "%1$s.\n" @@ -7801,22 +7951,17 @@ msgid "" "----\n" "Change your email address or notification options at %2$s" msgstr "" -"%1$s тепер слідкує за вашими дописами на %2$s.\n" -"\n" -"%3$s\n" -"\n" -"%4$s%5$s%6$s\n" "Щиро ваші,\n" -"%2$s.\n" +"%1$s.\n" "\n" "----\n" -"Змінити електронну адресу або умови сповіщення — %7$s\n" +"Змінити електронну адресу або умови сповіщення — %2$s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Profile: %s" -msgstr "Профіль" +msgstr "Профіль: %s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -7826,14 +7971,14 @@ msgstr "Про себе: %s" #. TRANS: This is a paragraph in a new-subscriber e-mail. #. TRANS: %s is a URL where the subscriber can be reported as abusive. -#, fuzzy, php-format +#, php-format msgid "" "If you believe this account is being used abusively, you can block them from " "your subscribers list and report as spam to site administrators at %s." msgstr "" "Якщо ви вважаєте, що цей акаунт використовується неправомірно, ви можете " "заблокувати його у списку своїх читачів і повідомити адміністраторів сайту " -"про факт спаму на %s" +"про факт спаму на %s." #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. @@ -7844,7 +7989,7 @@ msgstr "Нова електронна адреса для надсилання #. TRANS: Body of notification mail for new posting email address. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send #. TRANS: to to post by e-mail, %3$s is a URL to more instructions. -#, fuzzy, php-format +#, php-format msgid "" "You have a new posting address on %1$s.\n" "\n" @@ -7856,10 +8001,7 @@ msgstr "" "\n" "Надсилайте листи на адресу %2$s, і ваші повідомлення будуть опубліковані.\n" "\n" -"Більше інформації про використання електронної пошти — %3$s.\n" -"\n" -"Щиро ваші,\n" -"%1$s" +"Більше інформації про використання електронної пошти — %3$s." #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. @@ -7888,7 +8030,7 @@ msgstr "Вас спробував «розштовхати» %s" #. TRANS: Body for 'nudge' notification email. #. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname, #. TRANS: %3$s is a URL to post notices at. -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " "to post some news.\n" @@ -7899,17 +8041,14 @@ msgid "" "\n" "Don't reply to this email; it won't get to them." msgstr "" -"%1$s (%2$s) цікавиться як ваші справи останнім часом і пропонує про це " -"написати.\n" +"%1$s (%2$s) щиро цікавиться, що в вас сталося нового останнім часом і чекає " +"новин від вас.\n" "\n" -"Може розповісте, що в вас нового? Задовольніть цікавість друзів! :)\n" +"Задовольніть цікавість друга :)\n" "\n" "%3$s\n" "\n" -"Не відповідайте на цей лист; відповідь ніхто не отримає.\n" -"\n" -"З найкращими побажаннями,\n" -"%4$s\n" +"Не відповідайте на цей лист; відповіді ніхто не отримає." #. TRANS: Subject for direct-message notification email. #. TRANS: %s is the sending user's nickname. @@ -7920,7 +8059,7 @@ msgstr "Нове приватне повідомлення від %s" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" "\n" @@ -7944,10 +8083,7 @@ msgstr "" "\n" "%4$s\n" "\n" -"Не відповідайте на цей лист; відповідь ніхто не отримає.\n" -"\n" -"З найкращими побажаннями,\n" -"%5$s\n" +"Не відповідайте на цей лист; відповіді ніхто не отримає." #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -7960,7 +8096,7 @@ msgstr "%1$s (@%2$s) додав(ла) ваш допис обраних" #. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text, #. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename, #. TRANS: %7$s is the adding user's nickname. -#, fuzzy, php-format +#, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" @@ -7976,7 +8112,8 @@ msgid "" "\n" "%5$s" msgstr "" -"%1$s (@%7$s) щойно додав(ла) ваш допис %2$s до обраних.\n" +"%1$s (@%7$s) щойно додав(ла) ваш допис %2$s до свого списку обраних " +"дописів.\n" "\n" "URL-адреса вашого допису:\n" "\n" @@ -7988,10 +8125,7 @@ msgstr "" "\n" "Ви можете переглянути список улюблених дописів %1$s тут:\n" "\n" -"%5$s\n" -"\n" -"Щиро ваші,\n" -"%6$s\n" +"%5$s" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #, php-format @@ -8015,7 +8149,7 @@ msgstr "%1$s (@%2$s) пропонує до вашої уваги наступн #. TRANS: %3$s is a URL to the notice, %4$s is the notice text, #. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty), #. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user, -#, fuzzy, php-format +#, php-format msgid "" "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" @@ -8035,7 +8169,7 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) щойно надіслав(ла) вам повідомлення («@-відповідь») на %2$s.\n" +"%1$s щойно надіслав(ла) вам повідомлення («@-відповідь») на %2$s.\n" "\n" "Повідомлення знаходиться тут:\n" "\n" @@ -8051,12 +8185,7 @@ msgstr "" "\n" "Список всіх @-відповідей, надісланих вам, знаходиться тут:\n" "\n" -"%7$s\n" -"\n" -"З повагою,\n" -"%2$s\n" -"\n" -"P.S. Ви можете вимкнути сповіщення електронною поштою тут: %8$s\n" +"%7$s" #. TRANS: Subject of group join notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. @@ -8064,15 +8193,15 @@ msgstr "" #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. #. TRANS: %5$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "%1$s has joined your group %2$s on %3$s." -msgstr "%1$s долучився до спільноти %2$s." +msgstr "%1$s долучився до спільноти %2$s на %3$s." #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s wants to join your group %2$s on %3$s." -msgstr "%1$s долучився до спільноти %2$s." +msgstr "%1$s має бажання долучитися до вашої спільноти %2$s на %3$s." #. TRANS: Main body of pending group join request notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, @@ -8082,6 +8211,8 @@ msgid "" "%1$s would like to join your group %2$s on %3$s. You may approve or reject " "their group membership at %4$s" msgstr "" +"%1$s має бажання долучитися до вашої спільноти %2$s на %3$s. Ви можете " +"прийняти або відхилити цей запит тут %4$s" msgid "Only the user can read their own mailboxes." msgstr "" @@ -8295,7 +8426,9 @@ msgstr "Відповісти" msgid "Delete this notice" msgstr "Видалити допис" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "Допис повторили" msgid "Update your status..." @@ -8572,28 +8705,77 @@ msgstr "Нічичирк!" msgid "Silence this user" msgstr "Змусити користувача замовкнути, відправити у забуття" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Профіль" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "Підписки" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "%s підписався до наступних людей" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "Підписані" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "Люди підписані до %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "В очікуванні учасників (%d)" + +#. TRANS: Menu item title in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Спільноти" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "Спільноти, до яких залучений %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "Запросити" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "Запросіть друзів та колег приєднатись до вас на %s" msgid "Subscribe to this user" msgstr "Підписатись до цього користувача" +msgid "Subscribe" +msgstr "Підписатись" + msgid "People Tagcloud as self-tagged" msgstr "Хмарка теґів (позначки самих користувачів)" @@ -8656,75 +8838,93 @@ msgid "Error opening theme archive." msgstr "Помилка при відкритті архіву з темою." #. TRANS: Header for Notices section. -#, fuzzy msgctxt "HEADER" msgid "Notices" msgstr "Дописи" #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. -#, fuzzy, php-format +#, php-format msgid "Show reply" msgid_plural "Show all %d replies" -msgstr[0] "Показати %d відповідь" +msgstr[0] "Показати відповідь" msgstr[1] "Показати %d відповіді" msgstr[2] "Показати %d відповідей" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" msgid "You" -msgstr "" +msgstr "Ви" #. TRANS: Separator in list of user names like "You, Bob, Mary". msgid ", " -msgstr "" +msgstr ", " #. TRANS: For building a list such as "You, bob, mary and 5 others have favored this notice". #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. -#, fuzzy, php-format +#, php-format msgctxt "FAVELIST" msgid "%1$s and %2$s" -msgstr "%1$s — %2$s" +msgstr "%1$s та %2$s" #. TRANS: List message for notice favoured by logged in user. -#, fuzzy msgctxt "FAVELIST" msgid "You have favored this notice." -msgstr "Позначити як обране" +msgstr "Ви вже обрали цей допис." -#, fuzzy, php-format +#, php-format msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." -msgstr[0] "Видалити з обраних" -msgstr[1] "Видалити з обраних" -msgstr[2] "Видалити з обраних" +msgstr[0] "Один користувач додав це до списку обраних." +msgstr[1] "%d користувачів додали це до списку обраних." +msgstr[2] "%d користувачів додали це до списку обраних." #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ви вже повторили цей допис." -#, fuzzy, php-format +#, php-format msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." -msgstr[0] "Цей допис вже повторено." -msgstr[1] "Цей допис вже повторено." -msgstr[2] "Цей допис вже повторено." +msgstr[0] "Один користувач повторив цей допис." +msgstr[1] "%d користувачів повторили цей допис." +msgstr[2] "%d користувачів повторили цей допис." #. TRANS: Title for top posters section. msgid "Top posters" msgstr "Топ-дописувачі" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "До" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "Невідоме дієслово: «%s»." + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" msgstr "Розблокувати" #. TRANS: Title for unsandbox form. -#, fuzzy msgctxt "TITLE" msgid "Unsandbox" msgstr "Витягти з пісочниці" @@ -8747,7 +8947,6 @@ msgid "Unsubscribe from this user" msgstr "Відписатись від цього користувача" #. TRANS: Button text on unsubscribe form. -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Відписатись" @@ -8837,7 +9036,30 @@ msgstr "Неправильний XML, корінь XRD відсутній." msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "" -#~ "Повідомлення надто довге, максимум становить %1$d символів, натомість ви " -#~ "надсилаєте %2$d." +#~ msgid "Already repeated that notice." +#~ msgstr "Цей допис вже повторено." + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "Опишіть себе та свої інтереси вкладаючись у %d символ" +#~ msgstr[1] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" +#~ msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "Опишіть себе та свої інтереси" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s, сторінка %2$d" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "Ліцензія «%1$s» не відповідає ліцензії сайту «%2$s»." + +#~ msgid "Invalid group join approval: not pending." +#~ msgstr "Невірне підтвердження приєднання до спільноти: не очікується." + +#~ msgid "Error repeating notice." +#~ msgstr "Помилка при повторенні допису." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 855ba5759d..4251185477 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:44+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-24 15:23:28+0000\n" +"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -81,7 +81,9 @@ msgstr "保存访问设置" #. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text for saving tags for other users. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -93,6 +95,7 @@ msgstr "保存" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "没有这个页面。" @@ -821,16 +824,6 @@ msgstr "你不能删除其他用户的消息。" msgid "No such notice." msgstr "没有这条消息。" -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -msgid "Cannot repeat your own notice." -msgstr "不能转发你自己的消息。" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -msgid "Already repeated that notice." -msgstr "已转发了该消息。" - #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client exception thrown using an unsupported HTTP method. @@ -967,6 +960,8 @@ msgstr "带 %s 标签的消息" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s 上有 %1$s 标签的消息!" @@ -1081,11 +1076,13 @@ msgid "Only group admin can approve or cancel join requests." msgstr "" #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. #, fuzzy msgid "Must specify a profile." msgstr "丢失的个人信息。" #. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -1093,10 +1090,12 @@ msgid "%s is not in the moderation queue for this group." msgstr "该小组的成员列表。" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." msgstr "" @@ -1121,6 +1120,34 @@ msgstr "" msgid "Join request canceled." msgstr "" +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#, fuzzy, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "该小组的成员列表。" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, fuzzy, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "无法把用户%1$s添加到%2$s小组" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, fuzzy, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "%1$s在%2$s时发的消息" + +#. TRANS: Message on page for user after approving a subscription request. +#, fuzzy +msgid "Subscription approved." +msgstr "已授权关注" + +#. TRANS: Message on page for user after rejecting a subscription request. +#, fuzzy +msgid "Subscription canceled." +msgstr "授权已取消。" + #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. @@ -1157,8 +1184,8 @@ msgstr "已经是一种收藏。" #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, php-format -msgid "%s group memberships" +#, fuzzy, php-format +msgid "Group memberships of %s" msgstr "%s 组成员身份" #. TRANS: Subtitle for group membership feed. @@ -1171,8 +1198,7 @@ msgstr "组 %1$s 是在 %2$s 上的成员" msgid "Cannot add someone else's membership." msgstr "无法添加其他人的成员资格。" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when not using the join verb. msgid "Can only handle join activities." msgstr "只能处理加入活动。" @@ -1479,6 +1505,49 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "离开 %2$s 组的 %1$s" +#. TRANS: Client error displayed when trying to leave a group while not logged in. +#. TRANS: Error message displayed trying to delete a notice while not logged in. +#. TRANS: Client error displayed when trying to remove a favorite while not logged in. +#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. +#. TRANS: Client error displayed trying to block a user from a group while not logged in. +#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. +#. TRANS: Client error displayed trying to log out when not logged in. +#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. +#. TRANS: Client error displayed trying to create a new direct message while not logged in. +#. TRANS: Client error displayed trying to send a notice while not logged in. +#. TRANS: Client error displayed trying to nudge a user without being logged in. +#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. +#. TRANS: Client error displayed trying a change a subscription while not logged in. +#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. +#. TRANS: Client error displayed when trying to unsubscribe while not logged in. +#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. +#. TRANS: Client error displayed when trying to change user options while not logged in. +msgid "Not logged in." +msgstr "未登录。" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "请求不含资料页 ID。" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "此 ID 没有用户。" + +#. TRANS: Title after unsubscribing from a group. +#, fuzzy +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "已取消关注" + #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." msgstr "没有确认码" @@ -1681,24 +1750,6 @@ msgstr "不要删除此组。" msgid "Delete this group." msgstr "删除此组。" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. -msgid "Not logged in." -msgstr "未登录。" - #. TRANS: Instructions for deleting a notice. msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " @@ -2361,14 +2412,6 @@ msgstr "用户已有此权限。" msgid "No profile specified." msgstr "没有指定的用户。" -#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -msgid "No profile with that ID." -msgstr "此 ID 没有用户。" - #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. @@ -2964,6 +3007,7 @@ msgid "License selection" msgstr "许可协议选择" #. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private" msgstr "私有" @@ -3692,6 +3736,7 @@ msgid "SSL" msgstr "SSL" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" msgstr "从不" @@ -3845,16 +3890,21 @@ msgstr "你的主页、博客或在其他网站的URL。" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "用不超过%d个字符描述你自己和你的兴趣" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Describe yourself and your interests" +#. TRANS: Text area title on account registration page. +#, fuzzy +msgid "Describe yourself and your interests." msgstr "描述你自己和你的兴趣" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. msgid "Bio" @@ -3867,14 +3917,16 @@ msgid "Location" msgstr "位置" #. TRANS: Tooltip for field label in form for profile settings. -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "你的地理位置,格式类似\"城市,省份,国家\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "你在哪里,像\"城市、 国家(或地区)、国家\"。" #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" msgstr "当发布消息时分享我的地理位置" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label for inputting tags on "tag other users" page. msgid "Tags" msgstr "标签" @@ -3906,6 +3958,28 @@ msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "自动关注任何关注我的人(这个选项适合机器人)" +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +#, fuzzy +msgid "Subscription policy" +msgstr "关注的" + +#. TRANS: Dropdown field option for following policy. +#, fuzzy +msgid "Let anyone follow me" +msgstr "只能跟人。" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). @@ -3935,7 +4009,8 @@ msgstr "无效的标记: %s。" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -msgid "Could not update user for autosubscribe." +#, fuzzy +msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "无法更新用户的自动关注。" #. TRANS: Server error thrown when user profile location preference settings could not be updated. @@ -3943,6 +4018,7 @@ msgid "Could not save location prefs." msgstr "无法保存位置设置。" #. TRANS: Server error thrown when user profile settings tags could not be saved. +#. TRANS: Client error on "tag other users" page when saving tags fails server side. msgid "Could not save tags." msgstr "无法保存标签。" @@ -4272,24 +4348,7 @@ msgstr "仅用于更新、 公告及密码恢复。" msgid "Longer name, preferably your \"real\" name." msgstr "你最好是\"真正的\"的名字的长名称技术。" -#. TRANS: Text area title in form for account registration. Plural -#. TRANS: is decided by the number of characters available for the -#. TRANS: biography (%d). -#, fuzzy, php-format -msgid "Describe yourself and your interests in %d character." -msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "用不超过%d个字符描述你自己和你的兴趣" - -#. TRANS: Text area title on account registration page. -#, fuzzy -msgid "Describe yourself and your interests." -msgstr "描述你自己和你的兴趣" - -#. TRANS: Field title on account registration page. -msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "你在哪里,像\"城市、 国家(或地区)、国家\"。" - -#. TRANS: Field label on account registration page. +#. TRANS: Button text to register a user on account registration page. #, fuzzy msgctxt "BUTTON" msgid "Register" @@ -4401,6 +4460,7 @@ msgid "URL of your profile on another compatible microblogging service." msgstr "另一种兼容的微博客服务配置文件的 URL。" #. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4433,15 +4493,8 @@ msgstr "只有登录的用户才能重复发消息。" msgid "No notice specified." msgstr "没有指定的消息。" -#. TRANS: Client error displayed when trying to repeat an own notice. -msgid "You cannot repeat your own notice." -msgstr "你不能重复自己的消息。" - -#. TRANS: Client error displayed when trying to repeat an already repeated notice. -msgid "You already repeated that notice." -msgstr "你已转发过了那个消息。" - #. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" msgstr "已转发" @@ -4599,6 +4652,7 @@ msgid "StatusNet" msgstr "StatusNet" #. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." msgstr "你不能在这个网站授予用户权限。" @@ -4871,27 +4925,32 @@ msgstr "发送给 %1$s 的 %2$s 消息" msgid "Message from %1$s on %2$s" msgstr "来自 %1$s 的 %2$s 消息" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +#, fuzzy +msgid "Not available." +msgstr "IM 不可用。" + #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." msgstr "消息已删除" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, php-format -msgid "%1$s tagged %2$s" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "%1$s 的标签 %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, php-format -msgid "%1$s tagged %2$s, page %3$d" +#, fuzzy, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s 的标签 %2$s,第%3$d页" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, php-format -msgid "%1$s, page %2$d" -msgstr "%1$s,第%2$d页" +#, fuzzy, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "带%1$s标签的消息,第%2$d页" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -4976,6 +5035,7 @@ msgid "Repeat of %s" msgstr "%s 的转发" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "你不能在这个站点上将用户禁言。" @@ -5263,51 +5323,72 @@ msgstr "" msgid "No code entered." msgstr "没有输入的代码。" -#. TRANS: Menu item for site administration +#. TRANS: Title for admin panel to configure snapshots. +#, fuzzy +msgctxt "TITLE" msgid "Snapshots" msgstr "快照" +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" msgstr "管理快照配置" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "无效的快照运行值。" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "快照频率必须是一个数字。" +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "无效的快照报告 URL。" +#. TRANS: Fieldset legend on admin panel for snapshots. +#, fuzzy +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "快照" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "被访问时随机" +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "按照计划的作业" +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "数据快照" -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +#, fuzzy +msgid "When to send statistical data to status.net servers." msgstr "什么时候将统计数据发送到 status.net 服务器" +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "频率" -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent once every N web hits." msgstr "每第N次访问是发送快照" +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "报告 URL" -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +#, fuzzy +msgid "Snapshots will be sent to this URL." msgstr "快照将被发送到这个 URL" -#. TRANS: Submit button title. -msgid "Save" -msgstr "保存" - -msgid "Save snapshot settings" +#. TRANS: Title for button to save snapshot settings. +#, fuzzy +msgid "Save snapshot settings." msgstr "保存访问设置" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. @@ -5319,6 +5400,27 @@ msgstr "你没有关注这个用户" msgid "Could not save subscription." msgstr "无法保存关注。" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, fuzzy, php-format +msgid "%s subscribers awaiting approval" +msgstr "%s 组成员身份" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, fuzzy, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "%s 的小组成员,第%2$d页" + +#. TRANS: Page notice for group members page. +#, fuzzy +msgid "A list of users awaiting approval to subscribe to you." +msgstr "该小组的成员列表。" + #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "你不能用这个操作关注一个 OMB 0.1 远程用户。" @@ -5436,31 +5538,43 @@ msgstr "SMS" msgid "Notices tagged with %1$s, page %2$d" msgstr "带%1$s标签的消息,第%2$d页" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s标签的消息聚合 (RSS 1.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s标签的消息聚合 (RSS 2.0)" +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s标签的消息聚合 (Atom)" +#. TRANS: Client error displayed on user tag page when trying to add tags without providing a user ID. msgid "No ID argument." msgstr "没有 ID 冲突。" +#. TRANS: Title for "tag other users" page. +#. TRANS: %s is the user nickname. #, php-format msgid "Tag %s" msgstr "将%s加为标签" +#. TRANS: Header for user details on "tag other users" page. msgid "User profile" msgstr "用户页面" +#. TRANS: Fieldset legend on "tag other users" page. msgid "Tag user" msgstr "将用户加为标签" +#. TRANS: Title for input field for inputting tags on "tag other users" page. #, fuzzy msgid "" "Tags for this user (letters, numbers, -, ., and _), separated by commas or " @@ -5468,13 +5582,22 @@ msgid "" msgstr "" "给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" +#. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "你只能给你关注或关注你的人添加标签。" +#. TRANS: Title of "tag other users" page. +#, fuzzy +msgctxt "TITLE" +msgid "Tags" +msgstr "标签" + +#. TRANS: Page notice on "tag other users" page. msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "使用这个表单给你的关注者或你关注的用户添加标签。" +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." msgstr "没有此标签。" @@ -5482,23 +5605,29 @@ msgstr "没有此标签。" msgid "You haven't blocked that user." msgstr "你未屏蔽该用户。" +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." msgstr "用户不在沙盒中。" +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." msgstr "用户未被禁言。" -msgid "No profile ID in request." -msgstr "请求不含资料页 ID。" - +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" msgstr "已取消关注" -#, php-format +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, fuzzy, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "Listenee stream 许可证“‘%1$s” 与本网站的许可证 “%2$s”不兼容。" +#. TRANS: Title of URL settings tab in profile settings. #, fuzzy msgid "URL settings" msgstr "IM 设置" @@ -5513,10 +5642,12 @@ msgstr "管理其他选项。" msgid " (free service)" msgstr "(免费服务)" +#. TRANS: Default value for URL shortening settings. #, fuzzy msgid "[none]" msgstr "无" +#. TRANS: Default value for URL shortening settings. msgid "[internal]" msgstr "" @@ -5528,15 +5659,19 @@ msgstr "缩短 URL 使用" msgid "Automatic shortening service to use." msgstr "要使用的自动短网址服务。" +#. TRANS: Field label in URL settings in profile. msgid "URL longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +#. TRANS: Field label in URL settings in profile. msgid "Text longer than" msgstr "" +#. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" @@ -5545,13 +5680,17 @@ msgstr "" msgid "URL shortening service is too long (maximum 50 characters)." msgstr "短网址服务过长(不能超过50个字符)。" -msgid "Invalid number for max url length." -msgstr "" - +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. #, fuzzy -msgid "Invalid number for max notice length." +msgid "Invalid number for maximum URL length." msgstr "无效的消息内容。" +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +#, fuzzy +msgid "Invalid number for maximum notice length." +msgstr "无效的消息内容。" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." msgstr "" @@ -5629,7 +5768,7 @@ msgstr "保存用户设置。" msgid "Authorize subscription" msgstr "授权关注" -#. TRANS: Page notice on "Auhtorize subscription" page. +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -5640,6 +5779,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. msgctxt "BUTTON" msgid "Accept" msgstr "接受" @@ -5650,6 +5790,7 @@ msgstr "订阅此用户。" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. msgctxt "BUTTON" msgid "Reject" msgstr "拒绝" @@ -5666,9 +5807,11 @@ msgstr "没有授权请求!" msgid "Subscription authorized" msgstr "已授权关注" +#. TRANS: Accept message text from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "已授权关注,但是没有回传 URL。请到网站查看如何授权关注。你的 subscription " @@ -5678,9 +5821,11 @@ msgstr "" msgid "Subscription rejected" msgstr "关注已拒绝" +#. TRANS: Reject message from Authorise subscription page. +#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "关注已拒绝,但是没有回传 URL。请到网站查看如何完全拒绝关注。" @@ -5708,14 +5853,6 @@ msgstr "Listenee URI ‘%s’ 是一个本地用户。" msgid "Profile URL \"%s\" is for a local user." msgstr "个人信息 URL “%s” 是为本地用户的。" -#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. -#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#, fuzzy, php-format -msgid "" -"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" -"\"." -msgstr "Listenee stream 许可证“‘%1$s” 与本网站的许可证 “%2$s”不兼容。" - #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, fuzzy, php-format @@ -5928,18 +6065,6 @@ msgstr[0] "这么大的文件会超过你%d字节的每月配额。" msgid "Invalid filename." msgstr "无效的文件名。" -#. TRANS: Exception thrown when joining a group fails. -msgid "Group join failed." -msgstr "加入小组失败。" - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -msgid "Not part of group." -msgstr "不是小组成员。" - -#. TRANS: Exception thrown when trying to leave a group fails. -msgid "Group leave failed." -msgstr "离开小组失败。" - #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. #, php-format @@ -5952,6 +6077,18 @@ msgstr "无效的用户 ID %s。" msgid "Group ID %s is invalid." msgstr "小组 ID %s 无效。" +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "加入小组失败。" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "不是小组成员。" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "离开小组失败。" + #. TRANS: Activity title. msgid "Join" msgstr "加入" @@ -6022,6 +6159,35 @@ msgstr "你在短时间里发布了过多的重复消息,请深呼吸,过几 msgid "You are banned from posting notices on this site." msgstr "在这个网站你被禁止发布消息。" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +#, fuzzy +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "不能转发你自己的消息。" + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "你不能重复自己的消息。" + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +#, fuzzy +msgid "Cannot repeat a private notice." +msgstr "不能转发你自己的消息。" + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +#, fuzzy +msgid "Cannot repeat a notice you cannot read." +msgstr "不能转发你自己的消息。" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "你已转发过了那个消息。" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, fuzzy, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "用户没有最后一条的消息。" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. msgid "Problem saving notice." @@ -6047,16 +6213,13 @@ msgstr "无法保存回复,%1$d 对 %2$d。" msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#. TRANS: Exception thrown trying to approve a non-existing group join request. -msgid "Invalid group join approval: not pending." -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). #, php-format @@ -6105,7 +6268,9 @@ msgstr "无法删除关注 OMB token。" msgid "Could not delete subscription." msgstr "无法取消关注。" -#. TRANS: Activity tile when subscribing to another person. +#. TRANS: Activity title when subscribing to another person. +#, fuzzy +msgctxt "TITLE" msgid "Follow" msgstr "关注" @@ -6173,18 +6338,24 @@ msgid "User deletion in progress..." msgstr "用户删除处理中……" #. TRANS: Link title for link on user profile. -msgid "Edit profile settings" +#, fuzzy +msgid "Edit profile settings." msgstr "编辑个人信息设置" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Edit" msgstr "编辑" #. TRANS: Link title for link on user profile. -msgid "Send a direct message to this user" +#, fuzzy +msgid "Send a direct message to this user." msgstr "给该用户发送私信" #. TRANS: Link text for link on user profile. +#, fuzzy +msgctxt "BUTTON" msgid "Message" msgstr "私信" @@ -6206,10 +6377,6 @@ msgctxt "role" msgid "Moderator" msgstr "审核员" -#. TRANS: Link text for link that will subscribe to a remote profile. -msgid "Subscribe" -msgstr "关注" - #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format msgid "%1$s - %2$s" @@ -6459,6 +6626,10 @@ msgstr "网站消息" msgid "Snapshots configuration" msgstr "更改站点配置" +#. TRANS: Menu item for site administration +msgid "Snapshots" +msgstr "快照" + #. TRANS: Menu item title/tooltip msgid "Set site license" msgstr "设置网站许可协议" @@ -6603,6 +6774,10 @@ msgstr "该应用默认的访问权限:只读或读写" msgid "Cancel" msgstr "取消" +#. TRANS: Submit button title. +msgid "Save" +msgstr "保存" + msgid " by " msgstr " by " @@ -6666,6 +6841,12 @@ msgctxt "BUTTON" msgid "Cancel join request" msgstr "" +#. TRANS: Button text for form action to cancel a subscription request. +#, fuzzy +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "所有关注的" + #. TRANS: Title for command results. msgid "Command results" msgstr "执行结果" @@ -6812,10 +6993,6 @@ msgstr "发送消息出错。" msgid "Notice from %s repeated." msgstr "来自 %s 的消息已转发。" -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -msgid "Error repeating notice." -msgstr "转发消息时出错。" - #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. #, php-format @@ -7544,6 +7721,20 @@ msgstr "" msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s 开始关注你在 %2$s 的消息。" +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, fuzzy, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "%1$s 开始关注你在 %2$s 的消息。" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. @@ -8040,7 +8231,9 @@ msgstr "回复" msgid "Delete this notice" msgstr "删除" -msgid "Notice repeated" +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +#, fuzzy +msgid "Notice repeated." msgstr "消息已转发" msgid "Update your status..." @@ -8320,28 +8513,77 @@ msgstr "禁言" msgid "Silence this user" msgstr "将此用户禁言" -#, php-format -msgid "People %s subscribes to" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "个人信息" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscriptions" +msgstr "关注的" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People %s subscribes to." msgstr "%s关注的用户" -#, php-format -msgid "People subscribed to %s" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Subscribers" +msgstr "关注者" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "People subscribed to %s." msgstr "关注了%s的用户" +#. TRANS: Menu item in local navigation menu. #, php-format -msgid "Groups %s is a member of" +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "小组" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Groups %s is a member of." msgstr "%s 组是成员组成了" +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Invite" msgstr "邀请" -#, php-format -msgid "Invite friends and colleagues to join you on %s" +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s." msgstr "邀请朋友和同事来%s一起和你交流" msgid "Subscribe to this user" msgstr "关注这个用户" +msgid "Subscribe" +msgstr "关注" + msgid "People Tagcloud as self-tagged" msgstr "自己添加标签的用户标签云" @@ -8449,6 +8691,28 @@ msgstr[0] "已转发了该消息。" msgid "Top posters" msgstr "灌水精英" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +#, fuzzy +msgctxt "LABEL" +msgid "To:" +msgstr "到" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, fuzzy, php-format +msgid "Unknown to value: \"%s\"." +msgstr "未知的动词:“%s”" + #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" @@ -8560,5 +8824,25 @@ msgstr "不合法的XML, 缺少XRD根" msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" -#~ msgid "Message too long - maximum is %1$d characters, you sent %2$d." -#~ msgstr "消息包含%2$d个字符,超出长度限制 - 不能超过%1$d个字符。" +#~ msgid "Already repeated that notice." +#~ msgstr "已转发了该消息。" + +#~ msgid "Describe yourself and your interests in %d character" +#~ msgid_plural "Describe yourself and your interests in %d characters" +#~ msgstr[0] "用不超过%d个字符描述你自己和你的兴趣" + +#~ msgid "Describe yourself and your interests" +#~ msgstr "描述你自己和你的兴趣" + +#~ msgid "Where you are, like \"City, State (or Region), Country\"" +#~ msgstr "你的地理位置,格式类似\"城市,省份,国家\"" + +#~ msgid "%1$s, page %2$d" +#~ msgstr "%1$s,第%2$d页" + +#~ msgid "" +#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +#~ msgstr "Listenee stream 许可证“‘%1$s” 与本网站的许可证 “%2$s”不兼容。" + +#~ msgid "Error repeating notice." +#~ msgstr "转发消息时出错。" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index e8d890ccb6..b987e8a6b5 100644 --- a/plugins/APC/locale/APC.pot +++ b/plugins/APC/locale/APC.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po index b7587f9c73..1fc40bf2cc 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index f0d0528dc5..c172c7a488 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po index bb8ad1af0b..ae58038b55 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index a8a67ab806..1c7e8dff92 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index 3b82e8ece0..19e2ccc30b 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index b090051416..97736a1e35 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po index 05f0b733c9..89591422a9 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index 80ce60e050..a7c27d0e34 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index d38c17ceda..0f0935ff20 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index f1ba6e0aba..c11b7dd1ff 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index 2b6b40b393..ce705f0d4a 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index 5d3bae13dd..4e1dca8684 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 7998f59012..d2856a8c2e 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index 2caad8318c..895f54117d 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po index 25c3545c3d..b56f2dccbf 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index 8403c3825b..d23b9e9d66 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index 1e58d80f69..5d16e6be06 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index 335e244922..3abbe0f819 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po index e8fdd706d3..d9fcdbe8d0 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/AccountManager/locale/AccountManager.pot b/plugins/AccountManager/locale/AccountManager.pot index 2b675a5fcf..a4af2f738f 100644 --- a/plugins/AccountManager/locale/AccountManager.pot +++ b/plugins/AccountManager/locale/AccountManager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po index 0c94eff621..20a724bae4 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po index 65c397896b..7bc72708e9 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index 1f6da8b17c..5705651127 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:05:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po index b740efece3..ca205eebc6 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:05:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po index 9645d53fb3..ccb2c7f9cb 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po index fdd785caf1..436ba84466 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po index ceef824ba2..0d47fde763 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po index e075074703..a475a905a7 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po index 67c64b579c..891b3f03d5 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po index 11f4b036ba..b5f9dd1d7c 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:09+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index a6b3cce819..b9fca0f07c 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po index b525784d2f..42edb14b1c 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:46+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index 7961e6064c..69d0a987d2 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:46+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index 5df51c487c..2a3068b9d9 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:46+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index e4c3975919..122c165054 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index d310bba025..e86ec357ec 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index 2f67e906f9..9366c66530 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 1d45128588..a214de8f5b 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index 14278605e5..4810bac90b 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 3b0584d154..8dd1185a4c 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po index 2a5964883d..e8064a5462 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index bbd6784288..912d9410fc 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po index 316289d363..83adad0eda 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index 3f14ccff9e..a43f0ae665 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index e915551c9e..6ff75b1ea3 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index 484e9110ed..019736d3b9 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index fc13ada543..fbc26d4aa2 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 697809377b..55d6d2e21e 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index 4c4aae5ddf..2622bdf2a9 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Aim/locale/Aim.pot b/plugins/Aim/locale/Aim.pot index a628d302e2..12a498e7a7 100644 --- a/plugins/Aim/locale/Aim.pot +++ b/plugins/Aim/locale/Aim.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po index 0d4ed7816a..bf5f962ec7 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po index c5b65b0c5e..774d26fefd 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po index f27a9692ac..61d634c899 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po index 8007943bea..064b5a844a 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po index 7e35aace6f..30619fc730 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po index 005f260479..6bd0ee8690 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po index 5db514bbf0..7980536363 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po index c4c3dc96d2..7200911035 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index b34b0ec3b5..75f0f173e7 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po index 8e9293b0b8..a9748d6d56 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index e3b7ad49bc..a1e210e127 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index 739646045e..646f5a3c5a 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index 0f1ec74697..573826a872 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index 13ec72888e..9248ed5e95 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index 0662404e9d..4fa91e5210 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index a22ad4e30c..788f724da2 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index e6624fb419..1af49d153b 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index e0a26e499b..82aa5db5a9 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:13+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po index 40f7d59e38..53e00eb2cc 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po index 597690ae6b..9ec2142777 100644 --- a/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index da583ee4b1..e154380868 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 3d5f83689a..1a528c556b 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 5985b8e9a7..b525cd5fe5 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po index 9bde7d62c3..3833e95e03 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po index 9d83e22db4..4fb062eb4b 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index 598d536df8..2940e96e19 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index 8e444fe93e..363803e4cf 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index 9eb28d2577..be8a982bb5 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index f3fa8946ee..e3d02e028c 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index a6b3f1f5a0..98334215e2 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index bf04dbc497..a9f4bf1dc3 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index 901c16a04d..78c867a61a 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 718a7f44b2..1534a4204b 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index 8a07f5f496..e185dddfa7 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po index e79285127f..38d2ff6658 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 2e1c107818..a9fc9e329f 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po index 3233315fb2..6ef4d75f49 100644 --- a/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po index 4b862e0670..bf715deaac 100644 --- a/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index 73bddc672b..d80ac88e9b 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index 3a0b30b939..3e43082b68 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po index 6e4affefc5..0f40e35cc7 100644 --- a/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 4d2b5746b7..14a17fed31 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index 11055449f3..edc5621a47 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 56f80dc111..712ef07b9e 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po index cc4cc0d18d..ad8f985fae 100644 --- a/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po index fa0a949bae..b7b5544f9c 100644 --- a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index b77a1a243a..d24390c48a 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index f1a78ac834..33d9d84c63 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:15+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po index 8853592b0e..ebc38e2696 100644 --- a/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po index 144e12d4df..aac1e66a03 100644 --- a/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po index 94113990de..670a421abe 100644 --- a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index cf31972397..191754348c 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 09c11bd389..7701b50637 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po index e55a039c10..9898055ed0 100644 --- a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:16+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:51:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Awesomeness/locale/Awesomeness.pot b/plugins/Awesomeness/locale/Awesomeness.pot index cd0994288b..d7c118dc5e 100644 --- a/plugins/Awesomeness/locale/Awesomeness.pot +++ b/plugins/Awesomeness/locale/Awesomeness.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po index 3b81540a7a..fef1c846a9 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po index 01420bf59e..7c5069e9c8 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po index b7c6e9691c..de7e30993b 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:14+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po index 570da43e09..44c6ec8a75 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po index 4fb3cbab06..e37ca29d6d 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po index 617c2cb75e..f26e112d18 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po index bc1377c7ff..f3f9bd277b 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po index c9b1aed190..c32c5621c6 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po index ad854bd44f..74a3a9aef8 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index ae886f19d0..e3e2201ab0 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index a6b29e5950..db507c3bba 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -55,7 +55,12 @@ msgstr "" msgid "API key" msgstr "" -#: bitlyadminpanelaction.php:236 +#: bitlyadminpanelaction.php:237 +msgctxt "BUTTON" +msgid "Save" +msgstr "" + +#: bitlyadminpanelaction.php:240 msgid "Save bit.ly settings" msgstr "" diff --git a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po index f19d532c8c..08bc86c61a 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -61,6 +61,10 @@ msgstr "Імя карыстальніка" msgid "API key" msgstr "API-ключ" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Захаваць устаноўкі bit.ly" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po index e44488355d..ebc328c4a3 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -55,6 +55,10 @@ msgstr "Nom de sessió" msgid "API key" msgstr "Clau API" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Desa els paràmetres de bit.ly" diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index fbc054fd58..a586f3a100 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -57,6 +57,10 @@ msgstr "Benutzername" msgid "API key" msgstr "API-Schlüssel" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "bit.ly-Einstellungen speichern" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 012c99e91d..f124346bd3 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -58,6 +58,10 @@ msgstr "Nom d’utilisateur" msgid "API key" msgstr "Clé API" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Sauvegarder les paramètres bit.ly" diff --git a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po index f0e1d89f40..e39f680cd8 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -51,6 +51,10 @@ msgstr "Nome de usuario" msgid "API key" msgstr "" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Gardar a configuración bit.ly" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 2a2d07ff95..0f62020064 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -56,6 +56,10 @@ msgstr "Nomine de conto" msgid "API key" msgstr "Clave API" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Salveguardar configurationes de bit.ly" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 27af8f2bb3..04eb1c0752 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -56,6 +56,10 @@ msgstr "Корисничко име" msgid "API key" msgstr "API-клуч" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Зачувај нагодувања на bit.ly" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index f1b8871b6e..10808521cb 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -54,6 +54,10 @@ msgstr "Innloggingsnavn" msgid "API key" msgstr "API-nøkkel" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Lagre bit.ly-innstillinger" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index 67f5f0a519..e17c2489b4 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -55,6 +55,10 @@ msgstr "Gebruikersnaam" msgid "API key" msgstr "API-sleutel" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "bit.ly-instellingen opslaan" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index 98f264d908..259d4733f0 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -61,6 +61,10 @@ msgstr "Имя учётной записи" msgid "API key" msgstr "Ключ API" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Сохранить настройки bit.ly" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index 201b8e76d7..2d4a407565 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -60,6 +60,10 @@ msgstr "Лоґін" msgid "API key" msgstr "API-ключ" +msgctxt "BUTTON" +msgid "Save" +msgstr "" + msgid "Save bit.ly settings" msgstr "Зберегти налаштування bit.ly" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index e2bd9ffdb1..16dbe5dc32 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po index 7b95c00ef9..4370278e1f 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po index d848530f3f..14d9f5fc1a 100644 --- a/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index fdb8bba0bb..fe768c3bdb 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po index 14eaec7b66..67aa1d0ff5 100644 --- a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index 65a4d2d4d1..b999401c29 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index 71beb0094a..809a0b83dd 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index 5593e348fd..748d254f29 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index 71e8a2e05e..bcaada9d56 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po index ee06097e81..8eb0770cb4 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index bbe1c9ea1f..48af1ec663 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index c5306851dd..4ffea9ddd7 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index 25849abf21..591d0dca04 100644 --- a/plugins/BlankAd/locale/BlankAd.pot +++ b/plugins/BlankAd/locale/BlankAd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po index 3343b68da1..b0288f6db6 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index c622979312..100cdfb430 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po index bec996a454..3babcf8532 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index b4f863ee42..8d4d720e5f 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po index 27a86dadd3..5cbf275a6b 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index 73a7381f8a..1157313dd9 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index 7303883874..63c3266380 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index d9e5f4863a..ed864303a2 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index 6c62d1ebb2..b447cff7d9 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index a711540fb3..9e35ffb44b 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index 4b3b10e44e..3c41bdb06a 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index 1b03637489..e8b718dbde 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index 3628a413c1..3e76d8bb60 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index d835dfac8e..31638775d7 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index 9b6fab65b6..f3b9a5b7d3 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po index c51f220f74..267051f0df 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:55+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 35bfb8e11d..d3c08f7e1b 100644 --- a/plugins/BlogspamNet/locale/BlogspamNet.pot +++ b/plugins/BlogspamNet/locale/BlogspamNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: BlogspamNetPlugin.php:87 +#, php-format +msgid "Spam checker results: %s" +msgstr "" + #: BlogspamNetPlugin.php:152 msgid "Plugin to check submitted notices with blogspam.net." msgstr "" diff --git a/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po index ad57835b14..ac10ad7947 100644 --- a/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "" "Дапаўненьне для праверкі дасланых абвяшчэньняў з дапамогай blogspam.net." diff --git a/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po index 77fb96e2be..c980eab579 100644 --- a/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Astenn evit gwiriañ gant blogspam.net ar c'hmennoù kaset." diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index 0da6d91fa2..7bbbc9615c 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plugin zur Überprüfung von Nachrichten mit blogspam.net." diff --git a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po index 1424af8664..729b0619d8 100644 --- a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Extensión para revisar los mensajes enviados con blogspam.net." diff --git a/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po index a97cb31b11..9dcec91d04 100644 --- a/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po @@ -10,17 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Liitännäinen viestien tarkastamiseen blogspam.net-palvelun avulla." diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index b4f678b5bc..aa97ead503 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Extension pour vérifier avec blogspam.net les avis soumis." diff --git a/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po index f35aab1e82..54b0c7c80b 100644 --- a/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "תוסף לבדיקת ההתרעות הנשלחות מול blogspam.net." diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 5349f25373..209d4f0b7b 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plug-in pro verificar notas submittite contra blogspam.net." diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index 53e4a1cb7c..618c189276 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Приклучок за проверка на поднесените забелешки со blogspam.net." diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 84808b8b83..4acca76050 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Utvidelse for å sjekke innsendte notiser med blogspam.net." diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index 301de3559d..1d2cf5a46a 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plug-in om mededelingen te controleren tegen blogspam.net." diff --git a/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po index 88c8cf6033..c1708d2ad8 100644 --- a/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plugin para verificar mensagens submetidas com o blogspam.net." diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index c8dcf1876c..d7936b570d 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "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" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Плагин для проверки отправленных сообщений с помощью blogspam.net." diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 52ceeb6053..f9675c4584 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "" "Pamasak upang masuri ang ipinasang mga pabatid sa pamamagitan ng blogspam." diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index c48218b2b7..429343e847 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "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" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "Додаток для перевірки вказаних повідомлень на blogspam.net." diff --git a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po index 32b13c7135..2e12b94d36 100644 --- a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:22+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Spam checker results: %s" +msgstr "" + msgid "Plugin to check submitted notices with blogspam.net." msgstr "通过 blogspam.net 检查发布的消息的插件。" diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 5ac2a225d7..37e57dfc64 100644 --- a/plugins/Bookmark/locale/Bookmark.pot +++ b/plugins/Bookmark/locale/Bookmark.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,20 +16,224 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: deliciousbackupimporter.php:85 +msgid "Bad import file." +msgstr "" + +#: deliciousbackupimporter.php:168 +msgid "No tag in a
." +msgstr "" + +#: deliciousbackupimporter.php:176 +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +#: showbookmark.php:60 showbookmark.php:68 +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#: showbookmark.php:85 +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + #: BookmarkPlugin.php:233 msgid "Simple extension for supporting bookmarks." msgstr "" -#: BookmarkPlugin.php:642 +#: BookmarkPlugin.php:277 importdelicious.php:61 +msgid "Import del.icio.us bookmarks" +msgstr "" + +#: BookmarkPlugin.php:382 +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +#: BookmarkPlugin.php:475 +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + +#: BookmarkPlugin.php:643 msgid "Bookmark" msgstr "" +#: bookmarkpopup.php:58 +#, php-format +msgid "Bookmark on %s" +msgstr "" + +#: Bookmark.php:202 Bookmark.php:212 +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#: Bookmark.php:294 +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#: Bookmark.php:300 +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +#: noticebyurl.php:70 +msgid "Unknown URL" +msgstr "" + +#: noticebyurl.php:92 +#, php-format +msgid "Notices linking to %s" +msgstr "" + +#: importdelicious.php:79 +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +#: importdelicious.php:85 +msgid "You may not restore your account." +msgstr "" + +#: importdelicious.php:124 importdelicious.php:149 +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +#: importdelicious.php:132 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +#: importdelicious.php:138 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +#: importdelicious.php:144 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +#: importdelicious.php:153 +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +#: importdelicious.php:157 +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +#: importdelicious.php:161 +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +#: importdelicious.php:167 +msgid "System error uploading file." +msgstr "" + +#: importdelicious.php:186 +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +#: importdelicious.php:222 +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +#: importdelicious.php:225 +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +#: importdelicious.php:313 +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + #: importdelicious.php:340 msgctxt "BUTTON" msgid "Upload" msgstr "" +#: importdelicious.php:343 +msgid "Upload the file" +msgstr "" + +#: bookmarkform.php:124 +msgctxt "LABEL" +msgid "Title" +msgstr "" + +#: bookmarkform.php:126 +msgid "Title of the bookmark" +msgstr "" + +#: bookmarkform.php:131 +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#: bookmarkform.php:133 +msgid "URL to bookmark" +msgstr "" + +#: bookmarkform.php:138 +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +#: bookmarkform.php:140 +msgid "Comma- or space-separated list of tags" +msgstr "" + +#: bookmarkform.php:145 +msgctxt "LABEL" +msgid "Description" +msgstr "" + +#: bookmarkform.php:147 +msgid "Description of the URL" +msgstr "" + #: bookmarkform.php:162 msgctxt "BUTTON" msgid "Save" msgstr "" + +#: newbookmark.php:65 +msgid "New bookmark" +msgstr "" + +#: newbookmark.php:83 +msgid "Must be logged in to post a bookmark." +msgstr "" + +#: newbookmark.php:133 +msgid "Bookmark must have a title." +msgstr "" + +#: newbookmark.php:137 +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +#: newbookmark.php:159 +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#: importbookmarks.php:78 +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index 2389a45a01..5598bc0a68 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -23,16 +23,179 @@ msgstr "" "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "علّم" +#, fuzzy, php-format +msgid "Bookmark on %s" +msgstr "علّم" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "ارفع" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#, fuzzy +msgid "URL to bookmark" +msgstr "علّم" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "احفظ" + +#, fuzzy +msgid "New bookmark" +msgstr "علّم" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/br/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/br/LC_MESSAGES/Bookmark.po index 6c3d412efb..52f3cbc84e 100644 --- a/plugins/Bookmark/locale/br/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/br/LC_MESSAGES/Bookmark.po @@ -9,28 +9,189 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Enporzhiañ" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index f8188b455a..5b55789ac1 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -9,28 +9,189 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "Einfache Erweiterung zur Unterstützung von Lesezeichen." +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Hochladen" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Speichern" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index 9d04d357e8..11b9d33f80 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -10,28 +10,191 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "Simple extension pour supporter les signets." +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "Favoris" +#, fuzzy, php-format +msgid "Bookmark on %s" +msgstr "Favoris" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Téléverser" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#, fuzzy +msgid "URL to bookmark" +msgstr "Favoris" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Sauvegarder" + +#, fuzzy +msgid "New bookmark" +msgstr "Favoris" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index ac08c24d9b..1f7e2dfa66 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,28 +9,191 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "Extension simple pro supportar marcapaginas." +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "Marcapaginas" +#, fuzzy, php-format +msgid "Bookmark on %s" +msgstr "Marcapaginas" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Incargar" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#, fuzzy +msgid "URL to bookmark" +msgstr "Marcapaginas" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" + +#, fuzzy +msgid "New bookmark" +msgstr "Marcapaginas" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index edf8af0487..3fe1db4a91 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,28 +9,191 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "Прост додаток за поддршка на обележувачи." +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "Одбележи" +#, fuzzy, php-format +msgid "Bookmark on %s" +msgstr "Одбележи" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Подигни" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#, fuzzy +msgid "URL to bookmark" +msgstr "Одбележи" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" + +#, fuzzy +msgid "New bookmark" +msgstr "Одбележи" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/my/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/my/LC_MESSAGES/Bookmark.po index 3d8b573447..e58bc0e31c 100644 --- a/plugins/Bookmark/locale/my/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/my/LC_MESSAGES/Bookmark.po @@ -9,28 +9,189 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Burmese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: my\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Upload တင်ရန်" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "သိမ်းရန်" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index ba8a9b99b6..f45b945ba6 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,28 +9,191 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "Eenvoudige extensie voor de ondersteuning van bladwijzers." +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "Bladwijzer" +#, fuzzy, php-format +msgid "Bookmark on %s" +msgstr "Bladwijzer" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Uploaden" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#, fuzzy +msgid "URL to bookmark" +msgstr "Bladwijzer" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" + +#, fuzzy +msgid "New bookmark" +msgstr "Bladwijzer" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/ru/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ru/LC_MESSAGES/Bookmark.po index a43a7c65ed..3bd8d9a5a2 100644 --- a/plugins/Bookmark/locale/ru/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ru/LC_MESSAGES/Bookmark.po @@ -9,29 +9,190 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bookmark\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" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Загрузить" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/te/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/te/LC_MESSAGES/Bookmark.po index 65c6428e5a..5c8b483239 100644 --- a/plugins/Bookmark/locale/te/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/te/LC_MESSAGES/Bookmark.po @@ -9,28 +9,189 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "ఎక్కించు" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index 5f3339e233..43aac490c0 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,29 +9,192 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "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" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "Простий додаток, що підтримує додавання закладок." +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "Закладка" +#, fuzzy, php-format +msgid "Bookmark on %s" +msgstr "Закладка" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "Завантажити" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#, fuzzy +msgid "URL to bookmark" +msgstr "Закладка" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" + +#, fuzzy +msgid "New bookmark" +msgstr "Закладка" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/Bookmark/locale/zh_CN/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/zh_CN/LC_MESSAGES/Bookmark.po index cf9e1b4551..b080c13d8a 100644 --- a/plugins/Bookmark/locale/zh_CN/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/zh_CN/LC_MESSAGES/Bookmark.po @@ -9,29 +9,190 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:23+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:52:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "Bad import file." +msgstr "" + +msgid "No tag in a
." +msgstr "" + +msgid "Skipping private bookmark." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "" + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "" + msgid "Simple extension for supporting bookmarks." msgstr "支持书签的简单扩展。" +msgid "Import del.icio.us bookmarks" +msgstr "" + +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "" + +msgid "Bookmark notice with the wrong number of attachments." +msgstr "" + msgid "Bookmark" msgstr "" +#, php-format +msgid "Bookmark on %s" +msgstr "" + +msgid "Bookmark already exists." +msgstr "" + +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "" + +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" + +msgid "Unknown URL" +msgstr "" + +#, php-format +msgid "Notices linking to %s" +msgstr "" + +msgid "Only logged-in users can import del.icio.us backups." +msgstr "" + +msgid "You may not restore your account." +msgstr "" + +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is too large. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload has been stopped +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed +msgid "System error uploading file." +msgstr "" + +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" + +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "" + +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "" + msgctxt "BUTTON" msgid "Upload" msgstr "上载" +msgid "Upload the file" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL to bookmark" +msgstr "" + +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +msgid "Comma- or space-separated list of tags" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the URL" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "保存" + +msgid "New bookmark" +msgstr "" + +msgid "Must be logged in to post a bookmark." +msgstr "" + +msgid "Bookmark must have a title." +msgstr "" + +msgid "Bookmark must have an URL." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index eb3b1c6de7..975f45892a 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po index 5b0c029c6b..6a30328856 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po index a89fe457e6..c6e4efd3a8 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index f0eb2bcfac..ec17a72986 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index bf5c27ce23..05430c6941 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index 61d8bd11cb..23e2569529 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index 4ff55a662f..44aafa5a51 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index e37bfd9aec..77acecd3bc 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index 2821a1540f..33be8c843a 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index d4278c1bac..3bbf3d1409 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index eaa0dc6ee8..440829d48f 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index a39a67ee7a..bd2adb9559 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index dd8fcb6b4c..da5d1b11cd 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index 8052a249a7..91b6057a62 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index 00d771d55e..22be492e57 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:24+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index d87ffe786a..6c45e2d956 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po index 138f513524..e2a51ea7b0 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po index c2c7ce2df7..547b673e25 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index 9d4f7041c9..7b5a94c6b2 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index 0324c705fb..69f64152a7 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index c0de64c6f6..2586fbc61b 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index af129318b8..db4d8bb652 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index 5f97bc3baa..6ac34183c5 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index 07d66e76e9..3484092d05 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po index 96806440bd..75dbb481dc 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po index bb8235cfab..77facd6e8c 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 3a58ee78de..21626b8fd0 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po index c8e1c9f299..f30b169530 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 2e0da97cb3..5f61b81a4c 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po index ae2d1e0515..3f05a1d843 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po index 6baf68612a..a2d5592fa9 100644 --- a/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index 747a5d758b..8691327ff3 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index 32ac40fd33..924303b542 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index 898076322b..98fbf9aa1e 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index 1ef6aab59a..c37f2ce1be 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index 6c59721f61..11553c01d4 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index d9c51cf5cc..10542ff902 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index 4dca23b0e4..d9e353e2cf 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index ff63f9b199..64e711b3de 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index 57645e479f..ba4da899fe 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po index 9d9e4343e7..f3a71ea0de 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index b492226b54..ba206b4e87 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index 6fca22a77e..07861a5ad3 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po index 87cd57cca4..d8c91f5135 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:12:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index 740d416f6a..e05c894348 100644 --- a/plugins/Comet/locale/Comet.pot +++ b/plugins/Comet/locale/Comet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,8 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: CometPlugin.php:114 -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#: CometPlugin.php:116 +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" diff --git a/plugins/Comet/locale/be-tarask/LC_MESSAGES/Comet.po b/plugins/Comet/locale/be-tarask/LC_MESSAGES/Comet.po index 97fdf8605f..a7bac13abf 100644 --- a/plugins/Comet/locale/be-tarask/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/be-tarask/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Дапаўненьне для абнаўленьняў у «рэальным часе» з выкарыстаньнем Comet/Bayeux." diff --git a/plugins/Comet/locale/br/LC_MESSAGES/Comet.po b/plugins/Comet/locale/br/LC_MESSAGES/Comet.po index 8568e7a0cf..173b899346 100644 --- a/plugins/Comet/locale/br/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/br/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Un astenn evit ober hizivadennoù \"war ar prim\" en ur implijout Comet/" "Bayeux." diff --git a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po index 60e883e0cd..43978d6728 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Plugin für Echtzeit-Aktualisierungen mit Comet/Bayeux." diff --git a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po index d9063144d7..f77e757f53 100644 --- a/plugins/Comet/locale/es/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/es/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Extensión para hacer actualizaciones en \"tiempo real\" utilizando Comet/" "Bayeux." diff --git a/plugins/Comet/locale/fi/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fi/LC_MESSAGES/Comet.po index bb6bbb2d11..9b911941b0 100644 --- a/plugins/Comet/locale/fi/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fi/LC_MESSAGES/Comet.po @@ -10,19 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:25+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Liitännäinen \"reaaliaikaisten\" päivitysten tekemiseen Comet/Bayeux-" "yhteyskäytäntöjä käyttäen." diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index eb998d1a07..6dbe1699e4 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Extension pour réaliser des mises à jour « en temps réel » en utilisant Comet/" "Bayeux." diff --git a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po index 2bf2befedf..3dc3915e1c 100644 --- a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "תוסף לביצוע עדכונים \"בזמן אמת\" באמצעות Comet/Bayeux." diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index 3d29d12892..57b578e5f7 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Plug-in pro facer actualisationes \"in directo\" usante Comet/Bayeux." diff --git a/plugins/Comet/locale/id/LC_MESSAGES/Comet.po b/plugins/Comet/locale/id/LC_MESSAGES/Comet.po index 40289d9b9f..6ac73b6f53 100644 --- a/plugins/Comet/locale/id/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/id/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Pengaya untuk membuat pemutakhiran langsung menggunakan Comet/Bayeux." diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index f24b91cc0e..ac8e409cd2 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Приклучок за вршење на поднови „во живо“ со Comet/Bayeux." diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index 3895422090..dde5795b68 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Utvidelse for å gjøre «sanntids»-oppdateringer med Comet/Bayeux." diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index 182742f975..4bf8902bb6 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,17 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Plug-in om \"real time\" updates te brengen via Comet/Bayeux." diff --git a/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po b/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po index 72f711d52f..ff362e9b8e 100644 --- a/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/pt/LC_MESSAGES/Comet.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Plugin para fazer actualizações em \"tempo real\" utilizando Comet/Bayeux." diff --git a/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po index 22f4d86cfa..d3e959bcfb 100644 --- a/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/pt_BR/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Plugin para realizar atualizações em \"tempo real\" usando Comet/Bayeux." diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po index bc8275ad61..6bb1550381 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-comet\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" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "Плагин для обновлений в «реальном времени» с помощью Comet/Bayeux." diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index 7fed0c8e40..1d9b629bb5 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Pamasak upang makagawa ng mga pagsasapanahong nasa \"tunay na panahon\" na " "ginagamitan ng Comet/Bayeux." diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index 93a2bbea58..ab66ac1297 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-comet\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" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "" "Додаток для оновлення стрічки у «реальному часі» використовуючи Comet/Bayeux." diff --git a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po index 404f4a4db4..94a3cd4e2d 100644 --- a/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/zh_CN/LC_MESSAGES/Comet.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:27+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +#, fuzzy +msgid "Plugin to make updates using Comet and Bayeux." msgstr "通过 Comet/Bayeux 实现“实时更新”的插件。" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index ff64256ff2..64153dd65f 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po index 9eb2d14fee..2f38d08199 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po index 77fe975b1f..1dd3b0ee6f 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index 2734a4b0e4..21565f2fd5 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index 1e0f6b9283..233a31e037 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po index 520dcc867f..ecc1ebd40c 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index 9c1afd69e6..2929f0f05e 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index 36ad0fa93e..b41e424897 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 7e159f6806..6dfec7ab1a 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index 8c65db1391..0a22975ef6 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index 011e8fa528..73c01a7182 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index a1d30d407e..bfd165ab3a 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 6d08841575..2e6b22491e 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index 5ae0e535cf..2fc117e173 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index 8fe05b4308..9f17ad389c 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,16 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po index fe143af83b..2ecfa23810 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index f51bb33d3d..2b8e198081 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 6b137cd883..9883b35bfe 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index 97af058d6f..a83959d935 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index 6c7d41d014..e67e9a33c8 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/Directory/locale/Directory.pot b/plugins/Directory/locale/Directory.pot index 44d4699a08..8e0ba493e8 100644 --- a/plugins/Directory/locale/Directory.pot +++ b/plugins/Directory/locale/Directory.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -35,6 +35,21 @@ msgstr "" msgid "User directory - %s, page %d" msgstr "" +#: actions/userdirectory.php:120 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/userdirectory.php:259 +msgid "Search site" +msgstr "" + +#: actions/userdirectory.php:263 +msgid "Keyword(s)" +msgstr "" + #: actions/userdirectory.php:265 msgctxt "BUTTON" msgid "Search" @@ -45,6 +60,18 @@ msgstr "" msgid "No users starting with %s" msgstr "" +#: actions/userdirectory.php:375 +msgid "No results." +msgstr "" + +#: DirectoryPlugin.php:168 +msgid "Directory" +msgstr "" + +#: DirectoryPlugin.php:169 +msgid "User Directory" +msgstr "" + #: DirectoryPlugin.php:187 msgid "Add a user directory." msgstr "" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index ea8ac123b4..617f3cfc4f 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -36,6 +36,19 @@ msgstr "Catalogo de usatores - %s" msgid "User directory - %s, page %d" msgstr "Catalogo de usatores - %s, pagina %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#, fuzzy +msgid "Search site" +msgstr "Cercar" + +msgid "Keyword(s)" +msgstr "" + msgctxt "BUTTON" msgid "Search" msgstr "Cercar" @@ -44,6 +57,17 @@ msgstr "Cercar" msgid "No users starting with %s" msgstr "Il non ha usatores de qui le nomine comencia con \"%s\"" +msgid "No results." +msgstr "" + +#, fuzzy +msgid "Directory" +msgstr "Catalogo de usatores" + +#, fuzzy +msgid "User Directory" +msgstr "Catalogo de usatores" + msgid "Add a user directory." msgstr "Adder un catalogo de usatores." diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index 643b122f81..d602f290b3 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -36,6 +36,19 @@ msgstr "Кориснички именик - %s" msgid "User directory - %s, page %d" msgstr "Кориснички именик - %s, стр. %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#, fuzzy +msgid "Search site" +msgstr "Пребарај" + +msgid "Keyword(s)" +msgstr "" + msgctxt "BUTTON" msgid "Search" msgstr "Пребарај" @@ -44,6 +57,17 @@ msgstr "Пребарај" msgid "No users starting with %s" msgstr "Нема корисници што почнуваат на %s" +msgid "No results." +msgstr "" + +#, fuzzy +msgid "Directory" +msgstr "Кориснички именик" + +#, fuzzy +msgid "User Directory" +msgstr "Кориснички именик" + msgid "Add a user directory." msgstr "Додај кориснички именик." diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index 7b187674f3..370fa0d84c 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -37,6 +37,19 @@ msgstr "Gebruikerslijst - %s" msgid "User directory - %s, page %d" msgstr "Gebruikerslijst - %s, pagina %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#, fuzzy +msgid "Search site" +msgstr "Zoeken" + +msgid "Keyword(s)" +msgstr "" + msgctxt "BUTTON" msgid "Search" msgstr "Zoeken" @@ -45,6 +58,17 @@ msgstr "Zoeken" msgid "No users starting with %s" msgstr "Er zijn geen gebruikers wiens naam begint met \"%s\"" +msgid "No results." +msgstr "" + +#, fuzzy +msgid "Directory" +msgstr "Gebruikerslijst" + +#, fuzzy +msgid "User Directory" +msgstr "Gebruikerslijst" + msgid "Add a user directory." msgstr "Een gebruikerslijst toevoegen." diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index 08c4f28ffc..4719a8a191 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -36,6 +36,19 @@ msgstr "Direktoryo ng tagagamit - %s" msgid "User directory - %s, page %d" msgstr "Direktoryo ng tagagamit - %s, pahina %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#, fuzzy +msgid "Search site" +msgstr "Hanapin" + +msgid "Keyword(s)" +msgstr "" + msgctxt "BUTTON" msgid "Search" msgstr "Hanapin" @@ -44,6 +57,17 @@ msgstr "Hanapin" msgid "No users starting with %s" msgstr "Walang mga tagagamit na nagsisimula sa %s" +msgid "No results." +msgstr "" + +#, fuzzy +msgid "Directory" +msgstr "Direktoryo ng tagagamit" + +#, fuzzy +msgid "User Directory" +msgstr "Direktoryo ng tagagamit" + msgid "Add a user directory." msgstr "Magdagdag ng isang direktoryo ng tagagamit." diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index b8f9c3bffe..a9f9aa31b5 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -37,6 +37,19 @@ msgstr "Каталог користувача — %s" msgid "User directory - %s, page %d" msgstr "Каталог користувача — %s, сторінка %d" +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#, fuzzy +msgid "Search site" +msgstr "Пошук" + +msgid "Keyword(s)" +msgstr "" + msgctxt "BUTTON" msgid "Search" msgstr "Пошук" @@ -45,6 +58,17 @@ msgstr "Пошук" msgid "No users starting with %s" msgstr "Немає користувачів, починаючи з %s" +msgid "No results." +msgstr "" + +#, fuzzy +msgid "Directory" +msgstr "Каталог користувача" + +#, fuzzy +msgid "User Directory" +msgstr "Каталог користувача" + msgid "Add a user directory." msgstr "Додати каталог користувача." diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 6666fa2ac2..6e827e90c6 100644 --- a/plugins/DiskCache/locale/DiskCache.pot +++ b/plugins/DiskCache/locale/DiskCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po index d8374fbc30..a0d2ed45e3 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index 12be183e5b..0d7d8a3cf2 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index d3bc60ad06..f3d795b16b 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index 599a1fe58e..572925aa18 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index 6bdaf3aa3a..5a10654475 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:28+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index cb68a4d21d..c24d5e59d5 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 4d81dc634e..04b4bb7ad3 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index b2ce1ccc14..4852ee1072 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index 98e25b6ca7..53d8afdd82 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index a9786b41b2..dc4b390b6d 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index b2fece1137..ca89a67f39 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index b9aeb6fbbb..49182c49b1 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index 6335ccf56b..d2f4b1fb3f 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index 72fa63a153..ec85a70174 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index 9676b8a25c..015bfbad68 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index 8497d0ba62..a4407b71cf 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index 0f76a4e223..35ed6eadb8 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index 241c3cf2a6..efe9724ba3 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:13:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 12b30631d8..6871082dfa 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po index e3878b49f1..77a1e35fde 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index 9acc17064e..94a679e913 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index 11cfdde82a..fb36def0f5 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index 1e13b6014e..9dd9cd5aaf 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index 25114540f8..821be0b694 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 640b740a05..b150be519c 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index 0391b36bcb..158c8a2f89 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index 809f5e9eec..451865c122 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index fb0dbaac11..64d19c3077 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index f8b6155ce5..8b27d1feef 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index 495ae57051..797ba33777 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index 09ba7d8cd4..a77eebb927 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index c0e1ad9ea2..bf14b0ad4d 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index e103fc42c7..d13606aa8b 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index 459876c3c2..c5dd170f9d 100644 --- a/plugins/Echo/locale/Echo.pot +++ b/plugins/Echo/locale/Echo.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po index aa0935ed47..a5f84b7f62 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index a50c9c65dc..a6c7d00737 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index 08af98a138..ee96417593 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index a9d2d98179..80eec9103a 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index bae981f221..60b0942e31 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index 22257b5925..c27d5f9410 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index ff05df8e5b..2bc896611d 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 5628b12b90..75d244a7ea 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index 56579edb24..7cdb884d28 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 984afb5160..4fb728bea9 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index 2720935ab7..dc0b7db1d6 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index 038dcb84c0..793043a326 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index feebcab1be..b0da925b3c 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index 9cc84cf749..fb01f6bb78 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index 7ee08fad60..1bedaf11a4 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index dd40d19933..0d46ce1d82 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index a33bbf3acb..d173073815 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index 980e654950..26f480dae6 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index 7de560475a..28ffec85d3 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index 4a5af86329..11a81091f8 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index 0dbf75d121..2860c76495 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po index 36ff8c78b7..826bf376e5 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index 965d58afb2..3c4e5711be 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index ac2f807dd8..2d83218bc8 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index 12a6dfd96e..ad22e2119b 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index dd565d0a17..6334a0b255 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index ce56401ec8..c933faf856 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index cdd89a401f..b6e9a92b69 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index 194579f571..03d9e87df6 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index 60ec87df82..70c4ca9f21 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index d386263492..07a071d3d2 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index 40a6b93590..87ce65e844 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index 61bb50610e..3816bcaa4f 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index c14665521c..0119600768 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index 15c3c24df0..dc44531380 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index 85ff221918..76c97e8cea 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index 6ab2cb5f41..738740f0e2 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index 1cdee04560..0bb722b111 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index 7a55e29423..a6517cc7b0 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index e37ecef10d..a87b52a945 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index 13f26fe914..1f8c75c166 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailSummary/locale/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index 03539fbbdc..8b0759860c 100644 --- a/plugins/EmailSummary/locale/EmailSummary.pot +++ b/plugins/EmailSummary/locale/EmailSummary.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,29 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: useremailsummaryhandler.php:131 +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +#: useremailsummaryhandler.php:187 +msgid "in context" +msgstr "" + +#: useremailsummaryhandler.php:197 +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +#: useremailsummaryhandler.php:207 +msgid "Updates from your network" +msgstr "" + #: EmailSummaryPlugin.php:120 msgid "Send an email summary of the inbox to users." msgstr "" + +#. TRANS: Checkbox label in e-mail preferences form. +#: EmailSummaryPlugin.php:154 +msgid "Send me a periodic summary of updates from my network." +msgstr "" diff --git a/plugins/EmailSummary/locale/be-tarask/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/be-tarask/LC_MESSAGES/EmailSummary.po index 5420b87b11..c27e2f1a9c 100644 --- a/plugins/EmailSummary/locale/be-tarask/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/be-tarask/LC_MESSAGES/EmailSummary.po @@ -9,19 +9,39 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Дасылае агляд уваходзячых паведамленьняў на электронную пошту карыстальніка." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Дасылае агляд уваходзячых паведамленьняў на электронную пошту карыстальніка." diff --git a/plugins/EmailSummary/locale/br/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/br/LC_MESSAGES/EmailSummary.po index 5c67669fbb..694af0e3dd 100644 --- a/plugins/EmailSummary/locale/br/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/br/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Kas d'an implijerien, dre bostel, un diverrañ eus ar voest degemer." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Kas d'an implijerien, dre bostel, un diverrañ eus ar voest degemer." diff --git a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po index e42ce772c7..4e4ccd9f03 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Envia un resum de correu a la safata d'entrada dels usuaris." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Envia un resum de correu a la safata d'entrada dels usuaris." diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index 282746326f..2228f4e46b 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -9,18 +9,38 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Eine E-Mail mit der Zusammenfassung des Posteingangs an die Nutzer senden." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Eine E-Mail mit der Zusammenfassung des Posteingangs an die Nutzer senden." diff --git a/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po index 0590ca0ef8..eab6ce42cd 100644 --- a/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/fr/LC_MESSAGES/EmailSummary.po @@ -9,19 +9,40 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Envoyer un résumé de la boîte de réception par courrier électronique aux " "utilisateurs." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Envoyer un résumé de la boîte de réception par courrier électronique aux " +"utilisateurs." diff --git a/plugins/EmailSummary/locale/he/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/he/LC_MESSAGES/EmailSummary.po index 9465c668e4..f37999c1f3 100644 --- a/plugins/EmailSummary/locale/he/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/he/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "שליחת תקציר של תיבת הדואר הנכנס בדוא״ל למשתמשים." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "שליחת תקציר של תיבת הדואר הנכנס בדוא״ל למשתמשים." diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index e119aab19f..27ce1cb240 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Inviar in e-mail un summario del cassa de entrata al usatores." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Inviar in e-mail un summario del cassa de entrata al usatores." diff --git a/plugins/EmailSummary/locale/id/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/id/LC_MESSAGES/EmailSummary.po index 354d7775f3..17a4c94e15 100644 --- a/plugins/EmailSummary/locale/id/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/id/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Kirim surel ringkasan kotak masuk ke pengguna." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Kirim surel ringkasan kotak masuk ke pengguna." diff --git a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po index 9933441147..9e183fa709 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Испрати им на корисниците краток преглед на примената пошта." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Испрати им на корисниците краток преглед на примената пошта." diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index ae9d41e7c4..18e1bf2c78 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "E-mailsamenvatting verzenden naar het Postvak IN van gebruikers." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "E-mailsamenvatting verzenden naar het Postvak IN van gebruikers." diff --git a/plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po index 9e88528356..2a35a8035c 100644 --- a/plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po @@ -9,17 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "Enviar por email um resumo da caixa de entrada aos utilizadores." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "Enviar por email um resumo da caixa de entrada aos utilizadores." diff --git a/plugins/EmailSummary/locale/ru/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ru/LC_MESSAGES/EmailSummary.po index e7d075dd7d..5c89ac90f8 100644 --- a/plugins/EmailSummary/locale/ru/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ru/LC_MESSAGES/EmailSummary.po @@ -9,19 +9,39 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\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" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Отправляет обзор входящих сообщений на электронную почту пользователей." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Отправляет обзор входящих сообщений на электронную почту пользователей." diff --git a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po index 5337c4656f..c9eec8e9d6 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,20 +9,41 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\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" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "" "Надсилає електронною поштою перелік вхідних приватних повідомлень, " "адресованих користувачеві." + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "" +"Надсилає електронною поштою перелік вхідних приватних повідомлень, " +"адресованих користувачеві." diff --git a/plugins/EmailSummary/locale/zh_CN/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/zh_CN/LC_MESSAGES/EmailSummary.po index b4e1175355..5d39d1a67e 100644 --- a/plugins/EmailSummary/locale/zh_CN/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/zh_CN/LC_MESSAGES/EmailSummary.po @@ -9,18 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Recent updates from %1s for %2s:" +msgstr "" + +msgid "in context" +msgstr "" + +#, php-format +msgid "

change your email settings for %2s

" +msgstr "" + +msgid "Updates from your network" +msgstr "" + msgid "Send an email summary of the inbox to users." msgstr "发送到用户的收件箱的电子邮件综述。" + +#. TRANS: Checkbox label in e-mail preferences form. +#, fuzzy +msgid "Send me a periodic summary of updates from my network." +msgstr "发送到用户的收件箱的电子邮件综述。" diff --git a/plugins/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index 909f80149f..26d974d316 100644 --- a/plugins/Event/locale/Event.pot +++ b/plugins/Event/locale/Event.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,11 +16,88 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: Happening.php:125 +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#: Happening.php:159 +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#: Happening.php:166 +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +#: showrsvp.php:61 showrsvp.php:77 cancelrsvp.php:82 cancelrsvp.php:88 +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +#: showrsvp.php:68 +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#: showrsvp.php:94 +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +#: cancelrsvpform.php:105 +msgid "You will attend this event." +msgstr "" + +#: cancelrsvpform.php:108 +msgid "You will not attend this event." +msgstr "" + +#: cancelrsvpform.php:111 +msgid "You might attend this event." +msgstr "" + #: cancelrsvpform.php:126 msgctxt "BUTTON" msgid "Cancel" msgstr "" +#: newrsvp.php:61 +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +#: newrsvp.php:82 newrsvp.php:88 cancelrsvp.php:94 showevent.php:60 +#: showevent.php:68 +msgid "No such event." +msgstr "" + +#: newrsvp.php:94 cancelrsvp.php:100 +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +#: newrsvp.php:162 cancelrsvp.php:157 newevent.php:219 +msgid "Event saved" +msgstr "" + +#: cancelrsvp.php:61 +msgid "Cancel RSVP" +msgstr "" + +#: rsvpform.php:101 +msgid "RSVP:" +msgstr "" + #: rsvpform.php:117 msgctxt "BUTTON" msgid "Yes" @@ -36,6 +113,78 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "" +#: eventform.php:96 +msgctxt "LABEL" +msgid "Title" +msgstr "" + +#: eventform.php:98 +msgid "Title of the event" +msgstr "" + +#: eventform.php:103 +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +#: eventform.php:105 +msgid "Date the event starts" +msgstr "" + +#: eventform.php:110 +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +#: eventform.php:112 +msgid "Time the event starts" +msgstr "" + +#: eventform.php:117 +msgctxt "LABEL" +msgid "End date" +msgstr "" + +#: eventform.php:119 +msgid "Date the event ends" +msgstr "" + +#: eventform.php:124 +msgctxt "LABEL" +msgid "End time" +msgstr "" + +#: eventform.php:126 +msgid "Time the event ends" +msgstr "" + +#: eventform.php:131 +msgctxt "LABEL" +msgid "Location" +msgstr "" + +#: eventform.php:133 +msgid "Event location" +msgstr "" + +#: eventform.php:138 +msgctxt "LABEL" +msgid "URL" +msgstr "" + +#: eventform.php:140 +msgid "URL for more information" +msgstr "" + +#: eventform.php:145 +msgctxt "LABEL" +msgid "Description" +msgstr "" + +#: eventform.php:147 +msgid "Description of the event" +msgstr "" + #: eventform.php:162 msgctxt "BUTTON" msgid "Save" @@ -48,3 +197,107 @@ msgstr "" #: EventPlugin.php:138 msgid "Event" msgstr "" + +#: EventPlugin.php:368 +msgid "Time:" +msgstr "" + +#: EventPlugin.php:388 +msgid "Location:" +msgstr "" + +#: EventPlugin.php:395 +msgid "Description:" +msgstr "" + +#: EventPlugin.php:403 +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#: EventPlugin.php:407 +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +#: RSVP.php:146 RSVP.php:154 +msgid "RSVP already exists." +msgstr "" + +#: RSVP.php:319 +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#: RSVP.php:322 +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#: RSVP.php:325 +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +#: RSVP.php:334 RSVP.php:368 +msgid "an unknown event" +msgstr "" + +#: RSVP.php:354 +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#: RSVP.php:357 +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#: RSVP.php:360 +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +#: newevent.php:66 +msgid "New event" +msgstr "" + +#: newevent.php:84 +msgid "Must be logged in to post a event." +msgstr "" + +#: newevent.php:95 +msgid "Title required." +msgstr "" + +#: newevent.php:105 +msgid "Start date required." +msgstr "" + +#: newevent.php:117 +msgid "End date required." +msgstr "" + +#: newevent.php:138 newevent.php:144 +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +#: newevent.php:182 +msgid "Event must have a title." +msgstr "" + +#: newevent.php:186 +msgid "Event must have a start time." +msgstr "" + +#: newevent.php:190 +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po new file mode 100644 index 0000000000..2e45d2907d --- /dev/null +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -0,0 +1,250 @@ +# Translation of StatusNet - Event to Arabic (العربية) +# Exported from translatewiki.net +# +# Author: OsamaK +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Event\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" +"Language-Team: Arabic \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-event\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + +msgctxt "BUTTON" +msgid "Cancel" +msgstr "ألغِ" + +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "ألغِ" + +msgid "RSVP:" +msgstr "" + +msgctxt "BUTTON" +msgid "Yes" +msgstr "نعم" + +msgctxt "BUTTON" +msgid "No" +msgstr "لا" + +msgctxt "BUTTON" +msgid "Maybe" +msgstr "" + +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + +msgctxt "BUTTON" +msgid "Save" +msgstr "احفظ" + +msgid "Event invitations and RSVPs." +msgstr "" + +msgid "Event" +msgstr "" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 9b8e3fd907..562558255f 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,22 +9,85 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "Cancellar" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +#, fuzzy +msgid "Event saved" +msgstr "Evento" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "Cancellar" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "Si" @@ -37,6 +100,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Forsan" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" @@ -46,3 +165,85 @@ msgstr "Invitationes a eventos e responsas a illos." msgid "Event" msgstr "Evento" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index fbf2dbee82..61becf8b61 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,22 +9,85 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +#, fuzzy +msgid "Event saved" +msgstr "Настан" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "Откажи" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -37,6 +100,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Можеби" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -46,3 +165,85 @@ msgstr "Покани и одговори за настани" msgid "Event" msgstr "Настан" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index fcba279b74..9d823450a4 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -9,22 +9,85 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "Annuleren" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +#, fuzzy +msgid "Event saved" +msgstr "Gebeurtenis" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "Annuleren" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -37,6 +100,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Misschien" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -46,3 +165,85 @@ msgstr "Uitnodigingen en RVSP's." msgid "Event" msgstr "Gebeurtenis" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/te/LC_MESSAGES/Event.po b/plugins/Event/locale/te/LC_MESSAGES/Event.po index 6a89e12dfc..220b059698 100644 --- a/plugins/Event/locale/te/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/te/LC_MESSAGES/Event.po @@ -9,22 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "రద్దుచేయి" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "రద్దుచేయి" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "అవును" @@ -37,6 +99,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "కావొచ్చు" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "భద్రపరచు" @@ -46,3 +164,85 @@ msgstr "" msgid "Event" msgstr "" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index 4549122d4c..e5a4f5de16 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,22 +9,85 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "Huwag ituloy" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +#, fuzzy +msgid "Event saved" +msgstr "Kaganapan" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "Huwag ituloy" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "Oo" @@ -37,6 +100,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Siguro" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Sagipin" @@ -46,3 +165,85 @@ msgstr "Mga paanyaya sa kaganapan at mga paghingi ng tugon." msgid "Event" msgstr "Kaganapan" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/tr/LC_MESSAGES/Event.po b/plugins/Event/locale/tr/LC_MESSAGES/Event.po index ebf6e07d38..a76375f1d1 100644 --- a/plugins/Event/locale/tr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tr/LC_MESSAGES/Event.po @@ -9,22 +9,83 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "" + +msgid "Cancel RSVP" +msgstr "" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "Evet" @@ -37,6 +98,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Belki" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Kaydet" @@ -46,3 +163,85 @@ msgstr "" msgid "Event" msgstr "" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index ce0e5613fe..65478ed690 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,23 +9,86 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-event\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" +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such Event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + msgctxt "BUTTON" msgid "Cancel" msgstr "Відміна" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +#, fuzzy +msgid "Event saved" +msgstr "Подія" + +#, fuzzy +msgid "Cancel RSVP" +msgstr "Відміна" + +msgid "RSVP:" +msgstr "" + msgctxt "BUTTON" msgid "Yes" msgstr "Так" @@ -38,6 +101,62 @@ msgctxt "BUTTON" msgid "Maybe" msgstr "Можливо" +msgctxt "LABEL" +msgid "Title" +msgstr "" + +msgid "Title of the event" +msgstr "" + +msgctxt "LABEL" +msgid "Start date" +msgstr "" + +msgid "Date the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "Start time" +msgstr "" + +msgid "Time the event starts" +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "" + +msgid "Date the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "End time" +msgstr "" + +msgid "Time the event ends" +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "" + +msgid "Event location" +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "" + +msgid "URL for more information" +msgstr "" + +msgctxt "LABEL" +msgid "Description" +msgstr "" + +msgid "Description of the event" +msgstr "" + msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -47,3 +166,85 @@ msgstr "Запрошення на заходи та RSVP (підтверджен msgid "Event" msgstr "Подія" + +msgid "Time:" +msgstr "" + +msgid "Location:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "" +"%2s is attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s is not attending %4s." +msgstr "" + +#, php-format +msgid "" +"%2s might attend %4s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1s is attending %2s." +msgstr "" + +#, php-format +msgid "%1s is not attending %2s." +msgstr "" + +#, php-format +msgid "%1s might attend %2s.>" +msgstr "" + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"" +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index 2b81c0099f..1d6d7983f3 100644 --- a/plugins/ExtendedProfile/locale/ExtendedProfile.pot +++ b/plugins/ExtendedProfile/locale/ExtendedProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -135,6 +135,10 @@ msgctxt "BUTTON" msgid "Save" msgstr "" +#: lib/extendedprofilewidget.php:621 +msgid "Save details" +msgstr "" + #: lib/extendedprofile.php:119 lib/extendedprofile.php:129 msgid "Phone" msgstr "" diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index 8318c760f6..41313b6cc2 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:16+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -113,6 +113,10 @@ msgctxt "BUTTON" msgid "Save" msgstr "" +#, fuzzy +msgid "Save details" +msgstr "Muoic'h a vunudoù..." + msgid "Phone" msgstr "Pellgomz" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index 19007d0556..743c9a641a 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -115,6 +115,10 @@ msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" +#, fuzzy +msgid "Save details" +msgstr "Plus detalios..." + msgid "Phone" msgstr "Telephono" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index e0cb453e7e..2640786492 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -115,6 +115,10 @@ msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" +#, fuzzy +msgid "Save details" +msgstr "Поподробно..." + msgid "Phone" msgstr "Телефон" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index e99378a457..14dcd6af8c 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -117,6 +117,10 @@ msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" +#, fuzzy +msgid "Save details" +msgstr "Meer details..." + msgid "Phone" msgstr "Telefoonnummer" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index 4feb491d32..7f2475ad53 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -113,6 +113,10 @@ msgctxt "BUTTON" msgid "Save" msgstr "" +#, fuzzy +msgid "Save details" +msgstr "Mer detaljer..." + msgid "Phone" msgstr "Telefon" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index 8d3726485c..ccec7aa0a0 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:05:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -116,6 +116,10 @@ msgctxt "BUTTON" msgid "Save" msgstr "Sagipin" +#, fuzzy +msgid "Save details" +msgstr "Marami pang mga detalye..." + msgid "Phone" msgstr "Telepono" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index e24ccf9f2d..eb9bc25ed5 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -29,51 +29,53 @@ msgstr "Розширені налаштування профілю" msgid "" "You can update your personal profile info here so people know more about you." msgstr "" +"Тут ви можете заповнити свій особистий профіль і люди знатимуть про вас " +"більше." msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." #. TRANS: Message given submitting a form with an unknown action. msgid "Unexpected form submission." -msgstr "" +msgstr "Несподіване представлення форми." msgid "Details saved." -msgstr "" +msgstr "Подробиці збережено." #. TRANS: Exception thrown when no date was entered in a required date field. #. TRANS: %s is the field name. #, php-format msgid "You must supply a date for \"%s\"." -msgstr "" +msgstr "Слід вказати дату для «%s»." #. TRANS: Exception thrown on incorrect data input. #. TRANS: %1$s is a field name, %2$s is the incorrect input. #, php-format msgid "Invalid date entered for \"%1$s\": %2$s." -msgstr "" +msgstr "Неприпустиме значення дати для «%1$s»: %2$s." #. TRANS: Exception thrown when entering an invalid URL. #. TRANS: %s is the invalid URL. #, php-format msgid "Invalid URL: %s." -msgstr "" +msgstr "Невірний URL: %s." msgid "Could not save profile details." -msgstr "" +msgstr "Не вдалося зберегти деталі профілю." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. #, php-format msgid "Invalid tag: \"%s\"." -msgstr "" +msgstr "Невірний теґ: «%s»." #. TRANS: Server error thrown when user profile settings could not be saved. msgid "Could not save profile." -msgstr "" +msgstr "Не вдалося зберегти профіль." #. TRANS: Server error thrown when user profile settings tags could not be saved. msgid "Could not save tags." -msgstr "" +msgstr "Не вдалося зберегти теґи." #. TRANS: Link title for link on user profile. msgid "Edit extended profile settings" @@ -90,29 +92,33 @@ msgid "More details..." msgstr "Детальніше..." msgid "Company" -msgstr "" +msgstr "Компанія" msgid "Start" -msgstr "" +msgstr "Почати" msgid "End" -msgstr "" +msgstr "Кінець" msgid "Current" -msgstr "" +msgstr "Поточне" msgid "Institution" msgstr "Установа" msgid "Degree" -msgstr "" +msgstr "Ступінь" msgid "Description" -msgstr "" +msgstr "Опис" msgctxt "BUTTON" msgid "Save" -msgstr "" +msgstr "Зберегти" + +#, fuzzy +msgid "Save details" +msgstr "Детальніше..." msgid "Phone" msgstr "Телефон" @@ -120,9 +126,8 @@ msgstr "Телефон" msgid "IM" msgstr "ІМ" -#, fuzzy msgid "Website" -msgstr "Сайти" +msgstr "Веб-сайт" msgid "Employer" msgstr "Роботодавець" diff --git a/plugins/FacebookBridge/locale/FacebookBridge.pot b/plugins/FacebookBridge/locale/FacebookBridge.pot index 9cf77481cc..4e47e3f487 100644 --- a/plugins/FacebookBridge/locale/FacebookBridge.pot +++ b/plugins/FacebookBridge/locale/FacebookBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -80,7 +80,8 @@ msgstr "" #. TRANS: Page title for Facebook settings. #. TRANS: Tooltip for menu item "Facebook". -#: actions/facebooksettings.php:105 FacebookBridgePlugin.php:300 +#: actions/facebooksettings.php:105 actions/facebooksettings.php:114 +#: FacebookBridgePlugin.php:300 msgid "Facebook settings" msgstr "" @@ -285,11 +286,11 @@ msgstr "" msgid "A plugin for integrating StatusNet with Facebook." msgstr "" -#: lib/facebookclient.php:786 +#: lib/facebookclient.php:792 msgid "Your Facebook connection has been removed" msgstr "" -#: lib/facebookclient.php:845 +#: lib/facebookclient.php:851 #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "" diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index b0d500ec10..7b9f6f9f29 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:40+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:20+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -160,6 +160,8 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +"تخضع نصوصي وملفات ل%s إلا البيانات الخاصة التالية: كلمة السر وعنوان البريد " +"الإلكتروني وعنوان المراسلة الفورية ورقم الهاتف." #. TRANS: Legend. msgid "Create new account" @@ -170,7 +172,7 @@ msgstr "" #. TRANS: Field label. msgid "New nickname" -msgstr "" +msgstr "الاسم المستعار الجديد" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" @@ -178,7 +180,7 @@ msgstr "" #. TRANS: Submit button. msgctxt "BUTTON" msgid "Create" -msgstr "" +msgstr "أنشئ" msgid "Connect existing account" msgstr "" @@ -198,7 +200,7 @@ msgstr "" #. TRANS: Submit button. msgctxt "BUTTON" msgid "Connect" -msgstr "" +msgstr "اربط" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 54c83c8f5b..95cc73febe 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:20+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 74acd27d1c..dc98f6399f 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:20+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index e5af9b81c4..1e2c728124 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index c1b16d3c77..3aaf22a604 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index 031f3b4414..6f41583b61 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index a024585fac..6ac5288a70 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index 321b376855..502e0e360d 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index 236642b036..dd0f67a61d 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 119331eddf..b00eb92357 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index 1c98b60f77..b85141661a 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index 77e55a1751..880e29e2c7 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index d7b20f7c00..5ed06cdf17 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index 08e7b2e629..7e04dcc25d 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index 6486c4d32b..6370ffa102 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index 2c5e4ace48..b26c677956 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index cceae4cfeb..810fde0e73 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index 4104482717..e268ebdb51 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:42+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index b866130381..37462594d2 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 32740e7ea3..51e95d7d1a 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index 9c8011011b..407ed6bdd6 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index b3b9b8c06d..51a2d13de6 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index 3dd18ce60e..813b9c2039 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index d078c62f88..0376176c27 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index d3c385fac9..03ce601ab6 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index 33fb100c11..e0e0fa9539 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FollowEveryone/locale/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot index bc1b9ac9a2..a046bf9267 100644 --- a/plugins/FollowEveryone/locale/FollowEveryone.pot +++ b/plugins/FollowEveryone/locale/FollowEveryone.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#. TRANS: Checkbox label in form for profile settings. +#: FollowEveryonePlugin.php:162 +msgid "Follow everyone" +msgstr "" + #: FollowEveryonePlugin.php:203 msgid "New users follow everyone at registration and are followed in return." msgstr "" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index 0b7de7f0a1..b55eff2c9d 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Neue Benutzer folgen jedem nach der Registrierung und werden im Gegenzug " diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index 2266f5706a..06973d0082 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Les nouveaux utilisateurs suivent tout le monde lors de l’inscription et " diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index 15d5818f53..a339a3a443 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "משתמשים חדשים עוקבים אחר כולם בעת הרישום ובתמורה עוקבים אחריהם." diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index 062edb8036..75e4df1193 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "Nove usatores seque omnes al inscription e es sequite per omnes." diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index 1f9192c60d..592c95fb07 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "Новите корисници следат секого при регистрација и сите ги следат нив." diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index 6eea441c93..8981547f90 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Nieuwe gebruikers volgen iedereen bij inschrijving en worden door iedereen " diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index aa259cca04..14aecb98d3 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Novos utilizadores seguem toda a gente no momento do registo e são seguidos " diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index 86c0ed4a40..494003e022 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\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: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Новые пользователи следят за всеми при регистрации и получают обратное " diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index 0d0a1788be..e198cb1a6c 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\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: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "" + msgid "New users follow everyone at registration and are followed in return." msgstr "" "Нові користувачі автоматично підписуються до всіх після реєстрації, а всі " diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index 9649954900..07f9b1201d 100644 --- a/plugins/ForceGroup/locale/ForceGroup.pot +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po index e15957bc4d..99be3a7e7f 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index 8923a78b64..4479ffb31b 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 8a33d464ca..40c4a9a301 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index 60d924b8d8..74c4470b41 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index dd71404048..c6d37a882c 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index 6ae5077e19..b2508782c6 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 8c751bc3f4..8da50c96ad 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index 4d6a2176b6..673817a310 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index 591e081e1a..7471b03b14 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index cf7faaa2ff..3b356107e8 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index 085ddf0c68..31509ff058 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index 6aeadc2664..69f9234ed8 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index 89e1c67b42..5475096b6b 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 172d68a852..c62b2d6669 100644 --- a/plugins/GeoURL/locale/GeoURL.pot +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po index 62c566d146..3f39795ac9 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index 74e142333d..52dfc7c4e9 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index b95567b891..8c2b410cf7 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index b2703ca47d..80dbca15e1 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index f2eff317f8..562164d9cd 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 09a8b24eac..191047847d 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index 234373135e..18886e1936 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index c6319526f6..f29806616a 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index cff73fb633..575015fde8 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 1608fb570b..901af003a7 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index 1e15264a1e..cace04e041 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index c317193c91..788d83f8f4 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index 2ca27eb2b3..6d1d3f57c0 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index 92344eb83a..262dbbe76f 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index ebf95c07e1..5a974748b1 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index 6ac1d68e03..f7e576ce7d 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index 50f6d25912..7e4abac9af 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 6d60595b8c..cbdd0e0769 100644 --- a/plugins/Geonames/locale/Geonames.pot +++ b/plugins/Geonames/locale/Geonames.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po index d2370bcf28..0a706529c2 100644 --- a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po index 75f2cb86b2..1077e55af6 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index b2bc174c83..d86efa6a84 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po index e537d323db..80835f9cbd 100644 --- a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po index 9bea6746a1..97c844e72c 100644 --- a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 079be03533..780154ab07 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index ba5353ab80..7ab382a52f 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po index 8ba09bc07d..10119631ee 100644 --- a/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index e6d4776707..5be5efaee7 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po index f9493120d9..298e62cb21 100644 --- a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index e1896fbc8b..f6aeeea7a8 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po index 020d6aa2d7..da0abb7ffc 100644 --- a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index 1dc16970fd..190f8196ef 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po index 9280ffa1d7..b7781c2fe6 100644 --- a/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po index 6044852358..de3398efe7 100644 --- a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po index e135eef282..5acff5e9e8 100644 --- a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 50a4585f21..0d25b79b39 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index b7b77cf387..26bc7f78e5 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po index 03dc703933..285fd82a99 100644 --- a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index a24fae2a4f..6beb2bf187 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po index 085286cc99..1fa2e242fb 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index 0787c6518f..b6d36e5377 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index 0b2d4ec3ec..89141f30ba 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index d14b06a320..f1f8c665be 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index 3694526437..75765744d2 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index ea6b674890..49fb663a10 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index 2d054ade93..5bb0df6ca2 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 3f885af49f..39d52668a9 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index 187243119e..e27638fc51 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index dce391b070..c79ee7893c 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index a014b91357..30613b449e 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index 8c024db6a4..1b965e182f 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index e5e885b901..99009f463e 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index a0590c165c..63ff8c409b 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index e73f0dc361..4608e20b0a 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index 0d9a8d43e4..8704c89a97 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index 63200792d2..4fdec76327 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index d7e557c8da..4cbb350f85 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po index 59fafd1978..b31fc53035 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index 5b57d11585..3899ec6f64 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index f620c99627..4e4be4a0a8 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index 767ea7e918..657abce7ff 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index a48d4e4b82..ae31ac57ea 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 58f0505546..9babd0f7d5 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index 4a371c4892..06b52887c6 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 7cecd8acb1..707286856d 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index c7202747a3..2250de1e60 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 65a0fe4ead..66ae4ab42c 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index 0e391a0a7b..231dd38002 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index c79f0d4b03..e706822e66 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index 5dddaa21dc..0ea262e2c6 100644 --- a/plugins/GroupFavorited/locale/GroupFavorited.pot +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index 0467112870..c97a7c600f 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index 7ac6bac0b2..ffb5ae88ac 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index 2ae6c9a887..46327d74f0 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index 0c1a853c4d..235e179729 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 8955217140..7db0bb1846 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index 98007d3602..0fdcbdd820 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index ffcaad9b9a..3cc20b3829 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index 0daafdb76c..f388c0e0c9 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index 1a3b7b049c..ed93e6722b 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index 6e7cae0be2..9ef1628301 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index 5158f3e08d..0e6641ce30 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index c0dc9d6a9d..1b899b9eca 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot index 253471a03a..4998d4ab0f 100644 --- a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot +++ b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,64 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#: newgroupmessage.php:69 +msgid "Must be logged in." +msgstr "" + +#: newgroupmessage.php:73 +#, php-format +msgid "User %s not allowed to send private messages." +msgstr "" + +#: newgroupmessage.php:90 newgroupmessage.php:96 groupinbox.php:82 +#: groupinbox.php:88 +msgid "No such group." +msgstr "" + +#: newgroupmessage.php:143 +msgid "Message sent" +msgstr "" + +#: newgroupmessage.php:148 +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#: newgroupmessage.php:159 +#, php-format +msgid "New message to group %s" +msgstr "" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#: Group_message_profile.php:159 +#, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#: Group_message_profile.php:165 +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + #: GroupPrivateMessagePlugin.php:210 msgid "Inbox" msgstr "" @@ -25,14 +83,90 @@ msgstr "" msgid "Private messages for this group" msgstr "" +#: GroupPrivateMessagePlugin.php:258 +msgid "Private messages" +msgstr "" + +#: GroupPrivateMessagePlugin.php:259 +msgid "Sometimes" +msgstr "" + +#: GroupPrivateMessagePlugin.php:260 +msgid "Always" +msgstr "" + +#: GroupPrivateMessagePlugin.php:261 +msgid "Never" +msgstr "" + +#: GroupPrivateMessagePlugin.php:262 +msgid "Whether to allow private messages to this group" +msgstr "" + +#: GroupPrivateMessagePlugin.php:268 +msgid "Private sender" +msgstr "" + +#: GroupPrivateMessagePlugin.php:269 +msgid "Everyone" +msgstr "" + +#: GroupPrivateMessagePlugin.php:270 +msgid "Member" +msgstr "" + +#: GroupPrivateMessagePlugin.php:271 +msgid "Admin" +msgstr "" + +#: GroupPrivateMessagePlugin.php:272 +msgid "Who can send private messages to the group" +msgstr "" + +#: GroupPrivateMessagePlugin.php:373 +msgid "Send a direct message to this group" +msgstr "" + +#: GroupPrivateMessagePlugin.php:374 +msgid "Message" +msgstr "" + +#: GroupPrivateMessagePlugin.php:457 +msgid "Forced notice to private group message." +msgstr "" + +#: GroupPrivateMessagePlugin.php:479 +msgid "Private" +msgstr "" + #: GroupPrivateMessagePlugin.php:504 msgid "Allow posting DMs to a group." msgstr "" +#: groupinbox.php:66 +msgid "Only for logged-in users." +msgstr "" + +#: groupinbox.php:92 +msgid "Only for members." +msgstr "" + #: groupinbox.php:125 msgid "This group has not received any private messages." msgstr "" +#: groupinbox.php:170 +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#: groupinbox.php:174 +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. #: groupinbox.php:206 msgid "" @@ -40,14 +174,96 @@ msgid "" "group." msgstr "" +#: groupmessageform.php:90 +#, php-format +msgid "Message to %s" +msgstr "" + +#: groupmessageform.php:131 +#, php-format +msgid "Direct message to %s" +msgstr "" + +#: groupmessageform.php:143 +msgid "Available characters" +msgstr "" + #: groupmessageform.php:164 msgctxt "Send button for sending notice" msgid "Send" msgstr "" +#: Group_privacy_settings.php:167 +#, php-format +msgid "Group %s does not allow private messages." +msgstr "" + +#: Group_privacy_settings.php:175 +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#: Group_privacy_settings.php:182 +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#: Group_privacy_settings.php:189 +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#: Group_privacy_settings.php:195 +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#: Group_message.php:126 +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "" + #: Group_message.php:137 #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "" msgstr[1] "" + +#: Group_message.php:180 +msgid "No group for group message" +msgstr "" + +#: Group_message.php:189 +msgid "No sender for group message" +msgstr "" + +#: showgroupmessage.php:70 +msgid "Only logged-in users can view private messages." +msgstr "" + +#: showgroupmessage.php:79 +msgid "No such message." +msgstr "" + +#: showgroupmessage.php:85 +msgid "Group not found." +msgstr "" + +#: showgroupmessage.php:89 +msgid "Cannot read message." +msgstr "" + +#: showgroupmessage.php:95 +msgid "No sender found." +msgstr "" + +#: showgroupmessage.php:120 +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#: groupmessagecommand.php:80 +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/br/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/br/LC_MESSAGES/GroupPrivateMessage.po index 825c4abf32..c38cd9ce05 100644 --- a/plugins/GroupPrivateMessage/locale/br/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/br/LC_MESSAGES/GroupPrivateMessage.po @@ -9,40 +9,186 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "N'eus bet kaset kemennadenn brevez ebet d'ar strollad-mañ." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Boest resev" msgid "Private messages for this group" msgstr "Kemennadennoù prevez evit a strollad-mañ" +#, fuzzy +msgid "Private messages" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Kemennadennoù prevez evit a strollad-mañ" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "" +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "N'eus bet kaset kemennadenn brevez ebet d'ar strollad-mañ." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " "group." msgstr "" +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Kas" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "N'eus bet kaset kemennadenn brevez ebet d'ar strollad-mañ." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "N'eus bet kaset kemennadenn brevez ebet d'ar strollad-mañ." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." @@ -52,3 +198,32 @@ msgstr[0] "" msgstr[1] "" "Re hir eo. %d eo an niver brasañ a arouezennoù a c'haller kaout en ur " "gemennadenn." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po index 8a6a5a6ad5..d3a6ee355c 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,30 +9,141 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "Iste gruppo non ha recipite messages private." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Messages private pro iste gruppo" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Messages private pro iste gruppo" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Cassa de entrata" msgid "Private messages for this group" msgstr "Messages private pro iste gruppo" +#, fuzzy +msgid "Private messages" +msgstr "Messages private pro iste gruppo" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Messages private pro iste gruppo" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Messages private pro iste gruppo" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Messages private pro iste gruppo" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Permitter de inviar messages directe a un gruppo." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "Iste gruppo non ha recipite messages private." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,10 +152,45 @@ msgstr "" "Isto es le cassa de entrata del gruppo, que lista tote le messages private " "recipite pro iste gruppo." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Inviar" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "Iste gruppo non ha recipite messages private." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "Iste gruppo non ha recipite messages private." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." @@ -52,3 +198,32 @@ msgstr[0] "" "Isto es troppo longe. Le dimension maxime de messages es %d characteres." msgstr[1] "" "Isto es troppo longe. Le dimension maxime de messages es %d characteres." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po index e3cfd00c26..916931f595 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,30 +9,141 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:50+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "Оваа група нема примено приватни пораки." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Приватни пораки за групава" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Приватни пораки за групава" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Примени" msgid "Private messages for this group" msgstr "Приватни пораки за групава" +#, fuzzy +msgid "Private messages" +msgstr "Приватни пораки за групава" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Приватни пораки за групава" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Приватни пораки за групава" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Приватни пораки за групава" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Дозволи испраќање НП на група." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "Оваа група нема примено приватни пораки." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,12 +152,76 @@ msgstr "" "Ова се примените пораки на групата кајшто се заведуваат сите дојдовни " "приватни пораки за оваа група." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Испрати" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "Оваа група нема примено приватни пораки." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "Оваа група нема примено приватни пораки." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "Ова е предолго. Дозволен е само %d знак." msgstr[1] "Ова е предолго. Дозволени се највеќе %d знаци." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index 14bd38d148..26d9e8aa5c 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,30 +9,141 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "Deze groep heeft geen privéberichten ontvangen." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Privéberichten voor deze groep" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Privéberichten voor deze groep" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Postvak IN" msgid "Private messages for this group" msgstr "Privéberichten voor deze groep" +#, fuzzy +msgid "Private messages" +msgstr "Privéberichten voor deze groep" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Privéberichten voor deze groep" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Privéberichten voor deze groep" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Privéberichten voor deze groep" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Verzenden van Directe berichten naar een groep toestaan." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "Deze groep heeft geen privéberichten ontvangen." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,12 +152,76 @@ msgstr "" "Dit is het Postvak IN van de groep waarom alle inkomende privéberichten voor " "deze groep worden weergegeven." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Verzenden" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "Deze groep heeft geen privéberichten ontvangen." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "Deze groep heeft geen privéberichten ontvangen." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "Dat is te lang. De maximale berichtlengte is %d teken." msgstr[1] "Dat is te lang. De maximale berichtlengte is %d tekens." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/pt/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/pt/LC_MESSAGES/GroupPrivateMessage.po index 9f9ea0e52c..cf4381fb5d 100644 --- a/plugins/GroupPrivateMessage/locale/pt/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/pt/LC_MESSAGES/GroupPrivateMessage.po @@ -9,30 +9,141 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "Este grupo ainda não recebeu nenhuma mensagem privada." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Mensagens privadas para este grupo" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Mensagens privadas para este grupo" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Caixa de Entrada" msgid "Private messages for this group" msgstr "Mensagens privadas para este grupo" +#, fuzzy +msgid "Private messages" +msgstr "Mensagens privadas para este grupo" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Mensagens privadas para este grupo" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Mensagens privadas para este grupo" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Mensagens privadas para este grupo" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Permitir pastagens DMs a um grupo." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "Este grupo ainda não recebeu nenhuma mensagem privada." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,12 +152,76 @@ msgstr "" "Esta é a caixa de entrada do grupo, que lista todas as mensagens privadas " "recebidas para este grupo." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "Este grupo ainda não recebeu nenhuma mensagem privada." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "Este grupo ainda não recebeu nenhuma mensagem privada." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "É muito longo. Máx. tamanho da mensagem é %d caracteres." msgstr[1] "É muito longo. Máx. tamanho da mensagem é %d caracteres." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/sr-ec/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/sr-ec/LC_MESSAGES/GroupPrivateMessage.po index 73521d945b..5c83e0bea8 100644 --- a/plugins/GroupPrivateMessage/locale/sr-ec/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sr-ec/LC_MESSAGES/GroupPrivateMessage.po @@ -9,43 +9,218 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Serbian Cyrillic ekavian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sr-ec\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, php-format +msgid "User %s not allowed to send private messages." +msgstr "" + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Приватне поруке ове групе" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Приватне поруке ове групе" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Примљене" msgid "Private messages for this group" msgstr "Приватне поруке ове групе" +#, fuzzy +msgid "Private messages" +msgstr "Приватне поруке ове групе" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Приватне поруке ове групе" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Приватне поруке ове групе" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Приватне поруке ове групе" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "" +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "" +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " "group." msgstr "" +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Пошаљи" +#, php-format +msgid "Group %s does not allow private messages." +msgstr "" + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "" + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "%d знак" msgstr[1] "%d знака" + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/te/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/te/LC_MESSAGES/GroupPrivateMessage.po index 87b8cde76a..be3f8f1821 100644 --- a/plugins/GroupPrivateMessage/locale/te/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/te/LC_MESSAGES/GroupPrivateMessage.po @@ -9,42 +9,217 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "ఈ గుంపుకి అంతరంగిక సందేశాలేమీ అందలేదు." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "" msgid "Private messages for this group" msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" +#, fuzzy +msgid "Private messages" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "ఈ గుంపుకి వచ్చిన అంతరంగిక సందేశాలు" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "" +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "ఈ గుంపుకి అంతరంగిక సందేశాలేమీ అందలేదు." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " "group." msgstr "" +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "పంపించు" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "ఈ గుంపుకి అంతరంగిక సందేశాలేమీ అందలేదు." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "ఈ గుంపుకి అంతరంగిక సందేశాలేమీ అందలేదు." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "" msgstr[1] "" + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po index c9744d8b35..f7cf30e0b1 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,32 +9,145 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "" +"Ang pangkat na ito ay hindi pa nakatatanggap ng anumang mga mensaheng " +"pribado." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Kahong-tanggapan" msgid "Private messages for this group" msgstr "Pribadong mga mensahe para sa pangkat na ito" +#, fuzzy +msgid "Private messages" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Pribadong mga mensahe para sa pangkat na ito" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Payagan ang pagpapaskil ng mga DM sa isang pangkat." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "" "Ang pangkat na ito ay hindi pa nakatatanggap ng anumang mga mensaheng " "pribado." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -43,13 +156,81 @@ msgstr "" "Ito ang kahong-tanggapan ng pangkat, na nagtatala ng lahat ng pumapasok na " "mga mensahe para sa pangkat na ito." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Ipadala" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "" +"Ang pangkat na ito ay hindi pa nakatatanggap ng anumang mga mensaheng " +"pribado." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "" +"Ang pangkat na ito ay hindi pa nakatatanggap ng anumang mga mensaheng " +"pribado." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "" "Napakahaba niyan. Ang pinakamalaking sukat ng mensahe ay %d panitik." msgstr[1] "Napakahaba niyan. Ang pinakamalaking sukat ay %d na mga panitik." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po index 9d973ac7cb..6e8af91a4b 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,31 +9,142 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\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" +msgid "Must be logged in." +msgstr "" + +#, fuzzy, php-format +msgid "User %s not allowed to send private messages." +msgstr "До цієї спільноти не надходило ніяких приватних повідомлень." + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "Приватні повідомлення для цієї спільноти" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "Приватні повідомлення для цієї спільноти" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "Вхідні" msgid "Private messages for this group" msgstr "Приватні повідомлення для цієї спільноти" +#, fuzzy +msgid "Private messages" +msgstr "Приватні повідомлення для цієї спільноти" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "Приватні повідомлення для цієї спільноти" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "Приватні повідомлення для цієї спільноти" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "Приватні повідомлення для цієї спільноти" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "Дозволити надсилання «прямих» повідомлень до спільноти." +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "До цієї спільноти не надходило ніяких приватних повідомлень." +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " @@ -41,13 +152,77 @@ msgid "" msgstr "" "Тут містяться всі вхідні повідомлення цієї спільноти, надіслані приватно." +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "Надіслати" +#, fuzzy, php-format +msgid "Group %s does not allow private messages." +msgstr "До цієї спільноти не надходило ніяких приватних повідомлень." + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, fuzzy, php-format +msgid "User %s is not allowed to send private messages." +msgstr "До цієї спільноти не надходило ніяких приватних повідомлень." + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "Допис надто довгий. Максимальна довжина повідомлення — %d символ." msgstr[1] "Допис надто довгий. Максимальна довжина повідомлення — %d символів." msgstr[2] "Допис надто довгий. Максимальна довжина повідомлення — %d символів." + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/GroupPrivateMessage/locale/zh_CN/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/zh_CN/LC_MESSAGES/GroupPrivateMessage.po index 1dc76d6092..f09caf14e3 100644 --- a/plugins/GroupPrivateMessage/locale/zh_CN/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/zh_CN/LC_MESSAGES/GroupPrivateMessage.po @@ -9,42 +9,217 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "Must be logged in." +msgstr "" + +#, php-format +msgid "User %s not allowed to send private messages." +msgstr "" + +msgid "No such group." +msgstr "" + +msgid "Message sent" +msgstr "" + +#, php-format +msgid "Direct message to %s sent." +msgstr "" + +#, fuzzy, php-format +msgid "New message to group %s" +msgstr "此组的私人消息" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, fuzzy, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "此组的私人消息" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" + msgid "Inbox" msgstr "收件箱" msgid "Private messages for this group" msgstr "此组的私人消息" +#, fuzzy +msgid "Private messages" +msgstr "此组的私人消息" + +msgid "Sometimes" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Never" +msgstr "" + +#, fuzzy +msgid "Whether to allow private messages to this group" +msgstr "此组的私人消息" + +msgid "Private sender" +msgstr "" + +msgid "Everyone" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Admin" +msgstr "" + +#, fuzzy +msgid "Who can send private messages to the group" +msgstr "此组的私人消息" + +#, fuzzy +msgid "Send a direct message to this group" +msgstr "此组的私人消息" + +msgid "Message" +msgstr "" + +msgid "Forced notice to private group message." +msgstr "" + +msgid "Private" +msgstr "" + msgid "Allow posting DMs to a group." msgstr "允许向一组发布旅游景点管理系统。" +msgid "Only for logged-in users." +msgstr "" + +msgid "Only for members." +msgstr "" + msgid "This group has not received any private messages." msgstr "" +#, php-format +msgid "%s group inbox" +msgstr "" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "" + #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " "group." msgstr "" +#, php-format +msgid "Message to %s" +msgstr "" + +#, php-format +msgid "Direct message to %s" +msgstr "" + +msgid "Available characters" +msgstr "" + msgctxt "Send button for sending notice" msgid "Send" msgstr "发送" +#, php-format +msgid "Group %s does not allow private messages." +msgstr "" + +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "" + +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "" + +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "" + +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "" + #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "" + +msgid "No group for group message" +msgstr "" + +msgid "No sender for group message" +msgstr "" + +msgid "Only logged-in users can view private messages." +msgstr "" + +msgid "No such message." +msgstr "" + +msgid "Group not found." +msgstr "" + +msgid "Cannot read message." +msgstr "" + +msgid "No sender found." +msgstr "" + +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "" + +#, php-format +msgid "Direct message to group %s sent." +msgstr "" diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 78d13d97d2..674450808c 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po index 44c10fe69b..10fb984291 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index 5fdfd30af7..c89ad508f3 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 018c6b3fec..22a9654604 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index c7f7ac8afa..dd138566a1 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index 09c35a55f1..e5fd44fc27 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index a905f3cdbe..e5eb3c3ef4 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 71bf9c685a..a8d1c8f3e2 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index 9bc3d7218c..c59c56bf65 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index ab2fbd5ab9..93c2d76462 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index ea2a916a24..12b12ba030 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index f1d1f3135e..b564d7840d 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/InProcessCache/locale/InProcessCache.pot b/plugins/InProcessCache/locale/InProcessCache.pot index 75ee80a1bd..e87cd292eb 100644 --- a/plugins/InProcessCache/locale/InProcessCache.pot +++ b/plugins/InProcessCache/locale/InProcessCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po index f320e46c86..9690784b68 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index 258eef8ea8..015827c349 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index a6dc9d82cb..367ec3d06b 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index e180ba38d7..609913d9e5 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index 647038d85c..4f67299459 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index bbae8fc68c..7fe257a81e 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index ce6c31ad0a..57f07d71ec 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index c7d70b00ac..cd04e91783 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index b39edab204..b36a0cf2ca 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 8aac695141..ef880b070c 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po index df24faf258..0d4b4ff002 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index 920c8bb3dd..6bd7886368 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index 90f8bccddd..a9216c2ae6 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index f66354cde8..71b1afc864 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index f546cc5fa6..329f103916 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index 48704d8a77..e49b6dcf06 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 4877dfb35a..9c49a7cfc0 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index 5743bd2e5b..0938d010d6 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index c8af154413..5cb8d31cf3 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index 48b4ad87b5..ee53fc9b8a 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index cfa787a010..082b29d216 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 14cc282539..1e81da0204 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index cfebe7ab5b..c12aa47b2d 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index aaf3f13889..bc791ec3bf 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index d8358ebe5e..87ed02046f 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/Irc/locale/Irc.pot b/plugins/Irc/locale/Irc.pot index 5a96eae87b..b0b276bbae 100644 --- a/plugins/Irc/locale/Irc.pot +++ b/plugins/Irc/locale/Irc.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,6 +20,16 @@ msgstr "" msgid "IRC" msgstr "" +#: IrcPlugin.php:293 +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + #: IrcPlugin.php:393 msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." @@ -33,3 +43,8 @@ msgstr "" #: ircmanager.php:234 msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +#: ircmanager.php:247 +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po index 41a7e290d7..d120af0278 100644 --- a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -25,6 +25,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -39,3 +48,7 @@ msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "IRC-nimimerkkiäsi ei ole rekisteröity, joten IRC-yhteyttä ei voida ottaa " "käyttöön" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index 82b9cb7f7b..6892762328 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -25,6 +25,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -38,3 +47,7 @@ msgstr "" msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Votre pseudo n'est pas enregistré, la connexion IRC ne peut pas être activée" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index 8138807192..265a721bc7 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -38,3 +47,7 @@ msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Tu pseudonymo non es registrate dunque le connexion a IRC non pote esser " "activate" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index e857bfc653..22296c039c 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -38,3 +47,7 @@ msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Вашиот прекар не е регистриран, па затоа не може да се овозможи поврзувањето " "со IRC" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index 60df2d79bc..477b26f626 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -38,3 +47,7 @@ msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Uw gebruikersnaam is niet geregistreerd en daarom kan er geen koppeling met " "IRC worden gemaakt" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index 4db0f4de6a..21060376e5 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -37,3 +46,7 @@ msgstr "" msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Ditt smeknamn är inte registrerat, så IRC-anslutningar kan inte aktiveras" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index a541823a69..c238c99916 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -24,6 +24,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -36,3 +45,7 @@ msgstr "Hindi masudlungan ang bilang ng pagtatangka para sa %d" msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "Hindi nakatala ang palayaw mo kaya mapagana ang ugnayan ng IRC" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index 5b78672cff..5203b3efa0 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -25,6 +25,15 @@ msgstr "" msgid "IRC" msgstr "IRC" +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that's true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." msgstr "" @@ -37,3 +46,7 @@ msgstr "Не вдалося збільшити кількість спроб д msgid "Your nickname is not registered so IRC connectivity cannot be enabled" msgstr "" "Ваш псевдонім не зареєстровано і тому підключення до IRC увімкнути неможливо" + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 31c4a6dad6..1a0b13f6ee 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po index e814cb3018..fe3c7a73d3 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po index dfba26e112..d297d86400 100644 --- a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po index 92e173ae72..91ae5ec06f 100644 --- a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:13:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index d921e410b6..67fcb28852 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po index 75c50596ef..d3bfb993a7 100644 --- a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index 47496c0cab..d816bb42b0 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po index deb5a04761..280f150ef0 100644 --- a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po index 2cab6c1a2a..7539236808 100644 --- a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index ddd145e85b..b63ec0909d 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po index 7a1fc8c4da..1026f9230d 100644 --- a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index 50b1f86e8e..07b7efbdf6 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po index fc4d15ef77..63aafd8bea 100644 --- a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po index 654b9f0ea1..54754a8d55 100644 --- a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po index e72d3aaa10..a924e0857f 100644 --- a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index 6fda837a00..f47516f43b 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index 5fe52046a8..0e4331be13 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po index ad29e464ec..f18f398dd1 100644 --- a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 504889622d..0d4725d31e 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po index b59bd61b94..2bd41f2b9b 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po index a273d1bf24..c96f9abeaf 100644 --- a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 153d01cf65..2ff9d82303 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po index faf9e21c09..09a3445a60 100644 --- a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index ba77aec540..92e74734a9 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po index 178f533f97..ee40439657 100644 --- a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 964a65f511..4ce425ad66 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po index 22b000a610..0728128949 100644 --- a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index 6b16ecb1f5..92d95aa848 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po index c795f1515d..1277668dd3 100644 --- a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po index 250db5304e..8662586685 100644 --- a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po index 5c4f552a02..2c7b9fed89 100644 --- a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 4156fd0a81..1d4a69c97e 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index 0bcc37fa46..f10c8ec735 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po index 2e4609c5c1..42028f47c3 100644 --- a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 43904ab29e..f95ad6f39b 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index c4be550d46..8906867c9a 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index a92420eaad..69bc9c60bf 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index 6a48a8db82..81be9d14a8 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index 3978b43441..aa6d1430f8 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index 6a1fcf36f8..ed48e05b48 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 6894e04c20..5a23c04d0d 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index 6a69dcc9b1..f2838c6877 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index 3b0625ea69..7ef2e439ac 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index b0153df27a..d78b220046 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index 659ad9a9fd..b8cb3fd534 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index 473bc20b5d..d17898b11c 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index e9e9740ce4..95b0ad5065 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index bda4e5edba..ca2576f435 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LinkPreview/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 4a774ba297..0d25e806cc 100644 --- a/plugins/LinkPreview/locale/LinkPreview.pot +++ b/plugins/LinkPreview/locale/LinkPreview.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,3 +19,7 @@ msgstr "" #: LinkPreviewPlugin.php:39 msgid "UI extensions previewing thumbnails from links." msgstr "" + +#: oembedproxyaction.php:59 +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po index c5c292d1e0..aca3cb98e2 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgid "UI extensions previewing thumbnails from links." msgstr "" "Benutzeroberflächenerweiterung, die es erlaubt, Vorschauen für Links " "anzuzeigen." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index 0a207909ec..23c1de9ce6 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgid "UI extensions previewing thumbnails from links." msgstr "" "Extensions d’interface utilisateur pour prévisualiser des vignettes depuis " "les liens." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po index 4b6519e64c..286c5c1c7a 100644 --- a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -23,3 +23,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "הרחבות מנשק משתמש המאפשרות צפייה בתמונות ממוזערות של קישורים." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index 7cac824c03..e97088d93a 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgid "UI extensions previewing thumbnails from links." msgstr "" "Extensiones del interfacie de usator pro previsualisar miniaturas de " "ligamines." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index e346105b75..ebf31881f2 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -24,3 +24,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "" "Додатоци за корисничкиот посредник што даваат преглед на минијатури од врски." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index a7da29d298..f6003be3da 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgid "UI extensions previewing thumbnails from links." msgstr "" "Gebruikersinterfaceuitbreiding voor het weergeven van miniaturen voor " "verwijzingen." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po index 1650007895..afbc753100 100644 --- a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -24,3 +24,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "" "Extensões da interface, para antevisão de miniaturas a partir de links." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po index 8d7dde0320..2a86911547 100644 --- a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "" "Расширения пользовательского интерфейса для просмотр миниатюр из ссылок." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index 7a819c7404..c29bc2efad 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -25,3 +25,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "" "Додаток до користувацького інтерфейсу для перегляду мініатюр з посилань." + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po index 5590a49dc5..876062c372 100644 --- a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -24,3 +24,6 @@ msgstr "" msgid "UI extensions previewing thumbnails from links." msgstr "用户界面扩展的链接的缩略图预览。" + +msgid "There was a problem with your session token. Try again, please." +msgstr "" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 013205326a..c427b2a833 100644 --- a/plugins/Linkback/locale/Linkback.pot +++ b/plugins/Linkback/locale/Linkback.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: LinkbackPlugin.php:204 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + #: LinkbackPlugin.php:241 msgid "" "Notify blog authors when their posts have been linked in microblog notices " diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index 0484d5ad33..f440e7208a 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index 4caa0c7c01..53a4a6650e 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index 92ea46195f..c1fdeb8a8d 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index 5f2ed7ca61..ac854c0c50 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index 1d2ca71e7a..eb9e7905a0 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index c38236052e..3cdc2a12bc 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 2d60bac4f0..34fe6fd861 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index d24c438973..b7f55b969e 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 06cb73ed67..933c392ec0 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index 3c75cd9ae7..068e6a0c18 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:57+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index 07004772e4..d55da0f461 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index 24b52acdd0..87b5aa0db1 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkback\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" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 3f3f491ad8..ab17bb53e3 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index ce5e97ffea..4e69368c88 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkback\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" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index f1c50b49af..10ab00643e 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:58+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + msgid "" "Notify blog authors when their posts have been linked in microblog notices " "using Pingback " diff --git a/plugins/LogFilter/locale/LogFilter.pot b/plugins/LogFilter/locale/LogFilter.pot index ab314bd9c0..ea2f9a2d5d 100644 --- a/plugins/LogFilter/locale/LogFilter.pot +++ b/plugins/LogFilter/locale/LogFilter.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po index 603ec63f79..003e9ba632 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index 32163df5b9..32effaaa42 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index 097c6135c7..0111a082a8 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 22a6644688..e730141544 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index 1c33340912..7163fb61f2 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index 680c3ed653..481216c41c 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index a16bedc79c..94784abbea 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index 883abc7f17..266b0360f6 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index e127297b20..6e66b5b586 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index 644f838d38..1e38f2b708 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index 6e34cfd2f6..40d0d41006 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:48:59+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:17:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 1b21dc8f41..2af17125d7 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po index 45bbf4c6ee..58db7cc73a 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index c4bf60002b..a5fa3b0af1 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index 58abd5e4b7..2ba92c7aee 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 9717377979..1600ba1ec2 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index e1f7494289..c6c1e7bd94 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index 3a363a14cb..8512eb47e5 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index 4d4ce2f8b3..47be57a475 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index c2f3da9da7..303daf954a 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index 61d246aabb..258e9cfcdf 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 738f77bd0c..bf87254056 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index 62def638ac..4d17364a43 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index 16c1875d4b..0a92bdb4b1 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index 9c5bb50ada..d1005b13c2 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index fa0452da8d..94d8fbd1dd 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index 8750b37529..9ac4aba7b3 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index 621cc89298..2e808959a9 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:00+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 9011ec810b..1590a5a1b2 100644 --- a/plugins/Memcache/locale/Memcache.pot +++ b/plugins/Memcache/locale/Memcache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po index aee2c68a54..25d41809e9 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index 4bec479c01..81f33367ca 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index 9649406c9a..bb44d44efb 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 75bc732263..1514c8f031 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index 26b08d7f96..4737d01d5b 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index 58ae5f3f36..436104f5f8 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index f5094b9b1c..3f263f1bd0 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index bd98472193..045d93bec9 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index cde053fd03..c4bb476d35 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index c3ee6988ca..d21d33ad70 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index f5c383b53b..41fe8b74cc 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index 037d7594eb..a55f6af518 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index 4d38b2493a..b89bbfd014 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index f3ebf3ce99..196577262b 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index 42220cc847..7e6133b4af 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:01+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index b62f8c88e4..d31e53f399 100644 --- a/plugins/Memcached/locale/Memcached.pot +++ b/plugins/Memcached/locale/Memcached.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po index b8b59226ee..ffcdb37746 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index c4c1ee5109..688c1023cb 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index 62af90d1dd..fb707019c4 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index 98cd6675ca..8a83fcb1f8 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index a80c2d3b32..3ff2905a1b 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index 90e1b9d35f..b23fec62ca 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index aa204f3c57..a64b7a6520 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index fd68100ca3..7fe624439a 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index a2c0ac58fb..34ace8b8a8 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index ab26cbca14..fd37b85d24 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index 92911e9a66..54d869c28f 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index be8cad385a..2a18ffd856 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index a05080ecdd..33d995877a 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index 3f1681aacf..ed598adefe 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index 1ce37401c7..3cbb1277ba 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index ea41d6eb1c..52a5b9b46a 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index c0d6acff3f..e442647167 100644 --- a/plugins/Meteor/locale/Meteor.pot +++ b/plugins/Meteor/locale/Meteor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po index 69f4051498..5b470f98fb 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index df2cd36ce0..ffff13f780 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index 3677e49ed7..5d6a5abcae 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po index 69b00fc388..b19c71b57b 100644 --- a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index cb486e5354..df02461c0a 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index 0b87de8e02..eb871ea6f2 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index 0915a52a01..ee97313cca 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 8951b5b83a..5069d987f6 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index 138884d837..2ff3517377 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po index 836d23318c..17f61d4ec5 100644 --- a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 9c961b9417..2326d240b4 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po index 3b376bcb06..f1126636f7 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 9d1a119fad..09fb8a3b40 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index 37ed40544e..299a2c14a3 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index 6b1ce71a78..23a07ddd72 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index ed75f93d51..b6b0a37d94 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index b43b3d26b6..f2823bf3e3 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index 751237c2ee..33984bc0ea 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index 3d0e5b7f46..51f3c7c9e0 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index b166a42362..bb87ffa2f3 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index 05217da639..f869e7c0cb 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index e5f22ae402..ac93f43ae0 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po index b442d30f6d..12a2c33d95 100644 --- a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:26+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po index 7ff2fa556b..334678b7db 100644 --- a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index 47bf8d98be..93adcb96fa 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: Chechen \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ce\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index 2464a26af3..bff9cb7d1a 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 7f6484928c..0155b7b203 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po index 60c1dfe11a..cdf8eef808 100644 --- a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index a727ae723d..4a6bff954f 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 50120c516d..3978d6cd3d 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index c2c7ea527d..ac11e5870b 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 0d636e58be..07ebd155db 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po index 052a223520..1167070f8f 100644 --- a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: Pashto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ps\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 912bc7e423..7c463bfdc9 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po index 2434cc44cd..e03203b311 100644 --- a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po index f93dd0acec..753b1dd445 100644 --- a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index e95fee0e35..6473a6a53d 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index 3c75a56e39..8035f4551f 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index f440fd4a9c..3af855afa6 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index 4eb4670b1a..c3b3c874c5 100644 --- a/plugins/ModHelper/locale/ModHelper.pot +++ b/plugins/ModHelper/locale/ModHelper.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po index 79ae792ef2..06a16a6686 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index e5a7f47e80..42cd80f0d0 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index 8b25335a4b..1a047fbaa4 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index 1ad17008fb..ec743747a0 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index 1c20ef17da..4933ff93e2 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index bb5c9a0bdb..70c8a1d5c1 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index 1ed29519b0..8d1b617e97 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index dbe123c7d2..ada9fe7094 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index 7bdb8ffa00..32d6884410 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index f1ab8eca3e..e5c5daab15 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModPlus/locale/ModPlus.pot b/plugins/ModPlus/locale/ModPlus.pot index 954abd5239..4dae244422 100644 --- a/plugins/ModPlus/locale/ModPlus.pot +++ b/plugins/ModPlus/locale/ModPlus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,10 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: remoteprofileaction.php:18 +msgid "User has no profile." +msgstr "" + #: remoteprofileaction.php:51 #, php-format msgid "%s on %s" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 6545af0b29..e843c214f5 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s auf %s" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index abd705166a..7287511447 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -10,18 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s sur %s" diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index 8a9138b5b0..bd1241b4ff 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s in %s" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index 91207da60f..ca52401186 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s на %s" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index cc6439ea36..186f8790c7 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,18 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s op %s" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index d68df3992c..ac954e6336 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modplus\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" +msgid "User has no profile." +msgstr "" + #, php-format msgid "%s on %s" msgstr "%s на %s" diff --git a/plugins/Mollom/locale/Mollom.pot b/plugins/Mollom/locale/Mollom.pot new file mode 100644 index 0000000000..102d82056d --- /dev/null +++ b/plugins/Mollom/locale/Mollom.pot @@ -0,0 +1,21 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: MollomPlugin.php:89 +msgid "Spam Detected." +msgstr "" diff --git a/plugins/Msn/locale/Msn.pot b/plugins/Msn/locale/Msn.pot index 775d771286..232909bcc7 100644 --- a/plugins/Msn/locale/Msn.pot +++ b/plugins/Msn/locale/Msn.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po index 67775a66d2..602713e9a1 100644 --- a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po index e8a708e233..7bfc5acf24 100644 --- a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: Greek \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po index ceb6d36e37..40f562fd4e 100644 --- a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index 1650c568f5..93eb530afa 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index 483e7752aa..f9d25c4c16 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index 51bb78d362..171fbb1b05 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po index ea7e5719d8..d9046a0885 100644 --- a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index d8edf3a616..2a9096f43a 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index 5bdfa957a0..6503aebd99 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index 6a26fa920e..b1ed54835a 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po index 41e5fc0d88..33f15b0f8d 100644 --- a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:09+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po index fe661a03d7..9b93fc91e9 100644 --- a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:09+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po index 5f7b32da1f..89d1a991c1 100644 --- a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:09+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po index 5379e9a424..d163a41a0e 100644 --- a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:09+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po index 4b1b47c6bc..24894d71e3 100644 --- a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:09+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po index b1c7cf4913..97babb7141 100644 --- a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po index b7f813c3fe..64f6f3d6f0 100644 --- a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po index 1ec1240254..8d56336dde 100644 --- a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po index ced03ff4f3..66c01501d2 100644 --- a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po @@ -10,13 +10,13 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 47446bab8e..cac8bb5eec 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po index ad8fcf7b33..eaf560a064 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 49d5c48155..7e00dc0494 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index a5273e5d10..6a2ed0abd1 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 71903d452e..62f92aee40 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index b96e3d3d49..51100bc7cc 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index e958165796..e1d48e4666 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index ab461b42cc..0ebf1b1356 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 334758d0e8..777f50d955 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index 50f736c384..a14ccb9af0 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index ecae6a2024..7d288d2561 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po index 9f8f29edea..a04cb8d3b5 100644 --- a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po index 6ed3c55591..49ec6e4e17 100644 --- a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index 0d3feb0416..d1bb0fed19 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index b6c05ccc8c..1d3d8eb2a1 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index cd4a9ad4fe..b3c21ac4f6 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index 291e0e0694..01e9ba8fbf 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po index 8773f709a2..cccd30e1f7 100644 --- a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index f73f44775c..8dd35a2083 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,94 +22,94 @@ msgstr "" #. TRANS: Link description for link to subscribe to a remote user. #. TRANS: Link text for a user to subscribe to an OStatus user. -#: OStatusPlugin.php:223 OStatusPlugin.php:933 +#: OStatusPlugin.php:225 OStatusPlugin.php:935 msgid "Subscribe" msgstr "" #. TRANS: Link description for link to join a remote group. -#: OStatusPlugin.php:242 OStatusPlugin.php:651 actions/ostatussub.php:109 +#: OStatusPlugin.php:244 OStatusPlugin.php:653 actions/ostatussub.php:109 msgid "Join" msgstr "" #. TRANSLATE: %s is a domain. -#: OStatusPlugin.php:455 +#: OStatusPlugin.php:457 #, php-format msgid "Sent from %s via OStatus" msgstr "" #. TRANS: Exception. -#: OStatusPlugin.php:527 +#: OStatusPlugin.php:529 msgid "Could not set up remote subscription." msgstr "" -#: OStatusPlugin.php:601 +#: OStatusPlugin.php:603 msgid "Unfollow" msgstr "" #. TRANS: Success message for unsubscribe from user attempt through OStatus. #. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name. -#: OStatusPlugin.php:604 +#: OStatusPlugin.php:606 #, php-format msgid "%1$s stopped following %2$s." msgstr "" -#: OStatusPlugin.php:632 +#: OStatusPlugin.php:634 msgid "Could not set up remote group membership." 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. -#: OStatusPlugin.php:654 +#: OStatusPlugin.php:656 #, php-format msgid "%1$s has joined group %2$s." msgstr "" #. TRANS: Exception. -#: OStatusPlugin.php:663 +#: OStatusPlugin.php:665 msgid "Failed joining remote group." msgstr "" -#: OStatusPlugin.php:703 +#: OStatusPlugin.php:705 msgid "Leave" msgstr "" #. TRANS: Success message for unsubscribe from group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. -#: OStatusPlugin.php:706 +#: OStatusPlugin.php:708 #, php-format msgid "%1$s has left group %2$s." msgstr "" -#: OStatusPlugin.php:781 +#: OStatusPlugin.php:783 msgid "Disfavor" msgstr "" #. TRANS: Success message for remove a favorite notice through OStatus. #. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. -#: OStatusPlugin.php:784 +#: OStatusPlugin.php:786 #, php-format msgid "%1$s marked notice %2$s as no longer a favorite." msgstr "" #. TRANS: Link text for link to remote subscribe. -#: OStatusPlugin.php:860 +#: OStatusPlugin.php:862 msgid "Remote" msgstr "" #. TRANS: Title for activity. -#: OStatusPlugin.php:900 +#: OStatusPlugin.php:902 msgid "Profile update" msgstr "" #. TRANS: Ping text for remote profile update through OStatus. #. TRANS: %s is user that updated their profile. -#: OStatusPlugin.php:903 +#: OStatusPlugin.php:905 #, php-format msgid "%s has updated their profile page." msgstr "" #. TRANS: Plugin description. -#: OStatusPlugin.php:948 +#: OStatusPlugin.php:950 msgid "" "Follow people across social networks that implement OStatus." @@ -348,11 +348,21 @@ msgstr "" msgid "In reply to a notice not by this user and not mentioning this user." msgstr "" +#. TRANS: Client exception. +#: actions/usersalmon.php:160 +msgid "This is already a favorite." +msgstr "" + #. TRANS: Client exception. #: actions/usersalmon.php:165 msgid "Could not save new favorite." msgstr "" +#. TRANS: Client exception. +#: actions/usersalmon.php:182 +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. #: actions/usersalmon.php:197 msgid "Can't favorite/unfavorite without an object." diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index 9491ecc71f..187b6ca848 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -311,10 +311,19 @@ msgstr "" "In einer Antowrt auf eine Nachricht, die nicht von diesem Benutzer stammt " "und diesen Benutzer nicht erwähnt." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Dieses Ziel versteht keine Favoriten." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Neuer Favorit konnte nicht gespeichert werden." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "Kann nicht ohne Objekt (ent)favorisieren." diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 7a93a42c87..a2cd5a4a51 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -323,10 +323,19 @@ msgstr "" "En réponse à un avis non émis par cet utilisateur et ne mentionnant pas cet " "utilisateur." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Cette cible ne reconnaît pas les indications de mise en favoris." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Impossible de sauvegarder le nouveau favori." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "Impossible de mettre en favoris ou retirer des favoris sans un objet." diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 364bfef385..47320fd838 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -310,10 +310,19 @@ msgstr "" "In responsa a un nota non scribite per iste usator e que non mentiona iste " "usator." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Iste destination non comprende le addition de favorites." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Non poteva salveguardar le nove favorite." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "Non pote favorir/disfavorir sin objecto." diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 906603c8a7..d510e2674a 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -307,10 +307,19 @@ msgid "In reply to a notice not by this user and not mentioning this user." msgstr "" "Како одговор на забелешка која не е од овој корисник и не го споменува." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Оваа цел не разбира бендисување на забелешки." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Не можам да го зачувам новобендисаното." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "Не можам да означам како бендисано или да тргнам бендисано без објект." diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 3cfad86e0d..5c7fdeea3b 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -319,10 +319,19 @@ msgstr "" "In antwoord op een mededeling niet door deze gebruiker en niet over of aan " "deze gebruiker." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Deze bestemming begrijpt favorieten niet." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Het was niet mogelijk de nieuwe favoriet op te slaan." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 3da3356bd1..8028176632 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:06:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -313,10 +313,19 @@ msgstr "" "У відповідь на допис іншого користувача, а даний користувач у ньому навіть " "не згадується." +#. TRANS: Client exception. +#, fuzzy +msgid "This is already a favorite." +msgstr "Ціль не розуміє, що таке «додати до обраних»." + #. TRANS: Client exception. msgid "Could not save new favorite." msgstr "Не вдалося зберегти як новий обраний допис." +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "" + #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." msgstr "" diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index ea6333ad71..43f9cf502b 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po index af420f8193..b326d2313d 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index db6f29b19c..dc979257b1 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 9e9dc9fe6b..9b4b87df0d 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index e01229b19a..8f880b2046 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 4ee1f6a526..f359128a1d 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 445d7e1ea7..1c013bc104 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index c498118112..8c3d33de2b 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 8ad6df5a5d..2544cdf7de 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index 11cce7c1c6..b6f05baaf0 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index be884813d2..89c956ae5b 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index a386be5dbc..b26302e366 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index 6615a6a902..43bcc17aad 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index 568cf193c8..a1f7b20a2a 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 539eba3071..12b602bf91 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -188,7 +188,24 @@ msgid "New nickname" msgstr "" #: finishopenidlogin.php:128 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +#: finishopenidlogin.php:131 +msgid "Email" +msgstr "" + +#: finishopenidlogin.php:132 +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#: finishopenidlogin.php:149 +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. @@ -418,7 +435,11 @@ msgid "" msgstr "" #: openidadminpanel.php:278 -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#: openidadminpanel.php:278 +msgid "Save OpenID settings." msgstr "" #. TRANS: Client error message diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index fe0444adb4..d5bcab136a 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:01+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -164,7 +164,21 @@ msgstr "أنشئ مستخدمًا جديدًا بهذا الاسم المستع msgid "New nickname" msgstr "الاسم المستعار الجديد" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. @@ -351,9 +365,13 @@ msgid "" "authentication for all users!" msgstr "" -msgid "Save OpenID settings" +msgid "Save" msgstr "" +#, fuzzy +msgid "Save OpenID settings." +msgstr "إعدادات الهوية المفتوحة" + #. TRANS: Client error message msgid "Not logged in." msgstr "لست والجًا." diff --git a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po index 4490cae1bf..78f680797e 100644 --- a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -162,7 +162,21 @@ msgstr "Krouiñ un implijer nevez gant al lesanv-se." msgid "New nickname" msgstr "Lesanv nevez" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. @@ -348,9 +362,13 @@ msgid "" "authentication for all users!" msgstr "" -msgid "Save OpenID settings" +msgid "Save" msgstr "" +#, fuzzy +msgid "Save OpenID settings." +msgstr "Arventenn OpenID" + #. TRANS: Client error message msgid "Not logged in." msgstr "Nann-kevreet." diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 71b9430dfb..994bddbdc6 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:01+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -169,7 +169,21 @@ msgstr "Crea un usuari nou amb aquest sobrenom." msgid "New nickname" msgstr "Nou sobrenom" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." msgstr "" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. @@ -366,7 +380,11 @@ msgid "" "authentication for all users!" msgstr "" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Desa els paràmetres de l'OpenID" #. TRANS: Client error message diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 1e89e112e6..59fe327d64 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -176,9 +176,24 @@ msgstr "Neues Benutzerkonto mit diesem Benutzernamen erstellen." msgid "New nickname" msgstr "Neuer Benutzername" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -383,7 +398,11 @@ msgstr "" "Von allen Benutzern OpenID-Anmeldung verlangen. Warnung: deaktiviert " "Passwort-Authentifizierung aller Benutzer!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "OpenId-Einstellungen speichern" #. TRANS: Client error message diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 41d2567076..4b0a126648 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -173,9 +173,24 @@ msgstr "Créer un nouvel utilisateur avec ce pseudonyme." msgid "New nickname" msgstr "Nouveau pseudonyme" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -385,7 +400,11 @@ msgstr "" "cela désactive l’authentification par mot de passe pour tous les " "utilisateurs !" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Sauvegarder les paramètres OpenID" #. TRANS: Client error message diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 38c637aec4..522b664bba 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:18+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -168,9 +168,24 @@ msgstr "Crear un nove usator con iste pseudonymo." msgid "New nickname" msgstr "Nove pseudonymo" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusculas o numeros, sin punctuation o spatios" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -376,7 +391,11 @@ msgstr "" "Requirer que tote le usatores aperi session via OpenID. Aviso: disactiva le " "authentication per contrasigno pro tote le usatores!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Salveguardar configurationes de OpenID" #. TRANS: Client error message diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index ee808cbbd3..04eefb5d3a 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -167,9 +167,24 @@ msgstr "Создај нов корисник со овој прекар." msgid "New nickname" msgstr "Нов прекар" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -372,7 +387,11 @@ msgstr "" "Барај од сите корисници да се најавуваат преку OpenID. ПРЕДУПРЕДУВАЊЕ: ова " "ја оневозможува потврдата на лозинка за сите корисници!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Зачувај нагодувања за OpenID" #. TRANS: Client error message diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 5045c813f5..92a9c89a3d 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -173,9 +173,24 @@ msgstr "Nieuwe gebruiker met deze naam aanmaken." msgid "New nickname" msgstr "Nieuwe gebruiker" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 kleine letters of getallen; geen leestekens of spaties" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -379,7 +394,11 @@ msgstr "" "instelling wordt gebruikt, kan geen enkele gebruiker met een wachtwoord " "aanmelden!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "OpenID-instellingen opslaan" #. TRANS: Client error message diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 1c31849412..2dca3397e1 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -171,10 +171,25 @@ msgstr "Lumikha ng isang bagong tagagamit na may ganitong palayaw." msgid "New nickname" msgstr "Bagong palayaw" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1 hanggang 64 maliliit na mga titik o mga bilang, walang bantas o mga patlang" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -389,7 +404,11 @@ msgstr "" "BABALA: hindi pinagagana ang pagpapatunay ng hudyat para sa lahat ng mga " "tagagamit!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Sagipin ang mga katakdaan ng OpenID" #. TRANS: Client error message diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 411fe08480..0afb329d3a 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:19+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -170,10 +170,25 @@ msgstr "Створити нового користувача з цим нікн msgid "New nickname" msgstr "Новий нікнейм" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a licese with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" msgid "Create" @@ -376,7 +391,11 @@ msgstr "" "Вимагає, щоб всі користувачі входили лише за допомогою OpenID. Увага: ця " "опція вимикає автентифікацію за паролем для всіх користувачів!" -msgid "Save OpenID settings" +msgid "Save" +msgstr "" + +#, fuzzy +msgid "Save OpenID settings." msgstr "Зберегти налаштування OpenID" #. TRANS: Client error message diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 20d4509354..51e143fb5a 100644 --- a/plugins/OpenX/locale/OpenX.pot +++ b/plugins/OpenX/locale/OpenX.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po index eb2722d13d..825920a2ac 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index a670c5ce66..a338dd7d46 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index 3696226ca6..10ca84295a 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index 205763357c..051ab4f776 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index 456fd762ab..482fa86224 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:20+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index 940bc2f646..b38f9572b1 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index abbddb10ac..bd04308ef5 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:21+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index e975581155..26957437a2 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po index 5ff7a73c37..452c60981c 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index b9eb001862..1e4b33826e 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index 889b7132d3..e0a8d3e92d 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index 32eae37046..706e484b4c 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index f5618c2562..abaaa8066f 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index b66d5c5c50..c12e523cd4 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index 1a1d5ad3e3..5dc10ce0b8 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index 6d6ee90526..568d36d582 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index 8994a30b5e..b1bb2de1b8 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index 76ff798ccc..9b3bdfde2a 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:29+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index 53fa703501..0be2a7631e 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index 0b253eef83..b0408c7cf9 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index 1d06cdb8e0..08bea88d75 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index 6931366ac3..fc9e03bfd4 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:30+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/Poll/locale/Poll.pot b/plugins/Poll/locale/Poll.pot index 04dcc5c9d3..2ff2c2cb48 100644 --- a/plugins/Poll/locale/Poll.pot +++ b/plugins/Poll/locale/Poll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,28 +17,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. TRANS: Client exception thrown trying to view a non-existing poll. -#: showpoll.php:68 +#: showpoll.php:59 msgid "No such poll." msgstr "" #. TRANS: Client exception thrown trying to view a non-existing poll notice. -#: showpoll.php:76 +#: showpoll.php:67 msgid "No such poll notice." msgstr "" -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -#: showpoll.php:83 -msgid "No such user." -msgstr "" - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -#: showpoll.php:90 -msgid "User without a profile." -msgstr "" - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. -#: showpoll.php:109 +#: showpoll.php:84 #, php-format msgid "%1$s's poll: %2$s" msgstr "" @@ -88,6 +78,10 @@ msgstr "" msgid "Unexpected type for poll plugin: %s." msgstr "" +#: PollPlugin.php:447 +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. #: PollPlugin.php:481 msgctxt "APPTITLE" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index 055e9f0b82..fe2039cc97 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -29,14 +29,6 @@ msgstr "Iste sondage non existe." msgid "No such poll notice." msgstr "Iste nota de sondage non existe." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Iste usator non existe." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Usator sin profilo." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -80,6 +72,9 @@ msgstr "Responsa invalide a sondage: le sondage es incognite." msgid "Unexpected type for poll plugin: %s." msgstr "Typo inexpectate pro le plug-in de sondages: %s." +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" @@ -150,3 +145,9 @@ msgstr "Sondage invalide o mancante." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Resultatos del sondage" + +#~ msgid "No such user." +#~ msgstr "Iste usator non existe." + +#~ msgid "User without a profile." +#~ msgstr "Usator sin profilo." diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index 8509653a3b..5ce42d5f46 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -29,14 +29,6 @@ msgstr "Нема таква анкета." msgid "No such poll notice." msgstr "Нема таква анкетна забелешка." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Нема таков корисник." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Корисник без профил." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -80,6 +72,9 @@ msgstr "Неважечки одговор во анкетата: анкетат msgid "Unexpected type for poll plugin: %s." msgstr "Неочекуван тип за анкетен приклучок: %s." +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" @@ -150,3 +145,9 @@ msgstr "Неважечка или непостоечка анкета." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Резултати од анкетата" + +#~ msgid "No such user." +#~ msgstr "Нема таков корисник." + +#~ msgid "User without a profile." +#~ msgstr "Корисник без профил." diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index d4f7c28283..3a2836d61f 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -29,14 +29,6 @@ msgstr "Deze peiling bestaat niet." msgid "No such poll notice." msgstr "Dit peilingsbericht bestaat niet." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Deze gebruiker bestaat niet." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Gebruiker zonder een profiel." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -80,6 +72,9 @@ msgstr "Ongeldig antwoord op peiling: de peiling bestaat niet." msgid "Unexpected type for poll plugin: %s." msgstr "Onverwacht type voor peilingplug-in: %s" +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" @@ -150,3 +145,9 @@ msgstr "De peiling is ongeldig of bestaat niet." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Peilingresultaten" + +#~ msgid "No such user." +#~ msgstr "Deze gebruiker bestaat niet." + +#~ msgid "User without a profile." +#~ msgstr "Gebruiker zonder een profiel." diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index 985e639667..2905b9c61d 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -29,14 +29,6 @@ msgstr "Walang ganyang botohan." msgid "No such poll notice." msgstr "Walang ganyang pabatid na pangbotohan." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Walang ganyang tagagamit." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Tagagamit na walang balangkas." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -81,6 +73,9 @@ msgstr "Hindi katanggap-tanggap na tugon: hindi nalalaman ang botohan." msgid "Unexpected type for poll plugin: %s." msgstr "Hindi inaasahang uri ng pampasak ng botohan: %s." +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" @@ -151,3 +146,9 @@ msgstr "Hindi katanggap-tanggap o nawawalang botohan." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Mga kinalabasan ng botohan" + +#~ msgid "No such user." +#~ msgstr "Walang ganyang tagagamit." + +#~ msgid "User without a profile." +#~ msgstr "Tagagamit na walang balangkas." diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index 25cdad1a56..5faf479168 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -30,14 +30,6 @@ msgstr "Немає такого опитування." msgid "No such poll notice." msgstr "Немає допису щодо опитування." -#. TRANS: Client exception thrown trying to view a poll of a non-existing user. -msgid "No such user." -msgstr "Такого користувача немає." - -#. TRANS: Server exception thrown trying to view a poll for a user for which the profile could not be loaded. -msgid "User without a profile." -msgstr "Користувач без профілю." - #. TRANS: Page title for a poll. #. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. #, php-format @@ -81,6 +73,9 @@ msgstr "Неправильна відповідь на опитування: н msgid "Unexpected type for poll plugin: %s." msgstr "Неочікувана дія для додатку опитувань: %s." +msgid "Poll data is missing" +msgstr "" + #. TRANS: Application title. msgctxt "APPTITLE" msgid "Poll" @@ -151,3 +146,9 @@ msgstr "Невірне або відсутнє опитування." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Результати опитування" + +#~ msgid "No such user." +#~ msgstr "Такого користувача немає." + +#~ msgid "User without a profile." +#~ msgstr "Користувач без профілю." diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index c9ea0d7f4e..ea236f9b90 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po index d58886cba2..8d94f4b7e0 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index 1b8b604797..79ad8cd8e9 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index 66af752a13..95c7a07216 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index 4045575cf6..3d3379d68b 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index 5d537df81e..c0ca58ea4b 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index f54b43fcff..8ca3cf5403 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 170515a4c1..72fe4c7a68 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index 56e1a8054e..994e8c53f4 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index 02f3f2b991..93f31bf2de 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index 346e52e1f7..dd4e6d2181 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index fc3e381d64..2571d38ca7 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index b9df816d2d..f05acd5103 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index a61d6f7bfd..fe757053b0 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 8e0935b0ea..a6123287b4 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index c8bbe8add3..55c580c59a 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index 9a66138c8d..fa218292c1 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index 0c3c6117ee..ee75341d10 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index bfee18a8f9..d0beab5843 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index 7f73447dea..1cf37555ee 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index 542acf09e6..abb988e82f 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 752aa066b1..6b585163cc 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index cf1a7a472c..d3b4db920f 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index 1fca7b3c8c..4d1091ffd8 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 17df0f57e0..f9e55caf7c 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index bc63298b65..a747535d0e 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 83385fcaf5..5284da7583 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index 90644052ad..04bf5d3484 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index 02956e71fc..f4284bba78 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index 4c63f721c7..6a4883be4c 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:33+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index cbbe43fc66..bee79839f1 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po index 29d2502244..290968258c 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 185c008a5e..592d74fd48 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index 5d055084cc..d1548ac80d 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index de7276779b..4c0afe596f 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index feb5bb2740..8f294f2cbf 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index 63e088938c..ac104f6734 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index 9eba5516c2..c942b38b8e 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index 707e29b86d..ed6adc71fc 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index c5192fe049..77bea67d8e 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index 5d2e7070df..bb57e381cf 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index de6c25b044..12bf61aed1 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:34+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index 130ff5988d..c26d60a8d8 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index c5534bd459..66c9668646 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index 7cc9f98bb8..d38c7cb468 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index 9fd2670cd6..750d308fbe 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 1c0d87ca2e..57f10063be 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 6774f641fe..88dac3ab9d 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,10 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: LoggingAggregator.php:85 +msgid "A URL parameter is required." +msgstr "" + #: LoggingAggregator.php:93 msgid "This resource requires an HTTP GET." msgstr "" diff --git a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po index f3fd767393..4ccd1f30ad 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -11,18 +11,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Diese Ressource erfordert eine HTTP-GET-Anfrage." diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index a0898c4459..bc88c0a223 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Cette ressource nécessite une requête HTTP GET." diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 12481f2693..41a2e28d1d 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Iste ressource require un HTTP GET." diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index 88988ca15f..d39f81aaad 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Овој ресурс бара HTTP GET." diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index 826238466d..f9bb5fbee2 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Deze bron heeft een HTTP GET nodig." diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index 2f762118ab..6b7219f1ed 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,18 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Ang pinagkunang ito ay nangangailangan ng HTTP GET." diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index ce9ba8c4c1..10b22807d0 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,19 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:40+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\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" +msgid "A URL parameter is required." +msgstr "" + msgid "This resource requires an HTTP GET." msgstr "Цей ресурс вимагає форми HTTP GET." diff --git a/plugins/Realtime/locale/Realtime.pot b/plugins/Realtime/locale/Realtime.pot index 85ea4e8102..1beaf56110 100644 --- a/plugins/Realtime/locale/Realtime.pot +++ b/plugins/Realtime/locale/Realtime.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po index 8e66ca6cdd..85f71a360a 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index 5360b9fe30..5587004d2d 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index 40e13cbe7c..f966350ab4 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index aef1a6d327..fde577f449 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index b7cb7d3494..b2d0b5cf01 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:35+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index 07923a5189..43f59bdd43 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index 4f6855edfd..c698cf734e 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 3f2386af58..8f690b30ca 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index ac4d6a405a..696f1c6374 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index b4c2e69af4..f4d5e93dd1 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index 4b4b7ad888..29cb5c1b01 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index 3927fa9761..dff046dc7c 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index 026f283501..f3d2d31678 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index a15eb31c7e..5d393a77c6 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index 291e1c776a..e883d1eb4a 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index 772ffe3083..670e6b2b57 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index d112560251..8b9c83e93d 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index 09a0501960..1cdef19395 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 3680ac656d..4a5b2959ec 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index da7ea9db57..01569c056f 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:36+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index f203f063f8..6a02a7a465 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index a04c7cde7b..a10ebfa083 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index 28de2da4fc..d2ece1babf 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index 39858658c1..7a2371e662 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 018f7f90d0..ea38113f10 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index bb1c99231a..0f98328247 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index d683528cf5..cd24d96cc3 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 4d4563695d..dd6edcc604 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index 2f358133a7..59e8ad5e68 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index 4ba797310c..36016b6be3 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:37+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 5b9b0fc011..2cf7961495 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index 9f5eac3b24..393679f9fd 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 6b7b2cc616..71af035172 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,3 +27,68 @@ msgstr "" #: RequireValidatedEmailPlugin.php:245 msgid "Disables posting without a validated email address." msgstr "" + +#: confirmfirstemail.php:69 +msgid "You are already logged in." +msgstr "" + +#: confirmfirstemail.php:77 +msgid "Confirmation code not found." +msgstr "" + +#: confirmfirstemail.php:84 +msgid "No user for that confirmation code." +msgstr "" + +#: confirmfirstemail.php:90 +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#: confirmfirstemail.php:95 +msgid "That address has already been confirmed." +msgstr "" + +#: confirmfirstemail.php:106 +msgid "Password too short." +msgstr "" + +#: confirmfirstemail.php:109 +msgid "Passwords do not match." +msgstr "" + +#: confirmfirstemail.php:165 +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +#: confirmfirstemail.php:175 +msgid "Set a password" +msgstr "" + +#: confirmfirstemail.php:191 +msgid "Confirm email" +msgstr "" + +#: confirmfirstemail.php:209 +msgid "New password" +msgstr "" + +#: confirmfirstemail.php:210 +msgid "6 or more characters." +msgstr "" + +#: confirmfirstemail.php:213 +msgid "Confirm" +msgstr "" + +#: confirmfirstemail.php:214 +msgid "Same as password above." +msgstr "" + +#: confirmfirstemail.php:221 +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index 40825fb053..a171af4917 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -29,3 +29,53 @@ msgstr "Du musst eine E-Mail-Adresse angeben, um dich zu registrieren." msgid "Disables posting without a validated email address." msgstr "Deaktiviert Posten ohne gültige E-Mail-Adresse." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index c1b7e7f39c..40d32d9ada 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -30,3 +30,53 @@ msgstr "Vous devez fournir une adresse électronique avant de vous enregistrer." msgid "Disables posting without a validated email address." msgstr "" "Désactive le postage pour ceux qui n’ont pas d’adresse électronique valide." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index 0fa999f6f5..e9a06dde21 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -29,3 +29,53 @@ msgstr "Tu debe fornir un adresse de e-mail pro poter crear un conto." msgid "Disables posting without a validated email address." msgstr "Disactiva le publication de messages sin adresse de e-mail validate." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 23c76d7134..2dceca79d7 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -31,3 +31,53 @@ msgstr "За да се регистрирате, ќе мора да наведе msgid "Disables posting without a validated email address." msgstr "Оневозможува објавување без потврдена е-пошта." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index 0f8a548a32..d585caefb8 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -29,3 +29,53 @@ msgstr "U moet een e-mailadres opgeven om te kunnen registreren." msgid "Disables posting without a validated email address." msgstr "Schakelt berichten plaatsen zonder gevalideerd e-mailadres uit." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index 61186d419e..f0e7d0aa14 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -29,3 +29,53 @@ msgstr "Dapat kang magbigay ng isang tirahan ng e-liham upang makapagpatala." msgid "Disables posting without a validated email address." msgstr "" + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index 4c90e89dd1..9cdc55beab 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:38+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -34,3 +34,53 @@ msgid "Disables posting without a validated email address." msgstr "" "Забороняє надсилання дописів, якщо користувач не має підтвердженої " "електронної адреси." + +msgid "You are already logged in." +msgstr "" + +msgid "Confirmation code not found." +msgstr "" + +msgid "No user for that confirmation code." +msgstr "" + +#, php-format +msgid "Unrecognized address type %s." +msgstr "" + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +msgid "That address has already been confirmed." +msgstr "" + +msgid "Password too short." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +#, php-format +msgid "" +"You have confirmed the email address for your new user account %s. Use the " +"form below to set your new password." +msgstr "" + +msgid "Set a password" +msgstr "" + +msgid "Confirm email" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "6 or more characters." +msgstr "" + +msgid "Confirm" +msgstr "" + +msgid "Same as password above." +msgstr "" + +msgid "Save" +msgstr "" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index 0a8d18c958..5f7804cda7 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po index 1b742ebed2..ca10ae45cf 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index f976902c39..59fa3288f9 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index 873c68e816..d8150fc8e7 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index ceca9269e7..d437643231 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index aba664acd6..8062e4de35 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index a1a77505a1..19ed3981ef 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index 91206392ec..bc618ab0c9 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index aa2dc12c6e..79edf33b87 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index 6b028a08e8..a40906d4d9 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index 076e30233f..d60a984a82 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index f2aa756d99..7a7a4892db 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index d97b4f3f28..9c141343db 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/SQLProfile/locale/SQLProfile.pot b/plugins/SQLProfile/locale/SQLProfile.pot index 6c94bb4d41..bcd2acef79 100644 --- a/plugins/SQLProfile/locale/SQLProfile.pot +++ b/plugins/SQLProfile/locale/SQLProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po index 514f5c65b6..8cff7201ef 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index 18d723dc62..96f5784397 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index efcb0bcc28..1abdea2584 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index 9787c9b545..b5ca8254ab 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index fae22afc55..5d2ce33898 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index 6727fd6d86..abafbe4495 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index a5d3b24210..626e42cc8b 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index f34c9e95c5..f976b88306 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index b503d5f181..758df8cac8 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index 35c42f6a72..3262ce6078 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:26+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index 8f4771f975..3213d172b5 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index db3951165c..100c26a99c 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index e81d8a8b84..73a4726760 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index fcbc0f10f0..74ffa85a54 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 5304113054..d784ad5b7d 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index e1b6c35095..a0ae0df4a8 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index 2ea28fc5dd..7f62e2d48a 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index 19f190b949..1174d091eb 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 8ea9f98cff..5016a8a802 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index 1d02a7d7c1..cc1a70f73e 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:41+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index 07209904e7..d9f8d3ba04 100644 --- a/plugins/SearchSub/locale/SearchSub.pot +++ b/plugins/SearchSub/locale/SearchSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -90,6 +90,27 @@ msgstr "" msgid "You are no longer subscribed to the search \"%s\"." msgstr "" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +#: searchsubaction.php:78 +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +#: searchsubaction.php:88 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +#: searchsubaction.php:99 +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +#: searchsubaction.php:109 +msgid "No such profile." +msgstr "" + #. TRANS: Page title when search subscription succeeded. #: searchsubaction.php:136 msgid "Subscribed" @@ -99,6 +120,11 @@ msgstr "" msgid "Unsubscribe from this search" msgstr "" +#: searchunsubform.php:107 +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "" + #. TRANS: Page title when search unsubscription succeeded. #: searchunsubaction.php:76 msgid "Unsubscribed" @@ -183,6 +209,11 @@ msgstr "" msgid "Subscribe to this search" msgstr "" +#: searchsubform.php:140 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #: searchsubtrackoffcommand.php:24 #, php-format diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index 87fbdb13d6..bd8b21b8f5 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:15:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -93,6 +93,23 @@ msgstr "Non poteva terminar un subscription al recerca de \"%s\"." msgid "You are no longer subscribed to the search \"%s\"." msgstr "Tu non es plus subscribite al recerca de \"%s\"." +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" msgstr "Subscribite" @@ -100,6 +117,11 @@ msgstr "Subscribite" msgid "Unsubscribe from this search" msgstr "Cancellar subscription a iste recerca" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Subscription cancellate" + #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" msgstr "Subscription cancellate" @@ -173,6 +195,11 @@ msgstr "Tu tracia recercas de: %s" msgid "Subscribe to this search" msgstr "Subscriber a iste recerca" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscribite" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format msgid "Error disabling search subscription for query \"%s\"." diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index 6aceaabb54..3611138588 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:15:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -94,6 +94,23 @@ msgstr "Не можев да ја прекратам претплатата на msgid "You are no longer subscribed to the search \"%s\"." msgstr "Повеќе не сте претплатени на пребарувањето „%s“." +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" msgstr "Претплатено" @@ -101,6 +118,11 @@ msgstr "Претплатено" msgid "Unsubscribe from this search" msgstr "Откажи претплата на ова пребарување" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Претплатата е откажана" + #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" msgstr "Претплатата е откажана" @@ -171,6 +193,11 @@ msgstr "Следите пребарувања на: %s" msgid "Subscribe to this search" msgstr "Претплати се на пребарувањево" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Претплатено" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format msgid "Error disabling search subscription for query \"%s\"." diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index ca881c0518..a8dc80040a 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:15:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -93,6 +93,23 @@ msgstr "Het opzeggen van het abonnement op de zoekopdracht \"%s\" is mislukt." msgid "You are no longer subscribed to the search \"%s\"." msgstr "U hebt niet langer meer een abonnement op de zoekopdracht \"%s\"." +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" msgstr "Geabonneerd" @@ -100,6 +117,11 @@ msgstr "Geabonneerd" msgid "Unsubscribe from this search" msgstr "Abonnement op deze zoekopdracht opzeggen" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Het abonnement is opgezegd" + #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" @@ -170,6 +192,11 @@ msgstr "U volgt zoekopdrachten naar: %s." msgid "Subscribe to this search" msgstr "Deze zoekopdracht volgen" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Geabonneerd" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format msgid "Error disabling search subscription for query \"%s\"." diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index 67d963ddb3..01da1a1d49 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:15:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -96,6 +96,23 @@ msgstr "" msgid "You are no longer subscribed to the search \"%s\"." msgstr "Hindi ka na nagpapasipi sa paghahanap ng \"%s\"." +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" msgstr "Nagpapasipi na" @@ -103,6 +120,11 @@ msgstr "Nagpapasipi na" msgid "Unsubscribe from this search" msgstr "Huwag nang magpasipi mula sa paghahanap na ito" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Hindi na nagpapasipi" + #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" msgstr "Hindi na nagpapasipi" @@ -179,6 +201,11 @@ msgstr "Sinusubaybayan mo ang mga paghahanap para sa: %s" msgid "Subscribe to this search" msgstr "Magpasipi para sa paghahanap na ito" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Nagpapasipi na" + #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format msgid "Error disabling search subscription for query \"%s\"." diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po new file mode 100644 index 0000000000..a79f869acb --- /dev/null +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -0,0 +1,212 @@ +# Translation of StatusNet - SearchSub to Ukrainian (Українська) +# Exported from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SearchSub\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-searchsub\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: Header for subscriptions overview for a user (first page). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s's search subscriptions" +msgstr "Збережені пошукові запити %s" + +#. TRANS: Header for subscriptions overview for a user (not first page). +#. TRANS: %1$s is a user nickname, %2$d is the page number. +#, php-format +msgid "%1$s's search subscriptions, page %2$d" +msgstr "Збережені пошукові запити %1$s, сторінка %2$d" + +#. TRANS: Page notice for page with an overview of all search subscriptions +#. TRANS: of the logged in user's own profile. +msgid "" +"You have subscribed to receive all notices on this site matching the " +"following searches:" +msgstr "" +"Ви підписалися на отримання всіх дописів на цьому сайті, що відповідають " +"наступним пошуковим параметрам:" + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "" +"%s has subscribed to receive all notices on this site matching the following " +"searches:" +msgstr "" +"%s підписаний на отримання всіх повідомлень на цьому сайті, що відповідають " +"наступним пошуковим параметрам:" + +#. TRANS: Search subscription list text when the logged in user has no search subscriptions. +msgid "" +"You are not subscribed to any text searches right now. You can push the " +"\"Subscribe\" button on any notice text search to automatically receive any " +"public messages on this site that match that search, even if you are not " +"subscribed to the poster." +msgstr "" +"Наразі ви не маєте підписок на жоден пошуковий запит. Натисніть на кнопку " +"«Підписатися» поруч із будь-яким дописом, що з’явиться у результатах пошуку, " +"щоб мати можливість отримувати автоматично всі дописи, що відповідають " +"зазначеним параметрам пошуку, тоді ви отримуватимете дописи користувачів, до " +"яких ви навіть не підписані." + +#. TRANS: Search subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no search subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not subscribed to any searches." +msgstr "%s не підписаний до жодних пошуків." + +#. TRANS: Search subscription list item. %1$s is a URL to a notice search, +#. TRANS: %2$s are the search criteria, %3$s is a datestring. +#, php-format +msgid "\"%2$s\" since %3$s" +msgstr "«%2$s» протягом %3$s" + +#. TRANS: Error text shown a user tries to untrack a search query they're not subscribed to. +#, php-format +msgid "You are not tracking the search \"%s\"." +msgstr "Ви не відстежує пошук «%s»." + +#. TRANS: Message given having failed to cancel a search subscription by untrack command. +#, php-format +msgid "Could not end a search subscription for query \"%s\"." +msgstr "Неможливо закінчити пошукову підписку за запитом «%s»." + +#. TRANS: Message given having removed a search subscription by untrack command. +#, php-format +msgid "You are no longer subscribed to the search \"%s\"." +msgstr "Ви більше не підписані на пошук «%s»." + +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + +#. TRANS: Page title when search subscription succeeded. +msgid "Subscribed" +msgstr "Підписані" + +msgid "Unsubscribe from this search" +msgstr "Відмовитися від цього пошуку" + +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Відписано" + +#. TRANS: Page title when search unsubscription succeeded. +msgid "Unsubscribed" +msgstr "Відписано" + +#. TRANS: Error text shown a user tries to track a search query they're already subscribed to. +#, php-format +msgid "You are already tracking the search \"%s\"." +msgstr "Ви вже відслідковуєте пошук «%s»." + +#. TRANS: Message given having failed to set up a search subscription by track command. +#, php-format +msgid "Could not start a search subscription for query \"%s\"." +msgstr "Не вдалося запустити підписку на пошуковий запит «%s»." + +#. TRANS: Message given having added a search subscription by track command. +#, php-format +msgid "You are subscribed to the search \"%s\"." +msgstr "Ви підписані на пошук «%s»." + +#. TRANS: Plugin description. +msgid "Plugin to allow following all messages with a given search." +msgstr "" +"Додаток, який дозволяє відслідковувати дописи за певними параметрами пошуку." + +#. TRANS: SearchSub plugin menu item on user settings page. +msgctxt "MENU" +msgid "Searches" +msgstr "Пошуки" + +#. TRANS: SearchSub plugin tooltip for user settings menu item. +msgid "Configure search subscriptions" +msgstr "Впорядкувати пошукові запити" + +msgid "Search subscriptions" +msgstr "Підписки на пошукові запити" + +#. TRANS: Help message for IM/SMS command "track " +msgctxt "COMMANDHELP" +msgid "Start following notices matching the given search query." +msgstr "" +"Почати відслідковувати дописи, які відповідають зазначеним параметрам пошуку." + +#. TRANS: Help message for IM/SMS command "untrack " +msgctxt "COMMANDHELP" +msgid "Stop following notices matching the given search query." +msgstr "" +"Припинити відслідковувати дописи, які відповідають зазначеним параметрам " +"пошуку." + +#. TRANS: Help message for IM/SMS command "track off" +#. TRANS: Help message for IM/SMS command "untrack all" +msgctxt "COMMANDHELP" +msgid "Disable all tracked search subscriptions." +msgstr "Скасувати всі пошукові підписки." + +#. TRANS: Help message for IM/SMS command "tracks" +#. TRANS: Help message for IM/SMS command "tracking" +msgctxt "COMMANDHELP" +msgid "List all your search subscriptions." +msgstr "Список пошукових запитів, за якими ви слідкуєте." + +#. TRANS: Error text shown a user tries to disable all a search subscriptions with track off command, but has none. +msgid "You are not tracking any searches." +msgstr "Не ви відстежуєте жодні пошукові запити." + +#. TRANS: Message given having disabled all search subscriptions with 'track off'. +#, php-format +msgid "You are tracking searches for: %s" +msgstr "Ви відслідковуєте пошуки для: %s" + +msgid "Subscribe to this search" +msgstr "Підписатися до даного пошуку" + +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Підписані" + +#. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. +#, php-format +msgid "Error disabling search subscription for query \"%s\"." +msgstr "Помилка при скасуванні пошукової підписки «%s»." + +#. TRANS: Message given having disabled all search subscriptions with 'track off'. +msgid "Disabled all your search subscriptions." +msgstr "Вимкнути всі пошукові підписки." diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 21a555d99a..2a7ef81050 100644 --- a/plugins/ShareNotice/locale/ShareNotice.pot +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po index d9ebedc3d8..32143d5384 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:43+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index 58508f0681..e554f09985 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index f975655fd6..13a4f8aad5 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index dfe3a92151..5d4b6dce88 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index ca337a85b7..5a2296543b 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index 0de3f4f826..10d4a3e2ad 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index 18ae3d86f4..99df52ec93 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index 84f572983a..40361349cf 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index 6e427f6cec..62ac062998 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index df25b04e5d..2429b8e8e5 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index 12e684f49a..89e3bbc4e2 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index d2366b4bc4..ad46317340 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po index abb8ec3bc6..39de9271be 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index 164ca5755e..97e4d09343 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index 99f2025775..22f38a6f0b 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index 98175f970d..bb494c8318 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:44+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index 4ccb05571d..27844e14ff 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index 381379c25d..6d665cbc6d 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index a02975e0f1..1181c2ffd8 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index 5d91371496..4663b75916 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index 88e415d61d..b357afb330 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index 926ee15b24..b4b978b630 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index dc9c6c0692..adcc45728d 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index 59b673aa3f..7c8dd61a70 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index 7e151415c3..cf85779a3d 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 33474c30cf..238f79a19f 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 7c163f8be6..77b0f86e81 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index 0785258984..b0a3711f86 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index a72b2fd54f..7bf53175ca 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:18:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index 0aad8fc2cc..83d0d7eff8 100644 --- a/plugins/Sitemap/locale/Sitemap.pot +++ b/plugins/Sitemap/locale/Sitemap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po index 302f3397b5..3a25f10c90 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index ceb65846cf..d6ca5f6f5d 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index fcf3c264dd..06f24573c1 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index 7ef289cc95..14a05b288a 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index 447021376f..362da4c9d1 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index 6fc08a84ca..75788ecb15 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index 022e43937e..2b53f1c008 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 277a8c7402..b79e2c81a6 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index 38de5854b7..166827eda4 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index b06fa5b055..7f87a51878 100644 --- a/plugins/SlicedFavorites/locale/SlicedFavorites.pot +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po index 818bd29f05..816a3ba5b9 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index 46ef38b2c7..6c1d78029f 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 5fe148a537..1367c1f63a 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index ac6a0ed225..c7b7009aa1 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index d2458cb36b..a5746187dd 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index 6bab68029e..28672748a0 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index dbe6b473da..c76d8007bc 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index 512f20d9ab..d1db47ba53 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index 42d8621bab..2702689ac9 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index 8c717a3b55..682b6f70b7 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:47+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index a99ad2a690..a2767b412d 100644 --- a/plugins/SphinxSearch/locale/SphinxSearch.pot +++ b/plugins/SphinxSearch/locale/SphinxSearch.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po index f2bd62e932..7032b012b3 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index ed04bda3da..2ae2ee13f5 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index 6893432344..7d4aa10554 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index efc1da721f..043fb79fe0 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index ec873b4fd0..e494a2b2d0 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index 7738da887e..f95ba74c94 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index a1a1dec25c..1ad446804d 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index 461f045723..6a12d4ed4e 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:48+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index a6cbdab185..ed2aa647c7 100644 --- a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot +++ b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index 274bfa2cec..8fb7c60d96 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index 7706fe7300..375105d143 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index 1cde174173..21fb2e2acb 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index d73c4ae0e2..cc2547d0e7 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:17+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index 61eae4632d..cba740a6c6 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:49+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-08 01:22:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 58375a0d6f..39d3d5e41f 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -78,6 +78,10 @@ msgid "" "timeline!" msgstr "" +#: actions/mirrorsettings.php:132 +msgid "Provider add" +msgstr "" + #: SubMirrorPlugin.php:93 msgid "Pull feeds into your timeline!" msgstr "" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 4160cd5d34..7193bdcfba 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -71,6 +71,9 @@ msgid "" "timeline!" msgstr "" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Ziehe Feeds in deine Zeitleiste!" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 24b67fe31b..fa8f38b801 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -76,6 +76,9 @@ msgstr "" "Vous pouvez mettre en miroir dans votre agenda StatusNet les mises à jour de " "nombreux flux RSS et Atom !" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Importez des flux d’information dans votre agenda !" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index 2fb4972bc9..8d8f53f9e1 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -72,6 +72,9 @@ msgstr "" "Tu pote republicar actualisationes de multe syndicationes RSS e Atom in tu " "chronologia de StatusNet!" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Importar syndicationes in tu chronologia!" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index 45168f0155..f50713608a 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -72,6 +72,9 @@ msgstr "" "Можете да отсликувате поднови од многу RSS- и Atom-канали во Вашата " "хронологија на StatusNet!" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Повлекувајте каналски емитувања во Вашата хронологија!" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index ef7e7c3acc..e4ae1c7600 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -74,6 +74,9 @@ msgstr "" "U kunt statusupdates vanuit veel RSS- en Atomfeeds spiegelen in uit " "StatusNet-tijdlijn." +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Neem feeds op in uw tijdlijn!" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 0afb8d6a2d..4d636d756c 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -73,6 +73,9 @@ msgstr "" "Maisasalamin mo ang mga pagsasapanahon mula sa maraming mga pakain ng RSS at " "Atom sa iyong guhit ng panahon ng StatusNet!" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Hilahin ang mga pakain papasok sa iyong guhit ng panahon!" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 2cceedd833..fb0283bb37 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:51+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 13:01:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -24,16 +24,15 @@ msgstr "" #. TRANS: Client error displayed when entering an invalid URL for a feed. #. TRANS: %s is the invalid feed URL. -#, fuzzy, php-format +#, php-format msgid "Invalid feed URL: %s." -msgstr "Помилкова URL-адреса веб-стрічки." +msgstr "Помилкова URL-адреса стрічки: %s." #. TRANS: Error message returned to user when setting up feed mirroring, #. TRANS: but we were unable to resolve the given URL to a working feed. msgid "Invalid profile for mirroring." msgstr "Помилковий профіль для віддзеркалення." -#, fuzzy msgid "Cannot mirror a StatusNet group at this time." msgstr "На даний момент не можу віддзеркалювати спільноту на сайті StatusNet." @@ -74,6 +73,9 @@ msgstr "" "Ви маєте можливість віддзеркалювати оновлення багатьох веб-стрічок формату " "RSS або Atom одразу до стрічки своїх дописів на сайті StatusNet!" +msgid "Provider add" +msgstr "" + msgid "Pull feeds into your timeline!" msgstr "Стягування веб-каналів до вашої стрічки повідомлень!" @@ -97,7 +99,7 @@ msgid "Add feed" msgstr "Додати веб-стрічку" msgid "Twitter username:" -msgstr "" +msgstr "Ім’я користувача Twitter:" msgctxt "LABEL" msgid "Remote feed:" @@ -126,10 +128,10 @@ msgid "Stop mirroring" msgstr "Зупинити віддзеркалення" msgid "Twitter" -msgstr "" +msgstr "Twitter" msgid "RSS or Atom feed" -msgstr "" +msgstr "Стрічка у форматі RSS або Atom" msgid "Select a feed provider" -msgstr "" +msgstr "Виберіть канал постачальника" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index fe3b9b573a..6cb0ffcc16 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,14 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: SubscriptionThrottlePlugin.php:74 +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +#: SubscriptionThrottlePlugin.php:100 +msgid "Too many memberships. Take a break and try again later." +msgstr "" + #: SubscriptionThrottlePlugin.php:171 msgid "Configurable limits for subscriptions and group memberships." msgstr "" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index 2347427810..24d7763079 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Konfigurierbare Limits für Abonnements und Gruppenmitgliedschaften." diff --git a/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po index dd34af611e..758366a271 100644 --- a/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/es/LC_MESSAGES/SubscriptionThrottle.po @@ -9,18 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "" "Límites configurables para las suscripciones y adhesiones a los grupos." diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index 3111530e14..e6e574f0a0 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Limites configurables pour les abonnements et adhésions aux groupes." diff --git a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po index 7f7ffe1f3e..9eb4aca936 100644 --- a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "הגבלות מינוי וחברות בקבוצות הניתנות להגדרה." diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index 4dff6a123b..92ae0a3a5c 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Limites configurabile pro subscriptiones e membrato de gruppos." diff --git a/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po index 6be339d6bc..c35662b637 100644 --- a/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/id/LC_MESSAGES/SubscriptionThrottle.po @@ -9,18 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "" "Batasan yang dapat disesuaikan untuk langganan dan keanggotaan kelompok." diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index d4f0a0f346..62b0265f67 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Прилагодливи ограничувања за претплата и членства во групи." diff --git a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po index 084d360d04..6ef6d17e94 100644 --- a/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nb/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Konfigurerbare grenser for abonnement og gruppemedlemsskap." diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index cb4be2d877..386f61a7ac 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "In te stellen limieten voor abonnementen en groepslidmaatschappen." diff --git a/plugins/SubscriptionThrottle/locale/pt/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/pt/LC_MESSAGES/SubscriptionThrottle.po index 4ec2381fe8..e1e743af26 100644 --- a/plugins/SubscriptionThrottle/locale/pt/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/pt/LC_MESSAGES/SubscriptionThrottle.po @@ -9,17 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Limites configuráveis para subscrições e adesões a grupos." diff --git a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po index e1b53efb8b..d5da6d081e 100644 --- a/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ru/LC_MESSAGES/SubscriptionThrottle.po @@ -9,18 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\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" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "Настраиваемые ограничения на подписки и членство в группах." diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index 9aaed9204a..08ac30c000 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,18 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "" "Maisasaayos na mga hangganan para sa mga pagtatanggap at mga kasapian sa " diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 5e64c29743..7764300d30 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,19 +9,25 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:52+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\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" +msgid "Too many subscriptions. Take a break and try again later." +msgstr "" + +msgid "Too many memberships. Take a break and try again later." +msgstr "" + msgid "Configurable limits for subscriptions and group memberships." msgstr "" "З допомогою цього додатку можна обмежувати кількість можливих підписок для " diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index fc4460c2de..c4de6be396 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po index 948ad71c64..4fa77c05d6 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index a4638ff35f..bf73ae662e 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index 59e45251ca..bf08ab2ead 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index 811757a54f..77c0c0ad79 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index 27391e6f53..33b71db931 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 8ef482826d..483ab4f070 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 0e34d742fe..58b77895c3 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 4874b2638f..c262dd4faf 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index d697218a10..fbb27957d5 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index ac1effc394..8615cee8c4 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index 57756ceda9..006dd4303b 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index 20e6181a14..cf48df9c76 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index e4535fad82..326f7000fe 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:53+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TagSub/locale/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index 25baf3ba7c..1cfd07b86b 100644 --- a/plugins/TagSub/locale/TagSub.pot +++ b/plugins/TagSub/locale/TagSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -20,6 +20,11 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "" +#: tagunsubform.php:107 +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "" + #. TRANS: Plugin description. #: TagSubPlugin.php:128 msgid "Plugin to allow following all messages with a given tag." @@ -44,11 +49,37 @@ msgstr "" msgid "Subscribe to this tag" msgstr "" +#: tagsubform.php:140 +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "" + #. TRANS: Page title when tag unsubscription succeeded. #: tagunsubaction.php:76 msgid "Unsubscribed" msgstr "" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +#: tagsubaction.php:78 +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +#: tagsubaction.php:88 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +#: tagsubaction.php:99 +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +#: tagsubaction.php:109 +msgid "No such profile." +msgstr "" + #. TRANS: Page title when tag subscription succeeded. #: tagsubaction.php:136 msgid "Subscribed" @@ -85,9 +116,20 @@ msgid "" "following tags:" msgstr "" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +#: tagsubsaction.php:118 +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#: tagsubsaction.php:130 +#: tagsubsaction.php:124 tagsubsaction.php:130 #, php-format msgid "%s is not listening to any tags." msgstr "" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 3ae020d2b2..f4f0d1240e 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,6 +24,11 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Cancellar subscription a iste etiquetta" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Subscription cancellate" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -45,10 +50,32 @@ msgstr "Subscriptiones a etiquettas" msgid "Subscribe to this tag" msgstr "Subscriber a iste etiquetta" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscribite" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Subscription cancellate" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" msgstr "Subscribite" @@ -84,6 +111,16 @@ msgstr "" "%s ha subscribite a reciper tote le notas in iste sito que contine le " "sequente etiquettas:" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index cb65ef71bc..82f68d3c4d 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,6 +24,11 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Отпиши се од ознакава" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Претплатено" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "Приклучок што овозможува да ги следите сите пораки со извесна ознака." @@ -43,10 +48,32 @@ msgstr "Претплати на ознаки" msgid "Subscribe to this tag" msgstr "Претплати се на ознакава" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Претплатата е откажана" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Претплатено" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" msgstr "Претплатата е откажана" @@ -82,6 +109,16 @@ msgstr "" "%s се претплати да ги прима сите забелешки на ова мреж. место што ги содржат " "слендиве ознаки:" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index a44537274f..de8b5bb893 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,6 +24,11 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Abonnement op dit label beëindigen" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Het abonnement is opgezegd" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -45,10 +50,32 @@ msgstr "Labelabonnementen" msgid "Subscribe to this tag" msgstr "Op dit label abonneren" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Geabonneerd" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" msgstr "Geabonneerd" @@ -84,6 +111,16 @@ msgstr "" "%s heeft een abonnement genomen op alle mededelingen van deze site die de " "volgende labels bevatten:" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index 44821aa385..660806e1d4 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-24 11:10+0000\n" -"PO-Revision-Date: 2011-03-24 11:14:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84667); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,6 +24,11 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Huwag nang magpasipi mula sa tatak na ito" +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Hindi na nagpapasipi" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -45,10 +50,32 @@ msgstr "Mga pagpapasipi ng tatak" msgid "Subscribe to this tag" msgstr "Magpasipi para sa tatak na ito" +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Nagpapasipi na" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Hindi na nagpapasipi" +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" msgstr "Nagpapasipi na" @@ -84,6 +111,16 @@ msgstr "" "Si %s ay nagpasipi upang makatanggap ng lahat ng mga pabatid sa sityong ito " "na naglalaman ng sumusunod na mga tatak:" +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po new file mode 100644 index 0000000000..f036caae3c --- /dev/null +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -0,0 +1,129 @@ +# Translation of StatusNet - TagSub to Ukrainian (Українська) +# Exported from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TagSub\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-tagsub\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" + +msgid "Unsubscribe from this tag" +msgstr "Відписатися від цього теґу" + +#, fuzzy +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Відписано" + +#. TRANS: Plugin description. +msgid "Plugin to allow following all messages with a given tag." +msgstr "Додаток, який дозволяє відслідковувати дописи позначені певним теґом" + +#. TRANS: SubMirror plugin menu item on user settings page. +msgctxt "MENU" +msgid "Tags" +msgstr "Теґи" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +msgid "Configure tag subscriptions" +msgstr "Налаштування підписок на теґи" + +msgid "Tag subscriptions" +msgstr "Підписки на теґи" + +msgid "Subscribe to this tag" +msgstr "Підписатися на цей теґ" + +#, fuzzy +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Підписано" + +#. TRANS: Page title when tag unsubscription succeeded. +msgid "Unsubscribed" +msgstr "Відписано" + +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "" + +#. TRANS: Page title when tag subscription succeeded. +msgid "Subscribed" +msgstr "Підписано" + +#. TRANS: Header for subscriptions overview for a user (first page). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s's tag subscriptions" +msgstr "Підписки на теґи %s" + +#. TRANS: Header for subscriptions overview for a user (not first page). +#. TRANS: %1$s is a user nickname, %2$d is the page number. +#, php-format +msgid "%1$s's tag subscriptions, page %2$d" +msgstr "Підписки на теґи %1$s, сторінка %2$d" + +#. TRANS: Page notice for page with an overview of all tag subscriptions +#. TRANS: of the logged in user's own profile. +msgid "" +"You have subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" +"Ви підписалися на отримання всіх дописів на цьому сайті, що позначені теґами:" + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "" +"%s has subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" +"%s підписаний на отримання всіх дописів на цьому сайті, що позначені теґами:" + +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not listening to any tags." +msgstr "%s не підписаний до жодних тегів" + +#, php-format +msgid "#%s since %s" +msgstr "#%s протягом %s" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index fdbd8ed4f8..3da645ec63 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po index 4d4a7f927c..21003f3ef2 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:54+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index 75edc40fbe..9497467e89 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index 354893191a..2740e9cae1 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index 33370ed1e5..ba714388d8 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index 48e3090ed9..f77ec14efc 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index b80f1238ce..fddef7de55 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index 9aa8fce78a..61bea3502f 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 13f0528e64..61bdb8ffb5 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index fd48ad6b44..ed222fd591 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index 894b6020a5..a96bcabbed 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index 86fb9e8419..caed0fa96a 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index a7a451dc79..e24e6f824c 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index d48c45f9b1..775956c2bb 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index c32a91f2c5..db66c39691 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index a0f7c51e64..1ddcfaedba 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index c948b58510..db63af17c0 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index cc868d1400..57f0db3024 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po index f441c8bd5a..90fa4e3cd7 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index bf458f00dc..0d52a8762d 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index baa6b2428b..eb89f5d178 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index cc7c96bffd..91e8eca1c0 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index ab96ae202f..506dc2c9f6 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:55+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index ef7c434eff..5f2c9fd453 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index 2d3ac59415..8125a8a050 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 2fe575d811..7376a7c9c9 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index da6cae6821..c9aa7813dc 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 229a43c9f9..ebd3d49bab 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index 13d5398292..edbcade3c7 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 3170423b3a..cc580549a1 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:43+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 26f72e6ef2..9b6ab70209 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index 8bc58dbeb8..0a3dc5e496 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:43+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index 2968dcc9f9..0c741d4fb0 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:49:56+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 0d79eb7d14..0b02be4928 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -174,6 +174,15 @@ msgstr "" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" +#: twitterauthorization.php:395 +msgctxt "LABEL" +msgid "Email" +msgstr "" + +#: twitterauthorization.php:396 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + #: twitterauthorization.php:404 msgid "Create" msgstr "" diff --git a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po index a2f5f64bde..0e3ef616e4 100644 --- a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -142,6 +142,13 @@ msgstr "Lesanv nevez" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Krouiñ" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index 472e89b89f..aca161b583 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -158,6 +158,13 @@ msgstr "Nou sobrenom" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 lletres en minúscules o nombres, sense puntuació o espais" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Crea" diff --git a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po index ad4add6436..6788ed3a00 100644 --- a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -142,6 +142,13 @@ msgstr "نام مستعار جدید" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "ایجاد" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 03ecdbb7bb..c1761cead4 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -160,6 +160,13 @@ msgstr "Nouveau pseudonyme" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Créer" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index 723c1469df..bd1a1f52bf 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -154,6 +154,13 @@ msgstr "Nove pseudonymo" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 minusculas o numeros, sin punctuation o spatios" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Crear" @@ -284,7 +291,6 @@ msgid "Sign in with Twitter" msgstr "Aperir session con Twitter" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#, fuzzy msgid "Your Twitter bridge has been disabled" msgstr "Tu ponte a Twitter ha essite disactivate." diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 040f13c1a7..f3accde8b1 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -155,6 +155,13 @@ msgstr "Нов прекар" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Создај" @@ -286,9 +293,8 @@ msgid "Sign in with Twitter" msgstr "Најава со Twitter" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#, fuzzy msgid "Your Twitter bridge has been disabled" -msgstr "Вашиот мост до Twitter е оневозможен." +msgstr "Вашиот мост до Twitter е оневозможен" #. TRANS: Mail body after forwarding notices to Twitter has stopped working. #. TRANS: %1$ is the name of the user the mail is sent to, %2$s is a URL to the diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 6e6106c637..0ac0f631fd 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -157,6 +157,13 @@ msgstr "Nieuwe gebruikersnaam" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Aanmaken" @@ -290,9 +297,8 @@ msgid "Sign in with Twitter" msgstr "Aanmelden met Twitter" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#, fuzzy msgid "Your Twitter bridge has been disabled" -msgstr "Uw koppeling naar Twitter is uitgeschakeld." +msgstr "Uw koppeling naar Twitter is uitgeschakeld" #. TRANS: Mail body after forwarding notices to Twitter has stopped working. #. TRANS: %1$ is the name of the user the mail is sent to, %2$s is a URL to the diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 917be154e9..1cecaf916c 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -151,6 +151,13 @@ msgstr "" "1-64 tane küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " "verilmez" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Oluştur" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index f32eecccc2..aa53b3b976 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:31+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -156,6 +156,13 @@ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "Створити" @@ -287,7 +294,6 @@ msgid "Sign in with Twitter" msgstr "Увійти з акаунтом Twitter" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#, fuzzy msgid "Your Twitter bridge has been disabled" msgstr "Ваш місток до Twitter було відключено." diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 310d634aeb..ae75e13b4c 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:32+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:49+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -149,6 +149,13 @@ msgstr "新昵称" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 到 64 个小写字母或数字,不包含标点或空格" +msgctxt "LABEL" +msgid "Email" +msgstr "" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + msgid "Create" msgstr "创建" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index a54bb27ef4..528fd567f5 100644 --- a/plugins/UserFlag/locale/UserFlag.pot +++ b/plugins/UserFlag/locale/UserFlag.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -54,6 +54,14 @@ msgstr "" msgid "Clear all flags" msgstr "" +#: adminprofileflag.php:64 +msgid "Not logged in." +msgstr "" + +#: adminprofileflag.php:88 +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. #: adminprofileflag.php:125 msgid "Flagged profiles" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 9674e47029..8b6158af3f 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,12 @@ msgstr "Esborra" msgid "Clear all flags" msgstr "Esborra tots els senyals" +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Perfils senyalats" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index d7ebd18b0a..a3d55a63e2 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:02+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,12 @@ msgstr "Löschen" msgid "Clear all flags" msgstr "Alle Markierungen löschen" +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Markierte Profile" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index 8e60fa0de1..334ea1c83d 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,12 @@ msgstr "Effacer" msgid "Clear all flags" msgstr "Effacer tous les marquages" +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Profils marqués" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index 36affc0d4c..e360e21a99 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -52,6 +52,12 @@ msgstr "Rader" msgid "Clear all flags" msgstr "Rader tote le marcas" +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Profilos marcate" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index e799e60fdc..8b5cf830aa 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,12 @@ msgstr "Отстрани" msgid "Clear all flags" msgstr "Отстрани ги сите ознаки" +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Означени профили" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 9c1d2ac123..4b90abbba2 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,12 @@ msgstr "Wissen" msgid "Clear all flags" msgstr "Alle markeringen wissen" +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Gemarkeerde profielen" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index 077447bb27..603f90c5cd 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,12 @@ msgstr "Limpar" msgid "Clear all flags" msgstr "Limpar todas as sinalizações" +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Perfis sinalizados" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index a37f7add66..a57127c91e 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -54,6 +54,12 @@ msgstr "Очистить" msgid "Clear all flags" msgstr "Очистить все флаги" +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Отмеченные профили" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index d746fcf9c8..11c00d987e 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -54,6 +54,12 @@ msgstr "Зняти" msgid "Clear all flags" msgstr "Зняти всі позначки" +msgid "Not logged in." +msgstr "" + +msgid "You cannot review profile flags." +msgstr "" + #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" msgstr "Відмічені профілі" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index a65352f7e2..defe557b98 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: UserLimitPlugin.php:89 +#: UserLimitPlugin.php:75 +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + +#: UserLimitPlugin.php:90 msgid "Limit the number of users who can register." msgstr "" diff --git a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po index bf9621b9e5..b2e717a36a 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Bevenniñ an niver a implijerien a c'hall en em enskrivañ" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index f2b01a39c3..4e336dafb2 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Beschränkung der Anzahl von Benutzern, die sich registrieren können." diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index cadf0b8fdb..719942ac3c 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitarla cantidad de usuarios que pueden registrarse." diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index eff579461c..3f7f554508 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "محدودکردن تعداد کاربرانی که می‌توانید ثبت نام کنند." diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index 6e2d04dd5a..b3691bbaad 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:03+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Rajoita niiden käyttäjien lukumäärää, jotka voivat rekisteröityä." diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index efae2d2349..0f598f538b 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limiter le nombre d’utilisateurs qui peuvent s’inscrire." diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index bea5efe44c..74ac22bc4f 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitar o número de usuarios que se poden rexistrar." diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index 67f494e720..8a0cd3f070 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "הגבלת מספר המשתמשים שיכולים להירשם." diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 55e24018e3..d6e6911d7b 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitar le numero de usatores que pote registrar se." diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index f5e46225f1..a9bb69dc40 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Batasi jumlah pengguna yang boleh mendaftar." diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index 54ebadc0ec..9d3ef5c7ab 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "D'Zuel vun de Benotzer, déi sech registréiere kënnen, limitéieren." diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index 5bd6b2f82a..8ba2578f39 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n != " "0) ? 1 : 2 );\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Ierobežotais lietotāju skaits, kuri var reģistrēties." diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index 26a8ca5a78..e828212d47 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Ограничување на бројот на корисници што можат да се регистрираат." diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index 32b4b94f52..3de33b8599 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Begrens antallet brukere som kan registrere seg." diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index 3b589d265c..bc42185ab2 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limiteert het aantal gebruikers dat kan registreren." diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index 22fac03dc0..13e80c53db 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitar o número de utilizadores que se podem registar." diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index 0fc39b94ed..777ab0ec1d 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Limitar o número de usuários que podem se registrar." diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index 1f0488d4d3..c274f0d4e2 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,19 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userlimit\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" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "" "Ограничение количества пользователей, которые могут зарегистрироваться." diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index 8e9d17b22d..04a5f9455c 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Hangganan ng bilang ng mga tagagamit na makakapagpatala." diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index b86308f64b..f6a82bc076 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,17 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Kayıt olabilecek kullanıcı sayısını sınırla." diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index d257cdabef..064336c6d8 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,18 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:04+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\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" +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "" + msgid "Limit the number of users who can register." msgstr "Обмеження кількості користувачів, котрі можуть зареєструватися." diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 64b1377389..6256df9ce5 100644 --- a/plugins/WikiHashtags/locale/WikiHashtags.pot +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,24 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: WikiHashtagsPlugin.php:84 +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +#: WikiHashtagsPlugin.php:85 +msgid "Edit" +msgstr "" + +#: WikiHashtagsPlugin.php:87 +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#: WikiHashtagsPlugin.php:93 +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + #: WikiHashtagsPlugin.php:110 msgid "" "Gets hashtag descriptions from \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po index dd89dccc7f..40fc7b501f 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po index 903b4528db..b5dc017217 100644 --- a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/he/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/he/LC_MESSAGES/WikiHashtags.po index eaa19419ef..7df369e883 100644 --- a/plugins/WikiHashtags/locale/he/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/he/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 9c15a7a537..7112d64b35 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po index 2c866734cc..73c5fcb89b 100644 --- a/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/id/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index 3ab01a098f..86250359ca 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po index daa2b42123..baec6d4d64 100644 --- a/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nb/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index 97b66314db..5d6f51fb6d 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/pt/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/pt/LC_MESSAGES/WikiHashtags.po index e03d173a18..aadc18e7bc 100644 --- a/plugins/WikiHashtags/locale/pt/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/pt/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po index 7cb080a737..3ad9315eec 100644 --- a/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/pt_BR/LC_MESSAGES/WikiHashtags.po @@ -9,19 +9,33 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po index 5558035717..929eef3de8 100644 --- a/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ru/LC_MESSAGES/WikiHashtags.po @@ -9,19 +9,33 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\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" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index 8de78b0943..5e8db2e24e 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po index 55f04432ed..782c2ebd14 100644 --- a/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tr/LC_MESSAGES/WikiHashtags.po @@ -9,18 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index e946066239..d1223be086 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,19 +9,33 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:05+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\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" +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "" + msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index 98b80812c5..5d96ff40ef 100644 --- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index 024d30bbde..919577baca 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index 056672afdc..2d2108a9d2 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 9fbcf5e2c5..831f366d3d 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index ccd55bcda1..70bfd0ce43 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index 9dd5ca142f..899bc0e778 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index 899f540018..cf6dc96ef0 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index 8e0e8cc0b9..b169550c20 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index a8ab4a6c39..f317b65c87 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index c6226a8f78..7bc9a391fc 100644 --- a/plugins/XCache/locale/XCache.pot +++ b/plugins/XCache/locale/XCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index 57fca64184..303a6ea91f 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index 6955b53bfa..c055206eda 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po index dffbb164aa..c60e2f1fcf 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index 63a35520db..b79b0e00bc 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index 3fe9e6cda9..41f2b03386 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:06+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po index 2ebb4d02d7..82bc084bff 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index 69582bc4a8..fb2b8bd4fc 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index 3d1e611feb..109e480c5a 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index c08192a5ce..b7fb5f068d 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index 1bed48bf19..44164f816a 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index 76ff253e73..dc91c82f72 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po index 01c46e3265..2d743d32a1 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index b20f75b2a8..955601ba43 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index a7d68c18f3..884a76b1ab 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index 818cb4c2ad..f6d91b62fd 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index a349226e4c..5c3cabe1f8 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index 3d1796cdea..c73cb0791b 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:07+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-06 02:19:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/Xmpp/locale/Xmpp.pot b/plugins/Xmpp/locale/Xmpp.pot index c88d438dfa..6a8325b9d1 100644 --- a/plugins/Xmpp/locale/Xmpp.pot +++ b/plugins/Xmpp/locale/Xmpp.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -24,7 +24,13 @@ msgstr "" msgid "XMPP/Jabber/GTalk" msgstr "" -#: XmppPlugin.php:429 +#. TRANS: %s is a notice ID. +#: XmppPlugin.php:359 +#, php-format +msgid "[%s]" +msgstr "" + +#: XmppPlugin.php:430 msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index f034d942a7..085a94e834 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Inviar me un message pro publicar un nota" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index 9ae4ae315b..2eaee405ee 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Испрати ми порака за да објавам забелеш msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index ed7f195427..3e2da9ed4f 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Mij een bericht sturen om een mededeling te verzenden" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/Google Talk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po index 87e2bc20b1..dcc12567b3 100644 --- a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Envia-me uma mensagem para postar uma notícia" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po index 904273a981..fa9f0423d5 100644 --- a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po index c59072bcd1..51744ce840 100644 --- a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-26 11:02+0000\n" -"PO-Revision-Date: 2011-03-26 11:07:39+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84791); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -27,6 +27,11 @@ msgstr "Padalhan ako ng isang mensahe upang makapagpaskil ng isang pabatid" msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po index 2a4af69065..8fb22e06e5 100644 --- a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:46+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:08+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-11 18:53:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -28,6 +28,11 @@ msgstr "Надішліть мені повідомлення, щоб опубл msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "" + msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index c6203ec2c9..160ebea29a 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po index 82f0f9c6d0..6150b31913 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:58+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index a911dfe33c..2cf43eecb8 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po index 1da81d50e4..8471582ad0 100644 --- a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 341a05392a..6c83643966 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index 2d36ba6124..83c4e93a49 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index 4d406a145f..97ecc4936a 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po index f0dfb96960..73a3ad1d01 100644 --- a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:11+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index 3aee9757e4..a5b8db6327 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 982672b4d2..5b6f16d1aa 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-18 19:45+0000\n" -"PO-Revision-Date: 2011-03-18 19:50:12+0000\n" +"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-17 10:24:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r84232); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" From 9cea85065c6b039c99aa373132a91eae2e320ebb Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 1 Apr 2011 02:35:05 -0700 Subject: [PATCH 22/52] Some work towards allowing revisions --- plugins/QnA/QnAPlugin.php | 5 +++-- plugins/QnA/actions/qnanewanswer.php | 3 +-- .../lib/{qnaansweredform.php => qnareviseanswerform.php} | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) rename plugins/QnA/lib/{qnaansweredform.php => qnareviseanswerform.php} (93%) diff --git a/plugins/QnA/QnAPlugin.php b/plugins/QnA/QnAPlugin.php index 228b571a6e..9a05eeb0b2 100644 --- a/plugins/QnA/QnAPlugin.php +++ b/plugins/QnA/QnAPlugin.php @@ -82,13 +82,14 @@ class QnAPlugin extends MicroAppPlugin case 'QnanewanswerAction': case 'QnashowquestionAction': case 'QnashowanswerAction': + case 'QnareviseanswerAction': case 'QnavoteAction': include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; return false; case 'QnaquestionForm': case 'QnaanswerForm': - case 'QnaansweredForm': + case 'QnareviseanswerForm': case 'QnavoteForm': include_once $dir . '/lib/' . strtolower($cls).'.php'; break; @@ -327,7 +328,7 @@ class QnAPlugin extends MicroAppPlugin $answer = $question->getAnswer($profile); if ($answer) { // User has already answer; show the results. - $form = new QnaansweredForm($answer, $out); + $form = new QnareviseanswerForm($answer, $out); } else { $form = new QnaanswerForm($question, $out); } diff --git a/plugins/QnA/actions/qnanewanswer.php b/plugins/QnA/actions/qnanewanswer.php index d2558380e9..09d111040d 100644 --- a/plugins/QnA/actions/qnanewanswer.php +++ b/plugins/QnA/actions/qnanewanswer.php @@ -158,8 +158,7 @@ class QnanewanswerAction extends Action $this->element('title', null, _m('Answers')); $this->elementEnd('head'); $this->elementStart('body'); - $form = new QnaanswerForm($this->question, $this); - $form->show(); + $this->raw() $this->elementEnd('body'); $this->elementEnd('html'); } else { diff --git a/plugins/QnA/lib/qnaansweredform.php b/plugins/QnA/lib/qnareviseanswerform.php similarity index 93% rename from plugins/QnA/lib/qnaansweredform.php rename to plugins/QnA/lib/qnareviseanswerform.php index b1500140f3..48f47e5e98 100644 --- a/plugins/QnA/lib/qnaansweredform.php +++ b/plugins/QnA/lib/qnareviseanswerform.php @@ -3,7 +3,7 @@ * StatusNet - the distributed open-source microblogging tool * Copyright (C) 2011, StatusNet, Inc. * - * Form for answering a question + * Form for revising a question * * PHP version 5 * @@ -35,7 +35,7 @@ if (!defined('STATUSNET')) { } /** - * Form to add a new answer to a question + * Form to revise a question * * @category QnA * @package StatusNet @@ -44,7 +44,7 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ -class QnaansweredForm extends Form +class QnareviseanswerForm extends Form { protected $question; protected $answer; @@ -106,7 +106,7 @@ class QnaansweredForm extends Form $id = "question-" . $question->id; $out->element('p', 'Your answer to:', $question->title); - $out->element('input', array('type' => 'text', 'name' => 'answer')); + $out->textarea('answerText', 'You said:', $this->answer->content); } /** From c17d8e0f5f4ae726e68700e5379a65fa305bf6a8 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 17:05:42 +0200 Subject: [PATCH 23/52] Update translator documentation. i18n tweaks. Add FIXME for missing class documentation. Remove superfluous whitespace. --- actions/useradminpanel.php | 6 ++-- lib/action.php | 10 +++--- lib/activitymover.php | 3 +- lib/adminpanelnav.php | 70 ++++++++++++++++++++------------------ lib/defaultlocalnav.php | 9 ++--- lib/personalgroupnav.php | 31 ++++++++++++----- lib/settingsnav.php | 53 ++++++++++++++++++++--------- 7 files changed, 112 insertions(+), 70 deletions(-) diff --git a/actions/useradminpanel.php b/actions/useradminpanel.php index c8861bd834..19673189f5 100644 --- a/actions/useradminpanel.php +++ b/actions/useradminpanel.php @@ -54,7 +54,7 @@ class UseradminpanelAction extends AdminPanelAction */ function title() { - // TRANS: User admin panel title + // TRANS: User admin panel title. return _m('TITLE', 'User'); } @@ -172,6 +172,7 @@ class UseradminpanelAction extends AdminPanelAction } } +// @todo FIXME: Class documentation missing. class UserAdminPanelForm extends AdminForm { /** @@ -212,7 +213,8 @@ class UserAdminPanelForm extends AdminForm function formData() { $this->out->elementStart('fieldset', array('id' => 'settings_user-profile')); - $this->out->element('legend', null, _('Profile')); + // TRANS: Fieldset legend in user administration panel. + $this->out->element('legend', null, _m('LEGEND','Profile')); $this->out->elementStart('ul', 'form_data'); $this->li(); diff --git a/lib/action.php b/lib/action.php index 3ac95b46a6..48a9cdeb3d 100644 --- a/lib/action.php +++ b/lib/action.php @@ -165,7 +165,7 @@ class Action extends HTMLOutputter // lawsuit { $this->element('title', null, // TRANS: Page title. %1$s is the title, %2$s is the site name. - sprintf(_("%1\$s - %2\$s"), + sprintf(_('%1$s - %2$s'), $this->title(), common_config('site', 'name'))); } @@ -181,7 +181,7 @@ class Action extends HTMLOutputter // lawsuit function title() { // TRANS: Page title for a page without a title set. - return _("Untitled page"); + return _('Untitled page'); } /** @@ -609,17 +609,16 @@ class Action extends HTMLOutputter // lawsuit */ function showNoticeForm() { - $tabs = array('status' => _('Status')); + // TRANS: Tab on the notice form. + $tabs = array('status' => _m('TAB','Status')); $this->elementStart('div', 'input_forms'); if (Event::handle('StartShowEntryForms', array(&$tabs))) { - $this->elementStart('ul', array('class' => 'nav', 'id' => 'input_form_nav')); foreach ($tabs as $tag => $title) { - $attrs = array('id' => 'input_form_nav_'.$tag, 'class' => 'input_form_nav_tab'); @@ -647,7 +646,6 @@ class Action extends HTMLOutputter // lawsuit $this->elementEnd('div'); foreach ($tabs as $tag => $title) { - $attrs = array('class' => 'input_form', 'id' => 'input_form_'.$tag); diff --git a/lib/activitymover.php b/lib/activitymover.php index b308ad5624..3380a92c82 100644 --- a/lib/activitymover.php +++ b/lib/activitymover.php @@ -81,7 +81,8 @@ class ActivityMover extends QueueHandler function moveActivity($act, $sink, $user, $remote) { if (empty($user)) { - throw new Exception(sprintf(_("No such user %s."),$act->actor->id)); + // TRANS: Exception thrown if no user is provided. %s is a user ID. + throw new Exception(sprintf(_('No such user "%s".'),$act->actor->id)); } switch ($act->verb) { diff --git a/lib/adminpanelnav.php b/lib/adminpanelnav.php index 2c9d83ceba..b64a2a6a96 100644 --- a/lib/adminpanelnav.php +++ b/lib/adminpanelnav.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Menu for admin panels - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -45,7 +45,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class AdminPanelNav extends Menu { /** @@ -62,11 +61,15 @@ class AdminPanelNav extends Menu // Stub section w/ home link $this->action->elementStart('ul'); - $this->action->element('h3', null, _('Home')); + // TRANS: Header in administrator navigation panel. + $this->action->element('h3', null, _m('HEADER','Home')); $this->action->elementStart('ul', 'nav'); $this->out->menuItem(common_local_url('all', array('nickname' => $nickname)), - _('Home'), + // TRANS: Menu item in administrator navigation panel. + _m('MENU','Home'), + // TRANS: Menu item title in administrator navigation panel. + // TRANS: %s is a username. sprintf(_('%s and friends'), $name), $this->action == 'all', 'nav_timeline_personal'); @@ -74,88 +77,89 @@ class AdminPanelNav extends Menu $this->action->elementEnd('ul'); $this->action->elementStart('ul'); - $this->action->element('h3', null, _('Admin')); + // TRANS: Header in administrator navigation panel. + $this->action->element('h3', null, _m('HEADER','Admin')); $this->action->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartAdminPanelNav', array($this))) { if (AdminPanelAction::canAdmin('site')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Basic site configuration'); - // TRANS: Menu item for site administration + // TRANS: Menu item in administrator navigation panel. $this->out->menuItem(common_local_url('siteadminpanel'), _m('MENU', 'Site'), $menu_title, $action_name == 'siteadminpanel', 'nav_site_admin_panel'); } if (AdminPanelAction::canAdmin('design')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Design configuration'); - // TRANS: Menu item for site administration + // TRANS: Menu item in administrator navigation panel. $this->out->menuItem(common_local_url('designadminpanel'), _m('MENU', 'Design'), $menu_title, $action_name == 'designadminpanel', 'nav_design_admin_panel'); } if (AdminPanelAction::canAdmin('user')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('User configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('useradminpanel'), _('User'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('useradminpanel'), _m('MENU','User'), $menu_title, $action_name == 'useradminpanel', 'nav_user_admin_panel'); } if (AdminPanelAction::canAdmin('access')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Access configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('accessadminpanel'), _('Access'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('accessadminpanel'), _m('MENU','Access'), $menu_title, $action_name == 'accessadminpanel', 'nav_access_admin_panel'); } if (AdminPanelAction::canAdmin('paths')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Paths configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('pathsadminpanel'), _('Paths'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('pathsadminpanel'), _m('MENU','Paths'), $menu_title, $action_name == 'pathsadminpanel', 'nav_paths_admin_panel'); } if (AdminPanelAction::canAdmin('sessions')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Sessions configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('sessionsadminpanel'), _('Sessions'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('sessionsadminpanel'), _m('MENU','Sessions'), $menu_title, $action_name == 'sessionsadminpanel', 'nav_sessions_admin_panel'); } if (AdminPanelAction::canAdmin('sitenotice')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Edit site notice'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('sitenoticeadminpanel'), _('Site notice'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('sitenoticeadminpanel'), _m('MENU','Site notice'), $menu_title, $action_name == 'sitenoticeadminpanel', 'nav_sitenotice_admin_panel'); } if (AdminPanelAction::canAdmin('snapshot')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Snapshots configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('snapshotadminpanel'), _('Snapshots'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('snapshotadminpanel'), _m('MENU','Snapshots'), $menu_title, $action_name == 'snapshotadminpanel', 'nav_snapshot_admin_panel'); } if (AdminPanelAction::canAdmin('license')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Set site license'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('licenseadminpanel'), _('License'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('licenseadminpanel'), _m('MENU','License'), $menu_title, $action_name == 'licenseadminpanel', 'nav_license_admin_panel'); } if (AdminPanelAction::canAdmin('plugins')) { - // TRANS: Menu item title/tooltip + // TRANS: Menu item title in administrator navigation panel. $menu_title = _('Plugins configuration'); - // TRANS: Menu item for site administration - $this->out->menuItem(common_local_url('pluginsadminpanel'), _('Plugins'), + // TRANS: Menu item in administrator navigation panel. + $this->out->menuItem(common_local_url('pluginsadminpanel'), _m('MENU','Plugins'), $menu_title, $action_name == 'pluginsadminpanel', 'nav_design_admin_panel'); } diff --git a/lib/defaultlocalnav.php b/lib/defaultlocalnav.php index 7af3c9673f..b9b45c8e01 100644 --- a/lib/defaultlocalnav.php +++ b/lib/defaultlocalnav.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Default local nav - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class DefaultLocalNav extends Menu { function show() @@ -55,11 +54,13 @@ class DefaultLocalNav extends Menu if (!empty($user)) { $pn = new PersonalGroupNav($this->action); - $this->submenu(_m('Home'), $pn); + // TRANS: Menu item in default local navigation panel. + $this->submenu(_m('MENU','Home'), $pn); } $bn = new PublicGroupNav($this->action); - $this->submenu(_('Public'), $bn); + // TRANS: Menu item in default local navigation panel. + $this->submenu(_m('MENU','Public'), $bn); $this->action->elementEnd('ul'); } diff --git a/lib/personalgroupnav.php b/lib/personalgroupnav.php index 2e15ca5f6a..d379dcf528 100644 --- a/lib/personalgroupnav.php +++ b/lib/personalgroupnav.php @@ -43,7 +43,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class PersonalGroupNav extends Menu { /** @@ -56,7 +55,7 @@ class PersonalGroupNav extends Menu $user = common_current_user(); if (empty($user)) { - throw new ServerException('Do not show personal group nav with no current user.'); + throw new ServerException('Cannot show personal group navigation without a current user.'); } $user_profile = $user->getProfile(); @@ -71,24 +70,38 @@ class PersonalGroupNav extends Menu if (Event::handle('StartPersonalGroupNav', array($this))) { $this->out->menuItem(common_local_url('all', array('nickname' => $nickname)), - _('Home'), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Home'), + // TRANS: Menu item title in personal group navigation menu. + // TRANS: %s is a username. sprintf(_('%s and friends'), $name), $mine && $action =='all', 'nav_timeline_personal'); $this->out->menuItem(common_local_url('showstream', array('nickname' => $nickname)), - _('Profile'), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Profile'), + // TRANS: Menu item title in personal group navigation menu. _('Your profile'), $mine && $action =='showstream', 'nav_profile'); $this->out->menuItem(common_local_url('replies', array('nickname' => $nickname)), - _('Replies'), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Replies'), + // TRANS: Menu item title in personal group navigation menu. + // TRANS: %s is a username. sprintf(_('Replies to %s'), $name), $mine && $action =='replies', 'nav_timeline_replies'); $this->out->menuItem(common_local_url('showfavorites', array('nickname' => $nickname)), - _('Favorites'), - sprintf(_('%s\'s favorite notices'), ($user_profile) ? $name : _('User')), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Favorites'), + // @todo i18n FIXME: Need to make this two messages. + // TRANS: Menu item title in personal group navigation menu. + // TRANS: %s is a username. + sprintf(_('%s\'s favorite notices'), + // TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) + ($user_profile) ? $name : _m('FIXME','User')), $mine && $action =='showfavorites', 'nav_timeline_favorites'); $cur = common_current_user(); @@ -98,7 +111,9 @@ class PersonalGroupNav extends Menu $this->out->menuItem(common_local_url('inbox', array('nickname' => $nickname)), - _('Messages'), + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Messages'), + // TRANS: Menu item title in personal group navigation menu. _('Your incoming messages'), $mine && $action =='inbox'); } diff --git a/lib/settingsnav.php b/lib/settingsnav.php index 2987e36ea9..14eab6dc1d 100644 --- a/lib/settingsnav.php +++ b/lib/settingsnav.php @@ -4,7 +4,7 @@ * Copyright (C) 2010,2011, StatusNet, Inc. * * Settings menu - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -45,7 +45,6 @@ if (!defined('STATUSNET')) { * * @see HTMLOutputter */ - class SettingsNav extends Menu { /** @@ -53,7 +52,6 @@ class SettingsNav extends Menu * * @return void */ - function show() { $actionName = $this->action->trimmed('action'); @@ -63,11 +61,15 @@ class SettingsNav extends Menu // Stub section w/ home link $this->action->elementStart('ul'); - $this->action->element('h3', null, _('Home')); + // TRANS: Header in settings navigation panel. + $this->action->element('h3', null, _m('HEADER','Home')); $this->action->elementStart('ul', 'nav'); $this->out->menuItem(common_local_url('all', array('nickname' => $nickname)), - _('Home'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Home'), + // TRANS: Menu item title in settings navigation panel. + // TRANS: %s is a username. sprintf(_('%s and friends'), $name), $this->action == 'all', 'nav_timeline_personal'); @@ -75,58 +77,77 @@ class SettingsNav extends Menu $this->action->elementEnd('ul'); $this->action->elementStart('ul'); - $this->action->element('h3', null, _('Settings')); + // TRANS: Header in settings navigation panel. + $this->action->element('h3', null, _m('HEADER','Settings')); $this->action->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartAccountSettingsNav', array(&$this->action))) { $this->action->menuItem(common_local_url('profilesettings'), - _('Profile'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Profile'), + // TRANS: Menu item title in settings navigation panel. _('Change your profile settings'), $actionName == 'profilesettings'); $this->action->menuItem(common_local_url('avatarsettings'), - _('Avatar'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Avatar'), + // TRANS: Menu item title in settings navigation panel. _('Upload an avatar'), $actionName == 'avatarsettings'); $this->action->menuItem(common_local_url('passwordsettings'), - _('Password'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Password'), + // TRANS: Menu item title in settings navigation panel. _('Change your password'), $actionName == 'passwordsettings'); $this->action->menuItem(common_local_url('emailsettings'), - _('Email'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Email'), + // TRANS: Menu item title in settings navigation panel. _('Change email handling'), $actionName == 'emailsettings'); $this->action->menuItem(common_local_url('userdesignsettings'), - _('Design'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Design'), + // TRANS: Menu item title in settings navigation panel. _('Design your profile'), $actionName == 'userdesignsettings'); $this->action->menuItem(common_local_url('urlsettings'), - _('URL'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','URL'), + // TRANS: Menu item title in settings navigation panel. _('URL shorteners'), $actionName == 'urlsettings'); Event::handle('EndAccountSettingsNav', array(&$this->action)); - + if (common_config('xmpp', 'enabled')) { $this->action->menuItem(common_local_url('imsettings'), - _m('IM'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','IM'), + // TRANS: Menu item title in settings navigation panel. _('Updates by instant messenger (IM)'), $actionName == 'imsettings'); } if (common_config('sms', 'enabled')) { $this->action->menuItem(common_local_url('smssettings'), - _m('SMS'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','SMS'), + // TRANS: Menu item title in settings navigation panel. _('Updates by SMS'), $actionName == 'smssettings'); } $this->action->menuItem(common_local_url('oauthconnectionssettings'), - _('Connections'), + // TRANS: Menu item in settings navigation panel. + _m('MENU','Connections'), + // TRANS: Menu item title in settings navigation panel. _('Authorized connected applications'), $actionName == 'oauthconnectionsettings'); From 7abecb61bdbcecfbaa264af900ccf71fe18ec0f5 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 19:46:40 +0200 Subject: [PATCH 24/52] i18n/L10n updates. Translator documentation updated. Superfluous whitespace removed. Some FIXMEs added. --- lib/apiauth.php | 4 +++- lib/apioauthstore.php | 7 ++++--- lib/applicationlist.php | 8 ++++++-- lib/atom10feed.php | 2 +- lib/dberroraction.php | 1 + lib/designform.php | 15 +++++---------- lib/feed.php | 4 ++++ lib/feedimporter.php | 15 ++++++++------- lib/galleryaction.php | 15 +++++++++++---- lib/grantroleform.php | 5 +---- lib/groupeditform.php | 2 ++ lib/implugin.php | 30 +++++++++++++++++++----------- lib/leaveform.php | 9 ++------- lib/primarynav.php | 31 ++++++++++++++++++++----------- lib/publicgroupnav.php | 24 ++++++++++++++++-------- lib/searchgroupnav.php | 16 +++++++++------- lib/secondarynav.php | 37 ++++++++++++++++++------------------- lib/subgroupnav.php | 1 + 18 files changed, 131 insertions(+), 95 deletions(-) diff --git a/lib/apiauth.php b/lib/apiauth.php index 8a1af8c27d..42d32dd624 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -199,6 +199,7 @@ class ApiAuthAction extends ApiAction $user = User::staticGet('id', $appUser->profile_id); if (!empty($user)) { if (!$user->hasRight(Right::API)) { + // TRANS: Authorization exception thrown when a user without API access tries to access the API. throw new AuthorizationException(_('Not allowed to use API.')); } } @@ -225,7 +226,7 @@ class ApiAuthAction extends ApiAction throw new OAuthException(_('Bad access token.')); } } else { - // Also should not happen + // Also should not happen. // TRANS: OAuth exception given when no user was found for a given token (no token was found). throw new OAuthException(_('No user for that token.')); } @@ -281,6 +282,7 @@ class ApiAuthAction extends ApiAction if (!empty($user)) { if (!$user->hasRight(Right::API)) { + // TRANS: Authorization exception thrown when a user without API access tries to access the API. throw new AuthorizationException(_('Not allowed to use API.')); } $this->auth_user = $user; diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index f1f88b13a1..409f56100f 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -21,6 +21,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR . '/lib/oauthstore.php'; +// @todo FIXME: Class documentation missing. class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore { function lookup_consumer($consumerKey) @@ -90,7 +91,7 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore ); if (empty($req_token)) { - common_debug("couldn't get request token from oauth datastore"); + common_debug("Couldn't get request token from oauth datastore"); return null; } @@ -312,8 +313,8 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore if (!$result) { common_log_db_error($appUser, 'INSERT', __FILE__); - // TRANS: Server error displayed when a database error occurs. throw new Exception( + // TRANS: Exception thrown when a database error occurs. _('Database error inserting OAuth application user.') ); } @@ -340,8 +341,8 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore if (!$result) { common_log_db_error($appUser, 'UPDATE', __FILE__); - // TRANS: Server error displayed when a database error occurs. throw new Exception( + // TRANS: Exception thrown when a database error occurs. _('Database error updating OAuth application user.') ); } diff --git a/lib/applicationlist.php b/lib/applicationlist.php index 3f50f110ba..ca7dce8328 100644 --- a/lib/applicationlist.php +++ b/lib/applicationlist.php @@ -237,13 +237,16 @@ class ConnectedAppsList extends Widget $this->out->elementEnd('a'); if ($app->name == 'anonymous') { - $this->out->element('span', 'fn', "Unknown application"); + // TRANS: Name for an anonymous application in application list. + $this->out->element('span', 'fn', _('Unknown application')); } $this->out->elementEnd('span'); if ($app->name != 'anonymous') { // @todo FIXME: i18n trouble. + // TRANS: Message has a leading space and a trailing space. Used in application list. + // TRANS: Before this message the application name is put, behind it the organisation that manages it. $this->out->raw(_(' by ')); $this->out->element( @@ -267,6 +270,7 @@ class ConnectedAppsList extends Widget // TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") $txt = sprintf(_('Approved %1$s - "%2$s" access.'), $modifiedDate, $access); + // @todo FIXME: i18n trouble. $this->out->raw(" - $txt"); if (!empty($app->description)) { $this->out->element( @@ -294,7 +298,7 @@ class ConnectedAppsList extends Widget $this->out->elementStart('fieldset'); $this->out->hidden('oauth_token', $this->connection->token); $this->out->hidden('token', common_session_token()); - // TRANS: Button label + // TRANS: Button label in application list to revoke access to user data. $this->out->submit('revoke', _m('BUTTON','Revoke')); $this->out->elementEnd('fieldset'); $this->out->elementEnd('form'); diff --git a/lib/atom10feed.php b/lib/atom10feed.php index 8d4b66d8b8..d5faafa1b3 100644 --- a/lib/atom10feed.php +++ b/lib/atom10feed.php @@ -108,8 +108,8 @@ class Atom10Feed extends XMLStringer if (!empty($name)) { $xs->element('name', null, $name); } else { - // TRANS: Atom feed exception thrown when an author element does not contain a name element. throw new Atom10FeedException( + // TRANS: Atom feed exception thrown when an author element does not contain a name element. _('Author element must contain a name element.') ); } diff --git a/lib/dberroraction.php b/lib/dberroraction.php index 0a6fce1005..8f628fba17 100644 --- a/lib/dberroraction.php +++ b/lib/dberroraction.php @@ -56,6 +56,7 @@ class DBErrorAction extends ServerErrorAction function title() { + // TRANS: Page title for when a database error occurs. return _('Database error'); } diff --git a/lib/designform.php b/lib/designform.php index 7702b873fe..a584b61adb 100644 --- a/lib/designform.php +++ b/lib/designform.php @@ -45,7 +45,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @link http://status.net/ * */ - class DesignForm extends Form { /** @@ -62,7 +61,6 @@ class DesignForm extends Form * @param Design $design initial design * @param Design $actionurl url of action (for form posting) */ - function __construct($out, $design, $actionurl) { parent::__construct($out); @@ -76,7 +74,6 @@ class DesignForm extends Form * * @return int ID of the form */ - function id() { return 'design'; @@ -87,7 +84,6 @@ class DesignForm extends Form * * @return string class of the form */ - function formClass() { return 'form_design'; @@ -98,7 +94,6 @@ class DesignForm extends Form * * @return string URL of the action */ - function action() { return $this->actionurl; @@ -111,6 +106,7 @@ class DesignForm extends Form */ function formLegend() { + // TRANS: Form legend of form for changing the page design. $this->out->element('legend', null, _('Change design')); } @@ -119,7 +115,6 @@ class DesignForm extends Form * * @return void */ - function formData() { $this->backgroundData(); @@ -137,7 +132,7 @@ class DesignForm extends Form // TRANS: Button text on profile design page to immediately reset all colour settings to default. $this->out->submit('defaults', _('Use defaults'), 'submit form_action-default', // TRANS: Title for button on profile design page to reset all colour settings to default. - 'defaults', _('Restore default designs')); + 'defaults', _('Restore default designs.')); $this->out->element('input', array('id' => 'settings_design_reset', 'type' => 'reset', @@ -145,7 +140,7 @@ class DesignForm extends Form 'value' => _m('BUTTON', 'Reset'), 'class' => 'submit form_action-primary', // TRANS: Title for button on profile design page to reset all colour settings to default without saving. - 'title' => _('Reset back to default'))); + 'title' => _('Reset back to default.'))); } function backgroundData() @@ -161,7 +156,7 @@ class DesignForm extends Form 'id' => 'design_background-image_file')); // TRANS: Instructions for form on profile design page. $this->out->element('p', 'form_guide', _('You can upload your personal ' . - 'background image. The maximum file size is 2Mb.')); + 'background image. The maximum file size is 2MB.')); $this->out->element('input', array('name' => 'MAX_FILE_SIZE', 'type' => 'hidden', 'id' => 'MAX_FILE_SIZE', @@ -319,6 +314,6 @@ class DesignForm extends Form // TRANS: Button text on profile design page to save settings. $this->out->submit('save', _m('BUTTON','Save'), 'submit form_action-secondary', // TRANS: Title for button on profile design page to save settings. - 'save', _('Save design')); + 'save', _('Save design.')); } } diff --git a/lib/feed.php b/lib/feed.php index 5902653679..e5a97a0cb8 100644 --- a/lib/feed.php +++ b/lib/feed.php @@ -81,12 +81,16 @@ class Feed { switch ($this->type) { case Feed::RSS1: + // TRANS: Feed type name. return _('RSS 1.0'); case Feed::RSS2: + // TRANS: Feed type name. return _('RSS 2.0'); case Feed::ATOM: + // TRANS: Feed type name. return _('Atom'); case Feed::FOAF: + // TRANS: Feed type name. FOAF stands for Friend of a Friend. return _('FOAF'); default: return null; diff --git a/lib/feedimporter.php b/lib/feedimporter.php index e46858cc51..466093534e 100644 --- a/lib/feedimporter.php +++ b/lib/feedimporter.php @@ -4,7 +4,7 @@ * Copyright (C) 2010, StatusNet, Inc. * * Importer for feeds of activities - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -47,7 +47,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class FeedImporter extends QueueHandler { /** @@ -55,7 +54,6 @@ class FeedImporter extends QueueHandler * * @return string identifier for this queue handler */ - public function transport() { return 'feedimp'; @@ -72,13 +70,15 @@ class FeedImporter extends QueueHandler if ($feed->namespaceURI != Activity::ATOM || $feed->localName != 'feed') { - throw new ClientException(_("Not an atom feed.")); + // TRANS: Client exception thrown when an imported feed is not an Atom feed. + throw new ClientException(_("Not an Atom feed.")); } $author = ActivityUtils::getFeedAuthor($feed); if (empty($author)) { + // TRANS: Client exception thrown when an imported feed does not have an author. throw new ClientException(_("No author in the feed.")); } @@ -86,7 +86,9 @@ class FeedImporter extends QueueHandler if ($trusted) { $user = $this->userFromAuthor($author); } else { - throw new ClientException(_("Can't import without a user.")); + // TRANS: Client exception thrown when an imported feed does not have an author that + // TRANS: can be associated with a user. + throw new ClientException(_("Cannot import without a user.")); } } @@ -127,7 +129,6 @@ class FeedImporter extends QueueHandler /** * Sort activities oldest-first */ - static function activitySort($a, $b) { if ($a->time == $b->time) { @@ -154,7 +155,7 @@ class FeedImporter extends QueueHandler $profile = $user->getProfile(); Ostatus_profile::updateProfile($profile, $author); - // FIXME: Update avatar + // @todo FIXME: Update avatar return $user; } } diff --git a/lib/galleryaction.php b/lib/galleryaction.php index 275a7bb57b..ba60c195c7 100644 --- a/lib/galleryaction.php +++ b/lib/galleryaction.php @@ -27,6 +27,7 @@ require_once INSTALLDIR.'/lib/profilelist.php'; define('AVATARS_PER_PAGE', 80); +// @todo FIXME: Class documentation missing. class GalleryAction extends OwnerDesignAction { var $profile = null; @@ -56,6 +57,7 @@ class GalleryAction extends OwnerDesignAction $this->user = User::staticGet('nickname', $nickname); if (!$this->user) { + // TRANS: Client error displayed when trying to perform a gallery action with an unknown user. $this->clientError(_('No such user.'), 404); return false; } @@ -63,6 +65,7 @@ class GalleryAction extends OwnerDesignAction $this->profile = $this->user->getProfile(); if (!$this->profile) { + // TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. $this->serverError(_('User has no profile.')); return false; } @@ -125,7 +128,8 @@ class GalleryAction extends OwnerDesignAction common_local_url($this->trimmed('action'), array('nickname' => $this->user->nickname))), - _('All')); + // TRANS: List element on gallery action page to show all tags. + _m('TAGS','All')); $this->elementEnd('li'); $this->elementStart('li', array('id'=>'filter_tags_item')); $this->elementStart('form', array('name' => 'bytag', @@ -133,11 +137,15 @@ class GalleryAction extends OwnerDesignAction 'action' => common_path('?action=' . $this->trimmed('action')), 'method' => 'post')); $this->elementStart('fieldset'); + // TRANS: Fieldset legend on gallery action page. $this->element('legend', null, _('Select tag to filter')); + // TRANS: Dropdown field label on gallery action page for a list containing tags. $this->dropdown('tag', _('Tag'), $content, - _('Choose a tag to narrow list'), false, $tag); + // TRANS: Dropdown field title on gallery action page for a list containing tags. + _('Choose a tag to narrow list.'), false, $tag); $this->hidden('nickname', $this->user->nickname); - $this->submit('submit', _('Go')); + // TRANS: Submit button text on gallery action page. + $this->submit('submit', _m('BUTTON','Go')); $this->elementEnd('fieldset'); $this->elementEnd('form'); $this->elementEnd('li'); @@ -146,7 +154,6 @@ class GalleryAction extends OwnerDesignAction } // Get list of tags we tagged other users with - function getTags($lst, $usr) { $profile_tag = new Notice_tag(); diff --git a/lib/grantroleform.php b/lib/grantroleform.php index b5f952746e..6887e07e5d 100644 --- a/lib/grantroleform.php +++ b/lib/grantroleform.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * * @see UnSandboxForm */ - class GrantRoleForm extends ProfileActionForm { function __construct($role, $label, $writer, $profile, $r2args) @@ -57,7 +56,6 @@ class GrantRoleForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'grantrole'; @@ -68,7 +66,6 @@ class GrantRoleForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { return $this->label; @@ -85,9 +82,9 @@ class GrantRoleForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description on form for granting a role. return sprintf(_('Grant this user the "%s" role'), $this->label); } } diff --git a/lib/groupeditform.php b/lib/groupeditform.php index 1adfdea4ee..bb0ab4f7fb 100644 --- a/lib/groupeditform.php +++ b/lib/groupeditform.php @@ -205,7 +205,9 @@ class GroupEditForm extends Form $this->out->dropdown('join_policy', // TRANS: Dropdown fieldd label on group edit form. _('Membership policy'), + // TRANS: Group membership policy option. array(User_group::JOIN_POLICY_OPEN => _('Open to all'), + // TRANS: Group membership policy option. User_group::JOIN_POLICY_MODERATE => _('Admin must approve all members')), // TRANS: Dropdown field title on group edit form. _('Whether admin approval is required to join this group.'), diff --git a/lib/implugin.php b/lib/implugin.php index c75e6a38af..abe09da4f7 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - abstract class ImPlugin extends Plugin { //name of this IM transport @@ -249,7 +248,7 @@ abstract class ImPlugin extends Plugin } /** - * send a confirmation code to a user + * Send a confirmation code to a user * * @param string $screenname screenname sending to * @param string $code the confirmation code @@ -259,12 +258,16 @@ abstract class ImPlugin extends Plugin */ function sendConfirmationCode($screenname, $code, $user) { - $body = sprintf(_('User "%s" on %s has said that your %s screenname belongs to them. ' . - 'If that\'s true, you can confirm by clicking on this URL: ' . - '%s' . + // @todo FIXME: parameter 4 is not being used. Should para3 and para4 be a markdown link? + // TRANS: Body text for confirmation code e-mail. + // TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, + // TRANS: %3$s is the display name of an IM plugin. + $body = sprintf(_('User "%1$s" on %2$s has said that your %2$s screenname belongs to them. ' . + 'If that is true, you can confirm by clicking on this URL: ' . + '%3$s' . ' . (If you cannot click it, copy-and-paste it into the ' . - 'address bar of your browser). If that user isn\'t you, ' . - 'or if you didn\'t request this confirmation, just ignore this message.'), + 'address bar of your browser). If that user is not you, ' . + 'or if you did not request this confirmation, just ignore this message.'), $user->nickname, common_config('site', 'name'), $this->getDisplayName(), common_local_url('confirmaddress', array('code' => $code))); return $this->sendMessage($screenname, $body); @@ -316,7 +319,6 @@ abstract class ImPlugin extends Plugin function broadcastNotice($notice) { - $ni = $notice->whoGets(); foreach ($ni as $user_id => $reason) { @@ -346,7 +348,9 @@ abstract class ImPlugin extends Plugin case NOTICE_INBOX_SOURCE_GROUP: break; default: - throw new Exception(sprintf(_("Unknown inbox source %d."), $reason)); + // TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. + // TRANS: %d is the unknown inbox ID (number). + throw new Exception(sprintf(_('Unknown inbox source %d.'), $reason)); } common_log(LOG_INFO, @@ -483,6 +487,8 @@ abstract class ImPlugin extends Plugin $content_shortened = common_shorten_links($body); if (Notice::contentTooLong($content_shortened)) { $this->sendFromSite($screenname, + // TRANS: Message given when a status is too long. %1$s is the maximum number of characters, + // TRANS: %2$s is the number of characters sent (used for plural). sprintf(_m('Message too long - maximum is %1$d character, you sent %2$d.', 'Message too long - maximum is %1$d characters, you sent %2$d.', Notice::maxContent()), @@ -619,11 +625,13 @@ abstract class ImPlugin extends Plugin { if( ! common_config('queue', 'enabled')) { - throw new ServerException("Queueing must be enabled to use IM plugins"); + // TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. + throw new ServerException(_('Queueing must be enabled to use IM plugins.')); } if(is_null($this->transport)){ - throw new ServerException('transport cannot be null'); + // TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. + throw new ServerException(_('Transport cannot be null.')); } } } diff --git a/lib/leaveform.php b/lib/leaveform.php index 34671f5f8d..a32af18eda 100644 --- a/lib/leaveform.php +++ b/lib/leaveform.php @@ -46,7 +46,6 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see UnsubscribeForm */ - class LeaveForm extends Form { /** @@ -61,7 +60,6 @@ class LeaveForm extends Form * @param HTMLOutputter $out output channel * @param group $group group to leave */ - function __construct($out=null, $group=null) { parent::__construct($out); @@ -74,7 +72,6 @@ class LeaveForm extends Form * * @return string ID of the form */ - function id() { return 'group-leave-' . $this->group->id; @@ -85,7 +82,6 @@ class LeaveForm extends Form * * @return string of the form class */ - function formClass() { return 'form_group_leave ajax'; @@ -96,7 +92,6 @@ class LeaveForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('leavegroup', @@ -108,9 +103,9 @@ class LeaveForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Leave')); + // TRANS: Button text on form to leave a group. + $this->out->submit('submit', _m('BUTTON','Leave')); } } diff --git a/lib/primarynav.php b/lib/primarynav.php index 7748d7a1c7..fc9f3c7203 100644 --- a/lib/primarynav.php +++ b/lib/primarynav.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Primary nav, show on all pages - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -54,34 +54,43 @@ class PrimaryNav extends Menu if (Event::handle('StartPrimaryNav', array($this->action))) { if (!empty($user)) { $this->action->menuItem(common_local_url('profilesettings'), - _m('Settings'), - _m('Change your personal settings'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Settings'), + // TRANS: Menu item title in primary navigation panel. + _('Change your personal settings'), false, 'nav_account'); if ($user->hasRight(Right::CONFIGURESITE)) { $this->action->menuItem(common_local_url('siteadminpanel'), - _m('Admin'), - _m('Site configuration'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Admin'), + // TRANS: Menu item title in primary navigation panel. + _('Site configuration'), false, 'nav_admin'); } $this->action->menuItem(common_local_url('logout'), - _m('Logout'), - _m('Logout from the site'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Logout'), + _('Logout from the site'), false, 'nav_logout'); } else { $this->action->menuItem(common_local_url('login'), - _m('Login'), - _m('Login to the site'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Login'), + // TRANS: Menu item title in primary navigation panel. + _('Login to the site'), false, 'nav_login'); } if (!empty($user) || !common_config('site', 'private')) { $this->action->menuItem(common_local_url('noticesearch'), - _m('Search'), - _m('Search the site'), + // TRANS: Menu item in primary navigation panel. + _m('MENU','Search'), + // TRANS: Menu item title in primary navigation panel. + _('Search the site'), false, 'nav_search'); } diff --git a/lib/publicgroupnav.php b/lib/publicgroupnav.php index bd2ad53124..dabba5f013 100644 --- a/lib/publicgroupnav.php +++ b/lib/publicgroupnav.php @@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/widget.php'; * * @see Widget */ - class PublicGroupNav extends Menu { /** @@ -53,7 +52,6 @@ class PublicGroupNav extends Menu * * @return void */ - function show() { $action_name = $this->action->trimmed('action'); @@ -61,22 +59,32 @@ class PublicGroupNav extends Menu $this->action->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartPublicGroupNav', array($this))) { - $this->out->menuItem(common_local_url('public'), _('Public'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('public'), _m('MENU','Public'), + // TRANS: Menu item title in search group navigation panel. _('Public timeline'), $action_name == 'public', 'nav_timeline_public'); - $this->out->menuItem(common_local_url('groups'), _('Groups'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('groups'), _m('MENU','Groups'), + // TRANS: Menu item title in search group navigation panel. _('User groups'), $action_name == 'groups', 'nav_groups'); - $this->out->menuItem(common_local_url('publictagcloud'), _('Recent tags'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('publictagcloud'), _m('MENU','Recent tags'), + // TRANS: Menu item title in search group navigation panel. _('Recent tags'), $action_name == 'publictagcloud', 'nav_recent-tags'); if (count(common_config('nickname', 'featured')) > 0) { - $this->out->menuItem(common_local_url('featured'), _('Featured'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('featured'), _m('MENU','Featured'), + // TRANS: Menu item title in search group navigation panel. _('Featured users'), $action_name == 'featured', 'nav_featured'); } - $this->out->menuItem(common_local_url('favorited'), _('Popular'), - _("Popular notices"), $action_name == 'favorited', 'nav_timeline_favorited'); + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('favorited'), _m('MENU','Popular'), + // TRANS: Menu item title in search group navigation panel. + _('Popular notices'), $action_name == 'favorited', 'nav_timeline_favorited'); Event::handle('EndPublicGroupNav', array($this)); } diff --git a/lib/searchgroupnav.php b/lib/searchgroupnav.php index cfe8fde353..40fe6a6375 100644 --- a/lib/searchgroupnav.php +++ b/lib/searchgroupnav.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * * @see Widget */ - class SearchGroupNav extends Menu { var $q = null; @@ -52,7 +51,6 @@ class SearchGroupNav extends Menu * * @param Action $action current action, used for output */ - function __construct($action=null, $q = null) { parent::__construct($action); @@ -64,7 +62,6 @@ class SearchGroupNav extends Menu * * @return void */ - function show() { $action_name = $this->action->trimmed('action'); @@ -73,13 +70,18 @@ class SearchGroupNav extends Menu if ($this->q) { $args['q'] = $this->q; } - $this->out->menuItem(common_local_url('peoplesearch', $args), _('People'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('peoplesearch', $args), _m('MENU','People'), + // TRANS: Menu item title in search group navigation panel. _('Find people on this site'), $action_name == 'peoplesearch', 'nav_search_people'); - $this->out->menuItem(common_local_url('noticesearch', $args), _('Notices'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('noticesearch', $args), _m('MENU','Notices'), + // TRANS: Menu item title in search group navigation panel. _('Find content of notices'), $action_name == 'noticesearch', 'nav_search_notice'); - $this->out->menuItem(common_local_url('groupsearch', $args), _('Groups'), + // TRANS: Menu item in search group navigation panel. + $this->out->menuItem(common_local_url('groupsearch', $args), _m('MENU','Groups'), + // TRANS: Menu item title in search group navigation panel. _('Find groups on this site'), $action_name == 'groupsearch', 'nav_search_group'); $this->action->elementEnd('ul'); } } - diff --git a/lib/secondarynav.php b/lib/secondarynav.php index 542de51ac1..7d38e74ffc 100644 --- a/lib/secondarynav.php +++ b/lib/secondarynav.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class SecondaryNav extends Menu { function show() @@ -53,36 +52,36 @@ class SecondaryNav extends Menu 'id' => 'site_nav_global_secondary')); if (Event::handle('StartSecondaryNav', array($this->action))) { $this->out->menuItem(common_local_url('doc', array('title' => 'help')), - // TRANS: Secondary navigation menu option leading to help on StatusNet. - _('Help')); + // TRANS: Secondary navigation menu item leading to help on StatusNet. + _m('MENU','Help')); $this->out->menuItem(common_local_url('doc', array('title' => 'about')), - // TRANS: Secondary navigation menu option leading to text about StatusNet site. - _('About')); + // TRANS: Secondary navigation menu item leading to text about StatusNet site. + _m('MENU','About')); $this->out->menuItem(common_local_url('doc', array('title' => 'faq')), - // TRANS: Secondary navigation menu option leading to Frequently Asked Questions. - _('FAQ')); + // TRANS: Secondary navigation menu item leading to Frequently Asked Questions. + _m('MENU','FAQ')); $bb = common_config('site', 'broughtby'); if (!empty($bb)) { $this->out->menuItem(common_local_url('doc', array('title' => 'tos')), - // TRANS: Secondary navigation menu option leading to Terms of Service. - _('TOS')); + // TRANS: Secondary navigation menu item leading to Terms of Service. + _m('MENU','TOS')); } $this->out->menuItem(common_local_url('doc', array('title' => 'privacy')), - // TRANS: Secondary navigation menu option leading to privacy policy. - _('Privacy')); + // TRANS: Secondary navigation menu item leading to privacy policy. + _m('MENU','Privacy')); $this->out->menuItem(common_local_url('doc', array('title' => 'source')), - // TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. - _('Source')); + // TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. + _m('MENU','Source')); $this->out->menuItem(common_local_url('version'), - // TRANS: Secondary navigation menu option leading to version information on the StatusNet site. - _('Version')); + // TRANS: Secondary navigation menu item leading to version information on the StatusNet site. + _m('MENU','Version')); $this->out->menuItem(common_local_url('doc', array('title' => 'contact')), - // TRANS: Secondary navigation menu option leading to e-mail contact information on the + // TRANS: Secondary navigation menu item leading to e-mail contact information on the // TRANS: StatusNet site, where to report bugs, ... - _('Contact')); + _m('MENU','Contact')); $this->out->menuItem(common_local_url('doc', array('title' => 'badge')), - // TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. - _('Badge')); + // TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. + _m('MENU','Badge')); Event::handle('EndSecondaryNav', array($this->action)); } $this->out->elementEnd('ul'); diff --git a/lib/subgroupnav.php b/lib/subgroupnav.php index bd03fe3e45..52110836c3 100644 --- a/lib/subgroupnav.php +++ b/lib/subgroupnav.php @@ -108,6 +108,7 @@ class SubGroupNav extends Menu array('nickname' => $this->user->nickname)), // TRANS: Menu item in local navigation menu. + // TRANS: %d is the number of pending subscription requests. sprintf(_m('MENU','Pending (%d)'), $pending), // TRANS: Menu item title in local navigation menu. sprintf(_('Approve pending subscription requests.'), From 62eed1e23ef641aedad0afa4f0d4cef604750d85 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 19:55:15 +0200 Subject: [PATCH 25/52] Fix i18n issues. Fix incorrect variable usage in messages. --- plugins/QnA/actions/qnashowanswer.php | 16 ++++++---------- plugins/QnA/classes/QnA_Answer.php | 8 ++++---- plugins/QnA/classes/QnA_Question.php | 10 +++++----- 3 files changed, 15 insertions(+), 19 deletions(-) diff --git a/plugins/QnA/actions/qnashowanswer.php b/plugins/QnA/actions/qnashowanswer.php index 5f3bc2eed9..826172c099 100644 --- a/plugins/QnA/actions/qnashowanswer.php +++ b/plugins/QnA/actions/qnashowanswer.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class QnashowanswerAction extends ShownoticeAction { protected $answer = null; @@ -56,7 +55,6 @@ class QnashowanswerAction extends ShownoticeAction * * @return boolean true */ - function prepare($argarray) { OwnerDesignAction::prepare($argarray); @@ -66,32 +64,32 @@ class QnashowanswerAction extends ShownoticeAction $this->answer = QnA_Answer::staticGet('id', $this->id); if (empty($this->answer)) { - throw new ClientException(_('No such answer.'), 404); + throw new ClientException(_m('No such answer.'), 404); } $this->question = $this->answer->getQuestion(); if (empty($this->question)) { - throw new ClientException(_('No question for this answer.'), 404); + throw new ClientException(_m('No question for this answer.'), 404); } $this->notice = Notice::staticGet('uri', $this->answer->uri); if (empty($this->notice)) { // Did we used to have it, and it got deleted? - throw new ClientException(_('No such answer.'), 404); + throw new ClientException(_m('No such answer.'), 404); } $this->user = User::staticGet('id', $this->answer->profile_id); if (empty($this->user)) { - throw new ClientException(_('No such user.'), 404); + throw new ClientException(_m('No such user.'), 404); } $this->profile = $this->user->getProfile(); if (empty($this->profile)) { - throw new ServerException(_('User without a profile.')); + throw new ServerException(_m('User without a profile.')); } $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); @@ -106,13 +104,12 @@ class QnashowanswerAction extends ShownoticeAction * * @return string page tile */ - function title() { $question = $this->answer->getQuestion(); return sprintf( - _('%s\'s answer to "%s"'), + _m('%s\'s answer to "%s"'), $this->user->nickname, $question->title ); @@ -123,7 +120,6 @@ class QnashowanswerAction extends ShownoticeAction * * @return void */ - function showPageTitle() { $this->elementStart('h1'); diff --git a/plugins/QnA/classes/QnA_Answer.php b/plugins/QnA/classes/QnA_Answer.php index 06e88354c9..5727411a80 100644 --- a/plugins/QnA/classes/QnA_Answer.php +++ b/plugins/QnA/classes/QnA_Answer.php @@ -205,8 +205,8 @@ class QnA_Answer extends Managed_DataObject { $notice = $question->getNotice(); - $fmt = 'answer by %3s'; - $fmt .= '%4s'; + $fmt = 'answer by %3$s'; + $fmt .= '%4$s'; return sprintf( $fmt, @@ -221,8 +221,8 @@ class QnA_Answer extends Managed_DataObject { $notice = $question->getNotice(); - $fmt = _( - '%1s answered the question "%2s": %3s' + $fmt = _m( + '%1$s answered the question "%2$s": %3$s' ); return sprintf( diff --git a/plugins/QnA/classes/QnA_Question.php b/plugins/QnA/classes/QnA_Question.php index 1022f2c3a6..2403857d28 100644 --- a/plugins/QnA/classes/QnA_Question.php +++ b/plugins/QnA/classes/QnA_Question.php @@ -222,9 +222,9 @@ class QnA_Question extends Managed_DataObject $notice = $question->getNotice(); $fmt = '
'; - $fmt .= '%2s'; - $fmt .= '%3s'; - $fmt .= 'asked by %5s'; + $fmt .= '%2$s'; + $fmt .= '%3$s'; + $fmt .= 'asked by %5$s'; $fmt .= '
'; $q = sprintf( @@ -251,8 +251,8 @@ class QnA_Question extends Managed_DataObject static function toString($profile, $question, $answers) { - $fmt = _( - '%1s asked the question "%2s": %3s' + $fmt = _m( + '%1$s asked the question "%2$s": %3$s' ); return sprintf( From 969d80f270b7a369ac698116f63ac03bfafd122b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 21:56:55 +0200 Subject: [PATCH 26/52] Fix i18n issues and bugs in string replacement. --- plugins/Event/RSVP.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/Event/RSVP.php b/plugins/Event/RSVP.php index 108fd5f4db..cce0f6ee56 100644 --- a/plugins/Event/RSVP.php +++ b/plugins/Event/RSVP.php @@ -316,16 +316,16 @@ class RSVP extends Managed_DataObject switch ($response) { case 'Y': - $fmt = _m("%2s is attending %4s."); + $fmt = _m("%2$s is attending %4$s."); break; case 'N': - $fmt = _m("%2s is not attending %4s."); + $fmt = _m("%2$s is not attending %4$s."); break; case '?': - $fmt = _m("%2s might attend %4s."); + $fmt = _m("%2$s might attend %4$s."); break; default: - throw new Exception("Unknown response code {$response}"); + throw new Exception(sprintf(_('Unknown response code %s.'),$response)); break; } @@ -351,13 +351,13 @@ class RSVP extends Managed_DataObject switch ($response) { case 'Y': - $fmt = _m("%1s is attending %2s."); + $fmt = _m("%1$s is attending %2$s."); break; case 'N': - $fmt = _m("%1s is not attending %2s."); + $fmt = _m("%1$s is not attending %2$s."); break; case '?': - $fmt = _m("%1s might attend %2s.>"); + $fmt = _m("%1$s might attend %2$s.>"); break; default: throw new Exception("Unknown response code {$response}"); From 6e67eb3b819869478ff1868d0fa2b2b3075bd85a Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 22:08:38 +0200 Subject: [PATCH 27/52] Many i18n and L10n updates. --- plugins/Event/EventPlugin.php | 10 +++++----- plugins/Event/RSVP.php | 26 +++++++++++++------------- plugins/Event/eventform.php | 16 ++++++++-------- plugins/Event/newevent.php | 6 +++--- plugins/Event/showrsvp.php | 2 +- 5 files changed, 30 insertions(+), 30 deletions(-) diff --git a/plugins/Event/EventPlugin.php b/plugins/Event/EventPlugin.php index d1dda6336d..528c855bda 100644 --- a/plugins/Event/EventPlugin.php +++ b/plugins/Event/EventPlugin.php @@ -168,7 +168,7 @@ class EventPlugin extends MicroappPlugin $happeningObj = $activity->objects[0]; if ($happeningObj->type != Happening::OBJECT_TYPE) { - throw new Exception('Wrong type for object.'); + throw new Exception(_m('Wrong type for object.')); } $notice = null; @@ -189,12 +189,12 @@ class EventPlugin extends MicroappPlugin $happening = Happening::staticGet('uri', $happeningObj->id); if (empty($happening)) { // FIXME: save the event - throw new Exception("RSVP for unknown event."); + throw new Exception(_m('RSVP for unknown event.')); } $notice = RSVP::saveNew($actor, $happening, $activity->verb, $options); break; default: - throw new Exception("Unknown verb for events"); + throw new Exception(_m('Unknown verb for events')); } return $notice; @@ -225,13 +225,13 @@ class EventPlugin extends MicroappPlugin } if (empty($happening)) { - throw new Exception("Unknown object type."); + throw new Exception(_m('Unknown object type.')); } $notice = $happening->getNotice(); if (empty($notice)) { - throw new Exception("Unknown event notice."); + throw new Exception(_m('Unknown event notice.')); } $obj = new ActivityObject(); diff --git a/plugins/Event/RSVP.php b/plugins/Event/RSVP.php index cce0f6ee56..314d297a36 100644 --- a/plugins/Event/RSVP.php +++ b/plugins/Event/RSVP.php @@ -219,7 +219,7 @@ class RSVP extends Managed_DataObject return '?'; break; default: - throw new Exception("Unknown verb {$verb}"); + throw new Exception(sprintf(_m('Unknown verb "%s"'),$verb)); } } @@ -236,7 +236,7 @@ class RSVP extends Managed_DataObject return RSVP::POSSIBLE; break; default: - throw new Exception("Unknown code {$code}"); + throw new Exception(sprintf(_m('Unknown code "%s".'),$code)); } } @@ -244,7 +244,7 @@ class RSVP extends Managed_DataObject { $notice = Notice::staticGet('uri', $this->uri); if (empty($notice)) { - throw new ServerException("RSVP {$this->id} does not correspond to a notice in the DB."); + throw new ServerException(sprintf(_m('RSVP %s does not correspond to a notice in the database.'),$this->id)); } return $notice; } @@ -278,7 +278,7 @@ class RSVP extends Managed_DataObject { $profile = Profile::staticGet('id', $this->profile_id); if (empty($profile)) { - throw new Exception("No profile with ID {$this->profile_id}"); + throw new Exception(sprintf(_m('No profile with ID %s.'),$this->profile_id)); } return $profile; } @@ -287,7 +287,7 @@ class RSVP extends Managed_DataObject { $event = Happening::staticGet('id', $this->event_id); if (empty($event)) { - throw new Exception("No event with ID {$this->event_id}"); + throw new Exception(sprintf(_m('No event with ID %s.'),$this->event_id)); } return $event; } @@ -316,16 +316,16 @@ class RSVP extends Managed_DataObject switch ($response) { case 'Y': - $fmt = _m("%2$s is attending %4$s."); + $fmt = _m("%2\$s is attending %4\$s."); break; case 'N': - $fmt = _m("%2$s is not attending %4$s."); + $fmt = _m("%2\$s is not attending %4\$s."); break; case '?': - $fmt = _m("%2$s might attend %4$s."); + $fmt = _m("%2\$s might attend %4\$s."); break; default: - throw new Exception(sprintf(_('Unknown response code %s.'),$response)); + throw new Exception(sprintf(_m('Unknown response code %s.'),$response)); break; } @@ -351,16 +351,16 @@ class RSVP extends Managed_DataObject switch ($response) { case 'Y': - $fmt = _m("%1$s is attending %2$s."); + $fmt = _m('%1$s is attending %2$s.'); break; case 'N': - $fmt = _m("%1$s is not attending %2$s."); + $fmt = _m('%1$s is not attending %2$s.'); break; case '?': - $fmt = _m("%1$s might attend %2$s.>"); + $fmt = _m('%1$s might attend %2$s.'); break; default: - throw new Exception("Unknown response code {$response}"); + throw new Exception(sprintf(_m('Unknown response code %s.'),$response)); break; } diff --git a/plugins/Event/eventform.php b/plugins/Event/eventform.php index 327c8a31e6..31fecb1278 100644 --- a/plugins/Event/eventform.php +++ b/plugins/Event/eventform.php @@ -95,56 +95,56 @@ class EventForm extends Form $this->out->input('title', _m('LABEL','Title'), null, - _m('Title of the event')); + _m('Title of the event.')); $this->unli(); $this->li(); $this->out->input('startdate', _m('LABEL','Start date'), null, - _m('Date the event starts')); + _m('Date the event starts.')); $this->unli(); $this->li(); $this->out->input('starttime', _m('LABEL','Start time'), null, - _m('Time the event starts')); + _m('Time the event starts.')); $this->unli(); $this->li(); $this->out->input('enddate', _m('LABEL','End date'), null, - _m('Date the event ends')); + _m('Date the event ends.')); $this->unli(); $this->li(); $this->out->input('endtime', _m('LABEL','End time'), null, - _m('Time the event ends')); + _m('Time the event ends.')); $this->unli(); $this->li(); $this->out->input('location', _m('LABEL','Location'), null, - _m('Event location')); + _m('Event location.')); $this->unli(); $this->li(); $this->out->input('url', _m('LABEL','URL'), null, - _m('URL for more information')); + _m('URL for more information.')); $this->unli(); $this->li(); $this->out->input('description', _m('LABEL','Description'), null, - _m('Description of the event')); + _m('Description of the event.')); $this->unli(); $this->out->elementEnd('ul'); diff --git a/plugins/Event/newevent.php b/plugins/Event/newevent.php index 7fe80f0857..082f12bb4b 100644 --- a/plugins/Event/newevent.php +++ b/plugins/Event/newevent.php @@ -81,7 +81,7 @@ class NeweventAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - throw new ClientException(_m("Must be logged in to post a event."), + throw new ClientException(_m('Must be logged in to post a event.'), 403); } @@ -135,13 +135,13 @@ class NeweventAction extends Action $this->endTime = strtotime($end); if ($this->startTime == 0) { - throw new Exception(sprintf(_m('Could not parse date "%s"'), + throw new Exception(sprintf(_m('Could not parse date "%s".'), $start)); } if ($this->endTime == 0) { - throw new Exception(sprintf(_m('Could not parse date "%s"'), + throw new Exception(sprintf(_m('Could not parse date "%s".'), $end)); } diff --git a/plugins/Event/showrsvp.php b/plugins/Event/showrsvp.php index f08857dcc4..7b129177e1 100644 --- a/plugins/Event/showrsvp.php +++ b/plugins/Event/showrsvp.php @@ -65,7 +65,7 @@ class ShowrsvpAction extends ShownoticeAction if (empty($this->event)) { // TRANS: Client exception thrown when referring to a non-existing event. - throw new ClientException(_m('No such Event.'), 404); + throw new ClientException(_m('No such event.'), 404); } $notice = $this->rsvp->getNotice(); From 308a761e5b9306fb3d66c8fa5faaffeda8b0efae Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 22:12:39 +0200 Subject: [PATCH 28/52] Fix typo in message. --- plugins/GroupPrivateMessage/newgroupmessage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GroupPrivateMessage/newgroupmessage.php b/plugins/GroupPrivateMessage/newgroupmessage.php index 4271a8d22b..61377ba178 100644 --- a/plugins/GroupPrivateMessage/newgroupmessage.php +++ b/plugins/GroupPrivateMessage/newgroupmessage.php @@ -70,7 +70,7 @@ class NewgroupmessageAction extends Action } if (!$this->user->hasRight(Right::NEWMESSAGE)) { - throw new Exception(sprintf(_m('User %s not allowed to send private messages.'), + throw new Exception(sprintf(_m('User %s is not allowed to send private messages.'), $this->user->nickname)); } From 8bf3424532fe7bb4708b4f8a2eb0f12e0c3702f2 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 22:14:43 +0200 Subject: [PATCH 29/52] Fix incorrect translator documentation. --- plugins/GroupPrivateMessage/Group_message_profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GroupPrivateMessage/Group_message_profile.php b/plugins/GroupPrivateMessage/Group_message_profile.php index cdd2839c12..4be0932cc2 100644 --- a/plugins/GroupPrivateMessage/Group_message_profile.php +++ b/plugins/GroupPrivateMessage/Group_message_profile.php @@ -155,7 +155,7 @@ class Group_message_profile extends Memcached_DataObject common_switch_locale($to->language); // TRANS: Subject for direct-message notification email. - // TRANS: %s is the sending user's nickname. + // TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. $subject = sprintf(_m('New private message from %1$s to group %2$s'), $from_profile->nickname, $group->nickname); // TRANS: Body for direct-message notification email. From 5a34d26b981de86aa696df8854f6170fd716e2bc Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 22:20:25 +0200 Subject: [PATCH 30/52] i18n/L10n updates. --- .../GroupPrivateMessagePlugin.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php index 29e57c1aae..87c5aa9bda 100644 --- a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php +++ b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php @@ -207,8 +207,8 @@ class GroupPrivateMessagePlugin extends Plugin $action->menuItem(common_local_url('groupinbox', array('nickname' => $group->nickname)), - _m('Inbox'), - _m('Private messages for this group'), + _m('MENU','Inbox'), + _m('Private messages for this group.'), $action->trimmed('action') == 'groupinbox', 'nav_group_inbox'); return true; @@ -259,17 +259,17 @@ class GroupPrivateMessagePlugin extends Plugin array(Group_privacy_settings::SOMETIMES => _m('Sometimes'), Group_privacy_settings::ALWAYS => _m('Always'), Group_privacy_settings::NEVER => _m('Never')), - _m('Whether to allow private messages to this group'), + _m('Whether to allow private messages to this group.'), false, (empty($gps)) ? Group_privacy_settings::SOMETIMES : $gps->allow_privacy); $form->out->elementEnd('li'); $form->out->elementStart('li'); $form->out->dropdown('allow_sender', - _m('Private sender'), + _m('Private senders'), array(Group_privacy_settings::EVERYONE => _m('Everyone'), Group_privacy_settings::MEMBER => _m('Member'), Group_privacy_settings::ADMIN => _m('Admin')), - _m('Who can send private messages to the group'), + _m('Who can send private messages to the group.'), false, (empty($gps)) ? Group_privacy_settings::MEMBER : $gps->allow_sender); $form->out->elementEnd('li'); @@ -370,7 +370,7 @@ class GroupPrivateMessagePlugin extends Plugin $action->elementStart('li', 'entity_send-a-message'); $action->element('a', array('href' => common_local_url('newgroupmessage', array('nickname' => $group->nickname)), - 'title' => _m('Send a direct message to this group')), + 'title' => _m('Send a direct message to this group.')), _m('Message')); // $form = new GroupMessageForm($action, $group); // $form->hidden = true; @@ -501,7 +501,7 @@ class GroupPrivateMessagePlugin extends Plugin 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:GroupPrivateMessage', 'rawdescription' => - _m('Allow posting DMs to a group.')); + _m('Allow posting private messages to groups.')); return true; } } From 6c9554ddb2c325247ae99d6f06e60ff620d9a5ec Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 22:27:35 +0200 Subject: [PATCH 31/52] L10n updates. --- plugins/GroupPrivateMessage/Group_message.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/GroupPrivateMessage/Group_message.php b/plugins/GroupPrivateMessage/Group_message.php index 9679f57031..800cd10575 100644 --- a/plugins/GroupPrivateMessage/Group_message.php +++ b/plugins/GroupPrivateMessage/Group_message.php @@ -177,7 +177,7 @@ class Group_message extends Memcached_DataObject { $group = User_group::staticGet('id', $this->to_group); if (empty($group)) { - throw new ServerException(_m('No group for group message')); + throw new ServerException(_m('No group for group message.')); } return $group; } @@ -186,7 +186,7 @@ class Group_message extends Memcached_DataObject { $sender = Profile::staticGet('id', $this->from_profile); if (empty($sender)) { - throw new ServerException(_m('No sender for group message')); + throw new ServerException(_m('No sender for group message.')); } return $sender; } From ade7172a25b959ba8663843775034fba1c828e1b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 22:32:56 +0200 Subject: [PATCH 32/52] L10n/i18n updates. --- plugins/FacebookBridge/actions/facebookadminpanel.php | 10 +++++----- plugins/FacebookBridge/actions/facebookfinishlogin.php | 6 +++--- plugins/FacebookBridge/actions/facebooksettings.php | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/plugins/FacebookBridge/actions/facebookadminpanel.php b/plugins/FacebookBridge/actions/facebookadminpanel.php index 61b5441848..034b58b2fa 100644 --- a/plugins/FacebookBridge/actions/facebookadminpanel.php +++ b/plugins/FacebookBridge/actions/facebookadminpanel.php @@ -120,13 +120,13 @@ class FacebookadminpanelAction extends AdminPanelAction if (mb_strlen($values['facebook']['appid']) > 255) { $this->clientError( - _m("Invalid Facebook ID. Max length is 255 characters.") + _m("Invalid Facebook ID. Maximum length is 255 characters.") ); } if (mb_strlen($values['facebook']['secret']) > 255) { $this->clientError( - _m("Invalid Facebook secret. Max length is 255 characters.") + _m("Invalid Facebook secret. Maximum length is 255 characters.") ); } } @@ -182,7 +182,7 @@ class FacebookAdminPanelForm extends AdminForm $this->input( 'appid', _m('Application ID'), - _m('ID of your Facebook application'), + _m('ID of your Facebook application.'), 'facebook' ); $this->unli(); @@ -191,7 +191,7 @@ class FacebookAdminPanelForm extends AdminForm $this->input( 'secret', _m('Secret'), - _m('Application secret'), + _m('Application secret.'), 'facebook' ); $this->unli(); @@ -207,6 +207,6 @@ class FacebookAdminPanelForm extends AdminForm */ function formActions() { - $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save Facebook settings')); + $this->out->submit('submit', _m('BUTTON','Save'), 'submit', null, _m('Save Facebook settings.')); } } diff --git a/plugins/FacebookBridge/actions/facebookfinishlogin.php b/plugins/FacebookBridge/actions/facebookfinishlogin.php index 7b2f274741..f952ad2e2b 100644 --- a/plugins/FacebookBridge/actions/facebookfinishlogin.php +++ b/plugins/FacebookBridge/actions/facebookfinishlogin.php @@ -147,7 +147,7 @@ class FacebookfinishloginAction extends Action if (!$this->boolean('license')) { $this->showForm( - _m('You can\'t register if you don\'t agree to the license.'), + _m('You cannot register if you do not agree to the license.'), $this->trimmed('newname') ); return; @@ -182,7 +182,7 @@ class FacebookfinishloginAction extends Action 'div', 'instructions', // TRANS: %s is the site name. sprintf( - _m('This is the first time you\'ve logged into %s so we must connect your Facebook to a local account. You can either create a new local account, or connect with an existing local account.'), + _m('This is the first time you have logged into %s so we must connect your Facebook to a local account. You can either create a new local account, or connect with an existing local account.'), common_config('site', 'name') ) ); @@ -265,7 +265,7 @@ class FacebookfinishloginAction extends Action // TRANS: Field label. $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', - _m('1-64 lowercase letters or numbers, no punctuation or spaces')); + _m('1-64 lowercase letters or numbers, no punctuation or spaces.')); $this->elementEnd('li'); // Hook point for captcha etc diff --git a/plugins/FacebookBridge/actions/facebooksettings.php b/plugins/FacebookBridge/actions/facebooksettings.php index 54e96ee400..7d45cc03e6 100644 --- a/plugins/FacebookBridge/actions/facebooksettings.php +++ b/plugins/FacebookBridge/actions/facebooksettings.php @@ -257,7 +257,7 @@ class FacebooksettingsAction extends SettingsAction { if ($result === false) { common_log_db_error($user, 'DELETE', __FILE__); - $this->serverError(_m('Couldn\'t delete link to Facebook.')); + $this->serverError(_m('Could not delete link to Facebook.')); return; } From bf75ae8f9bca3626d53e09b0d99d08d7700c47a4 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 22:35:23 +0200 Subject: [PATCH 33/52] L10n tweaks. --- plugins/TwitterBridge/twitterauthorization.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index 1870c6a477..e45b677e17 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -123,7 +123,7 @@ class TwitterauthorizationAction extends Action if ($this->arg('create')) { if (!$this->boolean('license')) { - $this->showForm(_m('You can\'t register if you don\'t agree to the license.'), + $this->showForm(_m('You cannot register if you do not agree to the license.'), $this->trimmed('newname')); return; } @@ -178,7 +178,7 @@ class TwitterauthorizationAction extends Action ); common_log(LOG_INFO, 'Twitter bridge - ' . $msg); $this->serverError( - _m('Couldn\'t link your Twitter account.') + _m('Could not link your Twitter account.') ); } @@ -389,7 +389,7 @@ class TwitterauthorizationAction extends Action $this->elementStart('li'); $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', - _m('1-64 lowercase letters or numbers, no punctuation or spaces')); + _m('1-64 lowercase letters or numbers, no punctuation or spaces.')); $this->elementEnd('li'); $this->elementStart('li'); $this->input('email', _m('LABEL','Email'), $this->getEmail(), @@ -678,6 +678,4 @@ class TwitterauthorizationAction extends Action } return true; } - } - From d2a257564874a9175e73325a5ed970cc25ae9913 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 22:59:31 +0200 Subject: [PATCH 34/52] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 419 ++++++++--- locale/bg/LC_MESSAGES/statusnet.po | 423 ++++++++--- locale/br/LC_MESSAGES/statusnet.po | 423 ++++++++--- locale/ca/LC_MESSAGES/statusnet.po | 449 ++++++++--- locale/cs/LC_MESSAGES/statusnet.po | 422 ++++++++--- locale/de/LC_MESSAGES/statusnet.po | 419 ++++++++--- locale/en_GB/LC_MESSAGES/statusnet.po | 420 ++++++++--- locale/eo/LC_MESSAGES/statusnet.po | 418 ++++++++--- locale/es/LC_MESSAGES/statusnet.po | 425 ++++++++--- locale/fa/LC_MESSAGES/statusnet.po | 419 ++++++++--- locale/fi/LC_MESSAGES/statusnet.po | 413 ++++++++--- locale/fr/LC_MESSAGES/statusnet.po | 420 ++++++++--- locale/gl/LC_MESSAGES/statusnet.po | 421 ++++++++--- locale/hsb/LC_MESSAGES/statusnet.po | 408 +++++++--- locale/hu/LC_MESSAGES/statusnet.po | 412 ++++++++--- locale/ia/LC_MESSAGES/statusnet.po | 519 +++++++++---- locale/it/LC_MESSAGES/statusnet.po | 422 ++++++++--- locale/ja/LC_MESSAGES/statusnet.po | 417 ++++++++--- locale/ka/LC_MESSAGES/statusnet.po | 411 ++++++++--- locale/ko/LC_MESSAGES/statusnet.po | 411 ++++++++--- locale/mk/LC_MESSAGES/statusnet.po | 491 ++++++++---- locale/ml/LC_MESSAGES/statusnet.po | 397 +++++++--- locale/nb/LC_MESSAGES/statusnet.po | 406 +++++++--- locale/nl/LC_MESSAGES/statusnet.po | 609 +++++++++------ locale/pl/LC_MESSAGES/statusnet.po | 422 ++++++++--- locale/pt/LC_MESSAGES/statusnet.po | 423 ++++++++--- locale/pt_BR/LC_MESSAGES/statusnet.po | 419 ++++++++--- locale/ru/LC_MESSAGES/statusnet.po | 428 ++++++++--- locale/statusnet.pot | 696 ++++++++++++------ locale/sv/LC_MESSAGES/statusnet.po | 422 ++++++++--- locale/te/LC_MESSAGES/statusnet.po | 414 ++++++++--- locale/uk/LC_MESSAGES/statusnet.po | 425 ++++++++--- locale/zh_CN/LC_MESSAGES/statusnet.po | 416 ++++++++--- plugins/APC/locale/APC.pot | 2 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 6 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 6 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 6 +- .../locale/de/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 6 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 6 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 6 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 6 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 6 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 6 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/ru/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 6 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 6 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../be-tarask/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/br/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/fi/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/he/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/id/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ja/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/pt/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/ru/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Autocomplete.po | 6 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 6 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/gl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 8 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 6 +- .../locale/br/LC_MESSAGES/Blacklist.po | 6 +- .../locale/de/LC_MESSAGES/Blacklist.po | 6 +- .../locale/es/LC_MESSAGES/Blacklist.po | 6 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 6 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 6 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 6 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 6 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 6 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 6 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 6 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 6 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../be-tarask/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/br/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/es/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/fi/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/he/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/pt/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BlogspamNet.po | 8 +- plugins/Bookmark/locale/Bookmark.pot | 2 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 97 +-- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 6 +- .../locale/br/LC_MESSAGES/CacheLog.po | 6 +- .../locale/es/LC_MESSAGES/CacheLog.po | 6 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 6 +- .../locale/he/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 6 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 6 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 6 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 6 +- .../br/LC_MESSAGES/CasAuthentication.po | 6 +- .../de/LC_MESSAGES/CasAuthentication.po | 6 +- .../es/LC_MESSAGES/CasAuthentication.po | 6 +- .../fr/LC_MESSAGES/CasAuthentication.po | 6 +- .../ia/LC_MESSAGES/CasAuthentication.po | 6 +- .../mk/LC_MESSAGES/CasAuthentication.po | 6 +- .../nl/LC_MESSAGES/CasAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 6 +- .../ru/LC_MESSAGES/CasAuthentication.po | 6 +- .../uk/LC_MESSAGES/CasAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 6 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 6 +- .../br/LC_MESSAGES/ClientSideShorten.po | 6 +- .../de/LC_MESSAGES/ClientSideShorten.po | 6 +- .../es/LC_MESSAGES/ClientSideShorten.po | 6 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 6 +- .../he/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 6 +- .../id/LC_MESSAGES/ClientSideShorten.po | 6 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 6 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 6 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 11 +- .../locale/DirectionDetector.pot | 2 +- .../LC_MESSAGES/DirectionDetector.po | 6 +- .../br/LC_MESSAGES/DirectionDetector.po | 6 +- .../de/LC_MESSAGES/DirectionDetector.po | 6 +- .../es/LC_MESSAGES/DirectionDetector.po | 6 +- .../fi/LC_MESSAGES/DirectionDetector.po | 6 +- .../fr/LC_MESSAGES/DirectionDetector.po | 6 +- .../he/LC_MESSAGES/DirectionDetector.po | 6 +- .../ia/LC_MESSAGES/DirectionDetector.po | 6 +- .../id/LC_MESSAGES/DirectionDetector.po | 6 +- .../ja/LC_MESSAGES/DirectionDetector.po | 6 +- .../lb/LC_MESSAGES/DirectionDetector.po | 6 +- .../mk/LC_MESSAGES/DirectionDetector.po | 6 +- .../nb/LC_MESSAGES/DirectionDetector.po | 6 +- .../nl/LC_MESSAGES/DirectionDetector.po | 6 +- .../pt/LC_MESSAGES/DirectionDetector.po | 6 +- .../ru/LC_MESSAGES/DirectionDetector.po | 6 +- .../tl/LC_MESSAGES/DirectionDetector.po | 6 +- .../uk/LC_MESSAGES/DirectionDetector.po | 6 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 6 +- plugins/Directory/locale/Directory.pot | 2 +- .../locale/ia/LC_MESSAGES/Directory.po | 8 +- .../locale/mk/LC_MESSAGES/Directory.po | 8 +- .../locale/nl/LC_MESSAGES/Directory.po | 20 +- .../locale/tl/LC_MESSAGES/Directory.po | 8 +- .../locale/uk/LC_MESSAGES/Directory.po | 8 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 6 +- .../locale/br/LC_MESSAGES/DiskCache.po | 6 +- .../locale/de/LC_MESSAGES/DiskCache.po | 6 +- .../locale/es/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 6 +- .../locale/he/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 6 +- .../locale/id/LC_MESSAGES/DiskCache.po | 6 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 6 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 6 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 6 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 6 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 6 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 6 +- .../br/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 6 +- .../de/LC_MESSAGES/EmailAuthentication.po | 6 +- .../es/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 6 +- .../he/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 6 +- .../id/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 6 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 6 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 6 +- plugins/EmailSummary/locale/EmailSummary.pot | 2 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 19 +- plugins/Event/locale/Event.pot | 99 ++- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 296 ++++++++ plugins/Event/locale/nl/LC_MESSAGES/Event.po | 220 ++++-- .../locale/ExtendedProfile.pot | 2 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 11 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 11 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 11 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 11 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 11 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 11 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 11 +- .../FacebookBridge/locale/FacebookBridge.pot | 30 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 38 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 44 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 46 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 46 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 46 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 46 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 46 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 46 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 46 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 6 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 6 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 8 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 6 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 6 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/br/LC_MESSAGES/Geonames.po | 6 +- .../locale/ca/LC_MESSAGES/Geonames.po | 6 +- .../locale/de/LC_MESSAGES/Geonames.po | 6 +- .../locale/eo/LC_MESSAGES/Geonames.po | 6 +- .../locale/es/LC_MESSAGES/Geonames.po | 6 +- .../locale/fi/LC_MESSAGES/Geonames.po | 6 +- .../locale/fr/LC_MESSAGES/Geonames.po | 6 +- .../locale/he/LC_MESSAGES/Geonames.po | 6 +- .../locale/ia/LC_MESSAGES/Geonames.po | 6 +- .../locale/id/LC_MESSAGES/Geonames.po | 6 +- .../locale/mk/LC_MESSAGES/Geonames.po | 6 +- .../locale/nb/LC_MESSAGES/Geonames.po | 6 +- .../locale/nl/LC_MESSAGES/Geonames.po | 6 +- .../locale/pt/LC_MESSAGES/Geonames.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Geonames.po | 6 +- .../locale/ru/LC_MESSAGES/Geonames.po | 6 +- .../locale/tl/LC_MESSAGES/Geonames.po | 6 +- .../locale/uk/LC_MESSAGES/Geonames.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Geonames.po | 6 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 6 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 6 +- .../locale/de/LC_MESSAGES/Gravatar.po | 6 +- .../locale/es/LC_MESSAGES/Gravatar.po | 6 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 6 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 6 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 6 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 6 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/GroupPrivateMessage.pot | 30 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 155 ++-- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 6 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 6 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 6 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 6 +- plugins/Irc/locale/Irc.pot | 2 +- plugins/Irc/locale/fi/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 15 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 8 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 6 +- .../es/LC_MESSAGES/LdapAuthentication.po | 6 +- .../fi/LC_MESSAGES/LdapAuthentication.po | 6 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 6 +- .../he/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 6 +- .../id/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ja/LC_MESSAGES/LdapAuthentication.po | 6 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../nb/LC_MESSAGES/LdapAuthentication.po | 6 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../pt/LC_MESSAGES/LdapAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ru/LC_MESSAGES/LdapAuthentication.po | 6 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/LdapAuthentication.po | 6 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 6 +- .../es/LC_MESSAGES/LdapAuthorization.po | 6 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 6 +- .../he/LC_MESSAGES/LdapAuthorization.po | 6 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 6 +- .../id/LC_MESSAGES/LdapAuthorization.po | 6 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 6 +- .../nb/LC_MESSAGES/LdapAuthorization.po | 6 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../pt/LC_MESSAGES/LdapAuthorization.po | 6 +- .../pt_BR/LC_MESSAGES/LdapAuthorization.po | 6 +- .../ru/LC_MESSAGES/LdapAuthorization.po | 6 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 6 +- .../zh_CN/LC_MESSAGES/LdapAuthorization.po | 6 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 6 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/he/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 10 +- .../locale/pt/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/ru/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/zh_CN/LC_MESSAGES/LinkPreview.po | 8 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/de/LC_MESSAGES/Linkback.po | 8 +- .../locale/es/LC_MESSAGES/Linkback.po | 8 +- .../locale/fi/LC_MESSAGES/Linkback.po | 8 +- .../locale/fr/LC_MESSAGES/Linkback.po | 8 +- .../locale/he/LC_MESSAGES/Linkback.po | 8 +- .../locale/ia/LC_MESSAGES/Linkback.po | 8 +- .../locale/id/LC_MESSAGES/Linkback.po | 8 +- .../locale/mk/LC_MESSAGES/Linkback.po | 8 +- .../locale/nb/LC_MESSAGES/Linkback.po | 8 +- .../locale/nl/LC_MESSAGES/Linkback.po | 10 +- .../locale/pt/LC_MESSAGES/Linkback.po | 8 +- .../locale/ru/LC_MESSAGES/Linkback.po | 8 +- .../locale/tl/LC_MESSAGES/Linkback.po | 8 +- .../locale/uk/LC_MESSAGES/Linkback.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 8 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 6 +- .../locale/he/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 6 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 6 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 6 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 6 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 6 +- .../locale/es/LC_MESSAGES/Memcache.po | 6 +- .../locale/fi/LC_MESSAGES/Memcache.po | 6 +- .../locale/fr/LC_MESSAGES/Memcache.po | 6 +- .../locale/he/LC_MESSAGES/Memcache.po | 6 +- .../locale/ia/LC_MESSAGES/Memcache.po | 6 +- .../locale/mk/LC_MESSAGES/Memcache.po | 6 +- .../locale/nb/LC_MESSAGES/Memcache.po | 6 +- .../locale/nl/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 6 +- .../locale/ru/LC_MESSAGES/Memcache.po | 6 +- .../locale/tl/LC_MESSAGES/Memcache.po | 6 +- .../locale/uk/LC_MESSAGES/Memcache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 6 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 6 +- .../locale/es/LC_MESSAGES/Memcached.po | 6 +- .../locale/fi/LC_MESSAGES/Memcached.po | 6 +- .../locale/fr/LC_MESSAGES/Memcached.po | 6 +- .../locale/he/LC_MESSAGES/Memcached.po | 6 +- .../locale/ia/LC_MESSAGES/Memcached.po | 6 +- .../locale/id/LC_MESSAGES/Memcached.po | 6 +- .../locale/ja/LC_MESSAGES/Memcached.po | 6 +- .../locale/mk/LC_MESSAGES/Memcached.po | 6 +- .../locale/nb/LC_MESSAGES/Memcached.po | 6 +- .../locale/nl/LC_MESSAGES/Memcached.po | 6 +- .../locale/pt/LC_MESSAGES/Memcached.po | 6 +- .../locale/ru/LC_MESSAGES/Memcached.po | 6 +- .../locale/tl/LC_MESSAGES/Memcached.po | 6 +- .../locale/uk/LC_MESSAGES/Memcached.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 6 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/id/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po | 6 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 6 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/ar/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/br/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/gl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ps/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ta/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/te/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 6 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 6 +- .../locale/es/LC_MESSAGES/ModHelper.po | 6 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 6 +- .../locale/he/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 6 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 6 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 6 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 6 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 8 +- plugins/Mollom/locale/Mollom.pot | 2 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 25 + plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/br/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/el/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/fr/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/pt/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 6 +- .../NewMenu/locale/ar/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/br/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/de/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/ia/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/mk/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/nl/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/te/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/uk/LC_MESSAGES/NewMenu.po | 4 +- .../locale/zh_CN/LC_MESSAGES/NewMenu.po | 4 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/pl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/pt/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/te/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/zh_CN/LC_MESSAGES/NoticeTitle.po | 6 +- plugins/OStatus/locale/OStatus.pot | 2 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 13 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 8 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/br/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 26 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 8 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 6 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 6 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 14 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 14 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 16 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 14 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 14 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 6 +- .../locale/es/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 6 +- .../locale/he/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 6 +- .../locale/id/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 6 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 6 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/PoweredByStatusNet.pot | 2 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 6 +- plugins/QnA/locale/QnA.pot | 171 +++++ plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 10 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 8 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 6 +- .../locale/ar/LC_MESSAGES/Realtime.po | 6 +- .../locale/br/LC_MESSAGES/Realtime.po | 6 +- .../locale/ca/LC_MESSAGES/Realtime.po | 6 +- .../locale/de/LC_MESSAGES/Realtime.po | 6 +- .../locale/fr/LC_MESSAGES/Realtime.po | 6 +- .../locale/ia/LC_MESSAGES/Realtime.po | 6 +- .../locale/mk/LC_MESSAGES/Realtime.po | 6 +- .../locale/ne/LC_MESSAGES/Realtime.po | 6 +- .../locale/nl/LC_MESSAGES/Realtime.po | 6 +- .../locale/tr/LC_MESSAGES/Realtime.po | 6 +- .../locale/uk/LC_MESSAGES/Realtime.po | 6 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/RequireValidatedEmail.pot | 2 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 38 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 6 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 6 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 8 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 8 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 22 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 8 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 8 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 6 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 6 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 6 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 6 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/StrictTransportSecurity.pot | 2 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/de/LC_MESSAGES/SubMirror.po | 8 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 8 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 8 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 8 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 10 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 8 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 8 +- .../locale/SubscriptionThrottle.pot | 2 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 31 + .../nl/LC_MESSAGES/SubscriptionThrottle.po | 12 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 6 +- .../locale/es/LC_MESSAGES/TabFocus.po | 6 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 6 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/he/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 6 +- .../locale/id/LC_MESSAGES/TabFocus.po | 6 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 6 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 6 +- plugins/TagSub/locale/TagSub.pot | 2 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/ms/LC_MESSAGES/TagSub.po | 124 ++++ .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 26 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 8 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/de/LC_MESSAGES/TightUrl.po | 6 +- .../locale/es/LC_MESSAGES/TightUrl.po | 6 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 6 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/he/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 6 +- .../locale/id/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 6 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 26 + .../locale/nb/LC_MESSAGES/TightUrl.po | 6 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 6 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 6 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 27 + .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 6 +- .../TwitterBridge/locale/TwitterBridge.pot | 15 +- .../locale/br/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/fa/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 311 ++++++++ .../locale/nl/LC_MESSAGES/TwitterBridge.po | 26 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 22 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 20 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 8 +- .../locale/de/LC_MESSAGES/UserFlag.po | 8 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 8 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 8 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 12 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 8 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 8 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/br/LC_MESSAGES/UserLimit.po | 8 +- .../locale/de/LC_MESSAGES/UserLimit.po | 8 +- .../locale/es/LC_MESSAGES/UserLimit.po | 8 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 8 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 8 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/he/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 8 +- .../locale/id/LC_MESSAGES/UserLimit.po | 8 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 8 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 8 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 29 + .../locale/nb/LC_MESSAGES/UserLimit.po | 8 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 9 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 8 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 8 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 43 ++ .../locale/nl/LC_MESSAGES/WikiHashtags.po | 16 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 37 + .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 6 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 29 + .../XCache/locale/nb/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 6 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 6 +- plugins/Xmpp/locale/Xmpp.pot | 2 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 8 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 8 +- plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po | 40 + plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 10 +- plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po | 8 +- plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po | 8 +- plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po | 8 +- plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po | 8 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 6 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 6 +- .../locale/gl/LC_MESSAGES/YammerImport.po | 6 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 6 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 6 +- .../locale/ms/LC_MESSAGES/YammerImport.po | 207 ++++++ .../locale/nl/LC_MESSAGES/YammerImport.po | 6 +- .../locale/ru/LC_MESSAGES/YammerImport.po | 6 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 6 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 6 +- 1209 files changed, 16558 insertions(+), 7543 deletions(-) create mode 100644 plugins/Event/locale/ms/LC_MESSAGES/Event.po create mode 100644 plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po create mode 100644 plugins/QnA/locale/QnA.pot create mode 100644 plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po create mode 100644 plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po create mode 100644 plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po create mode 100644 plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po create mode 100644 plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po create mode 100644 plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po create mode 100644 plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po create mode 100644 plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po create mode 100644 plugins/XCache/locale/ms/LC_MESSAGES/XCache.po create mode 100644 plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po create mode 100644 plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 2711360353..d6ee5d4ea2 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -12,22 +12,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:07:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:33+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "نفاذ" @@ -138,6 +137,7 @@ msgstr "لا صفحة كهذه." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "لا مستخدم كهذا." @@ -151,6 +151,12 @@ msgstr "%1$s والأصدقاء, الصفحة %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s والأصدقاء" @@ -273,6 +279,7 @@ msgstr "تعذّر تحديث المستخدم." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "ليس للمستخدم ملف شخصي." @@ -1978,14 +1985,17 @@ msgid "Use defaults" msgstr "استخدم المبدئية" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "استعد التصاميم المبدئية." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "ارجع إلى المبدئيات." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "احفظ التصميم." @@ -2318,6 +2328,7 @@ msgstr "ألغِ تفضيل المفضلة" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "إشعارات محبوبة" @@ -2353,6 +2364,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "إشعارات %s المُفضلة" @@ -2365,6 +2378,7 @@ msgstr "الإشعارات التي فضلها %1$s في %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "مستخدمون مختارون" @@ -3589,7 +3603,6 @@ msgid "Password saved." msgstr "حُفظت كلمة السر." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "المسارات" @@ -4109,6 +4122,7 @@ msgid "Public timeline, page %d" msgstr "المسار الزمني العام، صفحة %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "المسار الزمني العام" @@ -4550,6 +4564,8 @@ msgstr "مكرر!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "الردود على %s" @@ -4654,6 +4670,7 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "جميع الأعضاء" @@ -5742,7 +5759,7 @@ msgstr "محتوى إشعار غير صالح." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "المستخدم" @@ -5765,6 +5782,9 @@ msgstr "رسالة ترحيب غير صالحة. أقصى طول 255 حرف." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "اشتراك مبدئي غير صالح: \"%1$s\" ليس مستخدمًا." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "الملف الشخصي" @@ -5998,7 +6018,6 @@ msgid "Contributors" msgstr "المساهمون" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "الرخصة" @@ -6030,7 +6049,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "الملحقات" @@ -6460,6 +6478,9 @@ msgstr "رُد" msgid "Write a reply..." msgstr "اكتب ردًا..." +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "الحالة" @@ -6578,8 +6599,9 @@ msgstr "" msgid "No content for notice %s." msgstr "ابحث عن محتويات في الإشعارات" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "لا مستخدم كهذا." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6628,81 +6650,129 @@ msgstr "الأمر لم يُجهزّ بعد." msgid "Unable to delete design setting." msgstr "تعذّر حذف إعدادات التصميم." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "الرئيسية" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "الرئيسية" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "إداري" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "الموقع" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "ضبط التصميم" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "التصميم" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ضبط المستخدم" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "المستخدم" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "ضبط الحساب" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "نفاذ" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "ضبط المسارات" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "المسارات" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "ضبط الجلسات" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "الجلسات" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "عدّل إشعار الموقع" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "إشعار الموقع" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "ضبط المسارات" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Snapshots" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "اضبط رخصة الموقع" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "الرخصة" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "ضبط المسارات" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "الملحقات" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6711,6 +6781,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6747,9 +6818,11 @@ msgstr "" msgid "Could not issue access token." msgstr "تعذّر إدراج الرسالة." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth." @@ -6853,6 +6926,13 @@ msgstr "ألغِ" msgid "Save" msgstr "احفظ" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "إجراء غير معروف" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6875,11 +6955,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "أزل" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7057,6 +7138,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7396,9 +7479,14 @@ msgstr "" msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "خطأ قاعدة بيانات" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "عام" @@ -7410,6 +7498,7 @@ msgstr "احذف" msgid "Delete this user" msgstr "احذف هذا المستخدم" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "غيّر التصميم" @@ -7421,22 +7510,15 @@ msgstr "تغيير الألوان" msgid "Use defaults" msgstr "استخدم المبدئيات" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "استعد التصميمات المبدئية" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "ارجع إلى المبدئي" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "ارفع ملفًا" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "تستطيع رفع صورة خلفية شخصية. أقصى حجم للملف هو 2 م.ب." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7449,10 +7531,6 @@ msgctxt "RADIO" msgid "Off" msgstr "عطّل" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "احفظ التصميم" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7489,47 +7567,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "فضّل" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "آرإس​إس 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "آرإس​إس 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "أتوم" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "جميع الأعضاء" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "الكل" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "اختر وسمًا لترشيحه" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "الوسم" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "اذهب" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7597,9 +7688,11 @@ msgstr[5] "" msgid "Membership policy" msgstr "عضو منذ" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7670,6 +7763,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "إداري" @@ -7785,23 +7879,40 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "مصدر صندوق وارد غير معروف %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "غادر" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "لُج" @@ -8105,6 +8216,7 @@ msgstr "" msgid "Inbox" msgstr "صندوق الوارد" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "رسائلك الواردة" @@ -8342,15 +8454,42 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "تعذّر إدراج اشتراك جديد." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "الملف الشخصي" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "ملفك الشخصي" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "الردود" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "المفضلات" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "المستخدم" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "رسالة" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8374,29 +8513,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "إعدادات" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "غيّر إعدادات ملفك الشخصي" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "ضبط المستخدم" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "اخرج" msgid "Logout from the site" msgstr "اخرج من الموقع" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "لُج إلى الموقع" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "ابحث" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "ابحث في الموقع" @@ -8445,15 +8597,36 @@ msgstr "كل المجموعات" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "مجموعات" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "مجموعات المستخدمين" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "الوسوم الحديثة" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "الوسوم الحديثة" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "مُختارون" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "محبوبة" @@ -8498,52 +8671,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "ابحث" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "أشخاص" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "ابحث عن أشخاص على هذا الموقع" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "الإشعارات" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "ابحث عن محتويات في الإشعارات" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "ابحث عن مجموعات على هذا الموقع" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "مساعدة" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "عن" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "الأسئلة المكررة" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "الشروط" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "خصوصية" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "المصدر" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "النسخة" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "اتصل" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "الجسر" @@ -8553,36 +8756,87 @@ msgstr "قسم غير مُعنون" msgid "More..." msgstr "المزيد..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "إعدادات" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "أفتار" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "ارفع أفتارًا" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "كلمة السر" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "غير كلمة سرّك" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "البريد الإلكتروني" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "صمّم ملفك الشخصي" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "مسار" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "محادثة فورية" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "رسائل قصيرة" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "تحديثات عبر الرسائل القصيرة" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "اتصالات" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "تطبيقات OAuth" @@ -8593,12 +8847,6 @@ msgstr "أسكِت" msgid "Silence this user" msgstr "أسكِت هذا المستخدم" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "الملف الشخصي" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8624,6 +8872,7 @@ msgid "People subscribed to %s." msgstr "الأشخاص المشتركون ب%s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8634,12 +8883,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "مجموعات" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8647,7 +8890,6 @@ msgid "Groups %s is a member of." msgstr "المجموعات التي %s عضو فيها" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ادعُ" @@ -8940,28 +9182,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "كرر بالفعل هذه الملاحظة." +#~ msgid "Restore default designs" +#~ msgstr "استعد التصميمات المبدئية" + +#~ msgid "Reset back to default" +#~ msgstr "ارجع إلى المبدئي" + +#~ msgid "Save design" +#~ msgstr "احفظ التصميم" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "تكلم عن نفسك واهتمامتك في %d حرف" -#~ msgstr[1] "تكلم عن نفسك واهتمامتك في %d حرف" -#~ msgstr[2] "تكلم عن نفسك واهتمامتك في %d حرف" -#~ msgstr[3] "تكلم عن نفسك واهتمامتك في %d حرف" -#~ msgstr[4] "تكلم عن نفسك واهتمامتك في %d حرف" -#~ msgstr[5] "تكلم عن نفسك واهتمامتك في %d حرف" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "صِف نفسك واهتماماتك" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "" -#~ "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s، الصفحة %2$d" - -#~ msgid "Error repeating notice." -#~ msgstr "خطأ تكرار الإشعار." +#~ msgid "Not an atom feed." +#~ msgstr "جميع الأعضاء" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index cceba2c44f..b1b5c68e41 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,20 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:35+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Достъп" @@ -135,6 +134,7 @@ msgstr "Няма такака страница." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Няма такъв потребител" @@ -148,6 +148,12 @@ msgstr "%1$s и приятели, страница %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s и приятели" @@ -266,6 +272,7 @@ msgstr "Грешка при обновяване на потребителя." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Потребителят няма профил." @@ -331,9 +338,9 @@ msgstr "Абонаменти на %s" #. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname. #. TRANS: Title for Atom favorites feed. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s favorites" -msgstr "Любими" +msgstr "%s любими" #. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname. #, fuzzy, php-format @@ -775,10 +782,9 @@ msgid "Cancel" msgstr "Отказ" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#, fuzzy msgctxt "BUTTON" msgid "Allow" -msgstr "Разрешение" +msgstr "Позволяване" #. TRANS: Form instructions. msgid "Authorize access to your account information." @@ -1369,20 +1375,17 @@ msgstr "Преглед" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. -#, fuzzy msgctxt "BUTTON" msgid "Delete" msgstr "Изтриване" #. TRANS: Button on avatar upload page to upload an avatar. #. TRANS: Submit button to confirm upload of a user backup file for account restore. -#, fuzzy msgctxt "BUTTON" msgid "Upload" msgstr "Качване" #. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. -#, fuzzy msgctxt "BUTTON" msgid "Crop" msgstr "Изрязване" @@ -1517,10 +1520,9 @@ msgid "Unblock user from group" msgstr "Разблокиране на потребителя от групата" #. TRANS: Button text for unblocking a user from a group. -#, fuzzy msgctxt "BUTTON" msgid "Unblock" -msgstr "Разблокиране" +msgstr "Отблокиране" #. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. @@ -1853,9 +1855,8 @@ msgid "Delete this user." msgstr "Изтриване на този потребител" #. TRANS: Message used as title for design settings for the site. -#, fuzzy msgid "Design" -msgstr "Версия" +msgstr "Дизайн" #. TRANS: Instructions for design adminsitration panel. msgid "Design settings for this StatusNet site" @@ -1992,15 +1993,18 @@ msgid "Use defaults" msgstr "" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Грешка при записване настройките за Twitter" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Запазване настройките на сайта" @@ -2346,6 +2350,7 @@ msgstr "Добавяне към любимите" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Популярни бележки" @@ -2381,6 +2386,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Любими бележки на %s" @@ -2393,6 +2400,7 @@ msgstr "Бележки от %1$s в %2$s." #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Избрани потребители" @@ -3664,7 +3672,6 @@ msgid "Password saved." msgstr "Паролата е записана." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Пътища" @@ -4193,6 +4200,7 @@ msgid "Public timeline, page %d" msgstr "Общ поток, страница %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Общ поток" @@ -4665,6 +4673,8 @@ msgstr "Повторено!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Отговори на %s" @@ -4772,6 +4782,7 @@ msgid "System error uploading file." msgstr "Системна грешка при качване на файл." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Всички членове" @@ -5840,7 +5851,7 @@ msgstr "Неправилен размер." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Потребител" @@ -5863,6 +5874,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Профил" @@ -5967,7 +5981,6 @@ msgid "Subscription authorized" msgstr "Абонаментът е одобрен" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -5981,7 +5994,6 @@ msgid "Subscription rejected" msgstr "Абонаментът е отказан" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6116,7 +6128,6 @@ msgid "Contributors" msgstr "" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Лиценз" @@ -6145,7 +6156,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Приставки" @@ -6581,7 +6591,9 @@ msgstr "Отговор" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6700,8 +6712,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Търсене в съдържанието на бележките" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Няма такъв потребител" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6752,86 +6765,133 @@ msgstr "Командата все още не се поддържа." msgid "Unable to delete design setting." msgstr "Грешка при записване настройките за Twitter" +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Лична страница" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Лична страница" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Настройки" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Основна настройка на сайта" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Сайт" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Настройка на оформлението" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Версия" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "User configuration" msgstr "Настройка на пътищата" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Потребител" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Access configuration" msgstr "Настройка на оформлението" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Достъп" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Настройка на пътищата" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Пътища" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Sessions configuration" msgstr "Настройка на оформлението" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Сесии" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Изтриване на бележката" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Нова бележка" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "Настройка на пътищата" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Snapshots" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Лиценз" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Настройка на пътищата" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Приставки" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6840,6 +6900,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6876,10 +6937,12 @@ msgstr "" msgid "Could not issue access token." msgstr "Грешка при вмъкване на съобщението." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error inserting OAuth application user." msgstr "Грешка в базата от данни — отговор при вмъкването: %s" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Грешка в базата от данни — отговор при вмъкването: %s" @@ -6981,6 +7044,13 @@ msgstr "Отказ" msgid "Save" msgstr "Запазване" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Непознато действие" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7003,12 +7073,13 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Премахване" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7185,6 +7256,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7519,9 +7592,14 @@ msgstr "" msgid "Go to the installer." msgstr "Влизане в сайта" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Грешка в базата от данни" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Общ поток" @@ -7533,6 +7611,7 @@ msgstr "Изтриване" msgid "Delete this user" msgstr "Изтриване на този потребител" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Запазване настройките на сайта" @@ -7545,14 +7624,6 @@ msgstr "Смяна на цветовете" msgid "Use defaults" msgstr "" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7561,7 +7632,7 @@ msgstr "Качване на файл" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Можете да качите лично изображение за фон. Максималната големина на файла е " "2MB." @@ -7578,11 +7649,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Изкл." -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design" -msgstr "Запазване настройките на сайта" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #, fuzzy @@ -7620,47 +7686,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Любимо" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Всички членове" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Всички" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Изберете етикет за филтриране" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Етикет" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Изберете етикет за конкретизиране" +#. TRANS: Submit button text on gallery action page. +msgctxt "BUTTON" msgid "Go" msgstr "" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7721,9 +7800,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Участник от" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7790,6 +7871,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Admin" @@ -7892,23 +7974,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Непознат език \"%s\"." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Напускане" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Вход" @@ -8196,6 +8295,7 @@ msgstr "" msgid "Inbox" msgstr "Входящи" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Получените от вас съобщения" @@ -8429,16 +8529,43 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "Грешка при добавяне на нов абонамент." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Профил" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Профил на групата" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Отговори" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Любими" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Потребител" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Съобщение" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8462,29 +8589,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Настройки за SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Промяна настройките на профила" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Настройка на пътищата" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Изход" msgid "Logout from the site" msgstr "Излизане от сайта" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Влизане в сайта" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Търсене" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Търсене в сайта" @@ -8534,15 +8674,36 @@ msgstr "Всички групи" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Групи" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Групи" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Скорошни етикети" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Скорошни етикети" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Избрано" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Популярно" @@ -8589,52 +8750,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Търсене" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Хора" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Търсене на хора в сайта" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Бележки" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Търсене в съдържанието на бележките" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Търсене на групи в сайта" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Помощ" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Относно" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Въпроси" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Условия" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Поверителност" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Изходен код" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Версия" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Контакт" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Табелка" @@ -8644,38 +8835,88 @@ msgstr "Неозаглавен раздел" msgid "More..." msgstr "Още…" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Настройки за SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Промяна настройките на профила" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Аватар" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Качване на аватар" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Парола" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Смяна на паролата" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Е-поща" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Промяна обработката на писмата" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Design your profile" msgstr "Потребителски профил" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Бележки през месинджър (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Бележки през SMS" +#. TRANS: Menu item in settings navigation panel. #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Свързване" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "Изтриване на приложението" @@ -8686,12 +8927,6 @@ msgstr "Заглушаване" msgid "Silence this user" msgstr "Заглушаване на този потребител." -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Профил" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8717,6 +8952,7 @@ msgid "People subscribed to %s." msgstr "Абонирани за %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8727,12 +8963,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Групи" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -9011,23 +9241,10 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Вече сте повторили тази бележка." +#, fuzzy +#~ msgid "Save design" +#~ msgstr "Запазване настройките на сайта" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Опишете себе си и интересите си в до %d букви" -#~ msgstr[1] "Опишете себе си и интересите си в до %d букви" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Опишете себе си и интересите си" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Къде се намирате (град, община, държава и т.н.)" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, страница %2$d" - -#~ msgid "Error repeating notice." -#~ msgstr "Грешка при повтаряне на бележката." +#~ msgid "Not an atom feed." +#~ msgstr "Всички членове" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 400877fad1..e5e85d614e 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,20 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:36+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Moned" @@ -137,6 +136,7 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "N'eus ket eus an implijer-se." @@ -150,6 +150,12 @@ msgstr "%1$s hag e vignoned, pajenn %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s hag e vignoned" @@ -274,6 +280,7 @@ msgstr "Dibosupl hizivaat an implijer." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "An implijer-mañ n'eus profil ebet dezhañ." @@ -1962,16 +1969,19 @@ msgid "Use defaults" msgstr "Implijout an talvoudoù dre ziouer" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Adlakaat an neuz dre ziouer." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Adlakaat an arventennoù dre ziouer" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Enrollañ an design" @@ -2302,6 +2312,7 @@ msgstr "Tennañ ar pennroll" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Alioù poblek" @@ -2339,6 +2350,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Alioù pennrollet eus %s" @@ -2351,6 +2364,7 @@ msgstr "Hizivadennoù brientek gant %1$s war %2$s !" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. #, fuzzy msgid "Featured users" msgstr "Diverkañ an implijer" @@ -3588,7 +3602,6 @@ msgid "Password saved." msgstr "Ger-tremen enrollet." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Hentoù" @@ -4125,6 +4138,7 @@ msgid "Public timeline, page %d" msgstr "Lanv foran - pajenn %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Lanv foran" @@ -4590,6 +4604,8 @@ msgstr "Adlavaret !" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respontoù da %s" @@ -4699,6 +4715,7 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "An holl izili" @@ -5788,7 +5805,7 @@ msgstr "Danvez direizh an ali." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Implijer" @@ -5811,6 +5828,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6051,7 +6071,6 @@ msgid "Contributors" msgstr "Aozerien" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Aotre implijout" @@ -6080,7 +6099,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Pluginoù" @@ -6502,7 +6520,9 @@ msgstr "Respont" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6616,8 +6636,9 @@ msgstr "" msgid "No content for notice %s." msgstr "N'eus danvez ebet evit ar gemennadenn %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "N'eus ket eus an implijer %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6665,80 +6686,129 @@ msgstr "N'eo ket bet emplementet saveSettings()." msgid "Unable to delete design setting." msgstr "Dibosupl eo dilemel an arventennoù krouiñ." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Degemer" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Degemer" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Merañ" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Arventennoù diazez al lec'hienn" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Lec'hienn" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Kefluniadur ar c'hrouiñ" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Design" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Kefluniadur an implijer" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Implijer" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Kefluniadur ar moned" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Moned" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Kefluniadur an hentoù" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Hentoù" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Kefluniadur an dalc'hoù" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Dalc'hoù" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Kemmañ ali al lec'hienn" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Ali al lec'hienn" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Kefluniadur ar primoù" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Prim" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Aotre implijout" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Kefluniadur an hentoù" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Pluginoù" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6747,6 +6817,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6783,9 +6854,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Diposubl eo ensoc'hañ ur gemenadenn" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar" @@ -6883,6 +6956,13 @@ msgstr "Nullañ" msgid "Save" msgstr "Enrollañ" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Oberiadenn dianav" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " gant " @@ -6905,11 +6985,12 @@ msgstr "Aprouet d'an %1$s - moned \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Disteuler" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7085,6 +7166,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7422,9 +7505,14 @@ msgstr "" msgid "Go to the installer." msgstr "Mont d'ar meziant staliañ" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Fazi bank roadennoù" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Foran" @@ -7436,6 +7524,7 @@ msgstr "Diverkañ" msgid "Delete this user" msgstr "Diverkañ an implijer-mañ" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Enrollañ an design" @@ -7448,14 +7537,6 @@ msgstr "Kemmañ al livioù" msgid "Use defaults" msgstr "Implijout an talvoudoù dre ziouer" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Adlakaat an neuz dre ziouer." - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Adlakaat an arventennoù dre ziouer" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7464,7 +7545,7 @@ msgstr "Enporzhiañ ar restr" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Gallout a rit kargañ hoc'h avatar personel. Ment vrasañ ar restr zo %s." @@ -7478,10 +7559,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Diweredekaet" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Enrollañ an design" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7519,48 +7596,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Pennrolloù" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Mignon ur mignon (FOAF)" -#, fuzzy -msgid "Not an atom feed." -msgstr "An holl izili" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Lanvioù" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "An holl" +#. TRANS: Fieldset legend on gallery action page. #, fuzzy msgid "Select tag to filter" msgstr "Dibab un douger" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Balizenn" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Mont" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7620,9 +7710,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Ezel abaoe" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7689,6 +7781,7 @@ msgid "%s blocked users" msgstr "implijerien stanket ar strollad %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Merañ" @@ -7791,23 +7884,40 @@ msgid_plural "%dB" msgstr[0] "%d o" msgstr[1] "%d o" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, fuzzy, php-format msgid "Unknown inbox source %d." msgstr "Yezh \"%s\" dizanv." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Kuitaat" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Kevreañ" @@ -8090,6 +8200,7 @@ msgstr "" msgid "Inbox" msgstr "Boest resev" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Ar gemennadennoù ho peus resevet" @@ -8324,15 +8435,42 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Ho profil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respontoù" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Pennrolloù" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Implijer" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Kemennadennoù" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, fuzzy, php-format msgid "Tags in %s's notices" @@ -8356,28 +8494,41 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Arventennoù" +#. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" msgstr "Kemmañ ho arventennoù hiniennel" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Kefluniadur an implijer" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Digevreañ" msgid "Logout from the site" msgstr "Digevreañ diouzh al lec'hienn" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Kevreañ d'al lec'hienn" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Klask" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Klask el lec'hienn" @@ -8425,15 +8576,36 @@ msgstr "An holl strolladoù" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Strolladoù" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Strolladoù implijerien" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Merkoù nevez" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Merkoù nevez" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Heverk" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Poblek" @@ -8480,52 +8652,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Klask" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Tud" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Klask tud el lec'hienn-mañ" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Ali" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Klask alioù en danvez" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Klask strolladoù el lec'hienn-mañ" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Skoazell" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Diwar-benn" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAG" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "AIH" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Prevezded" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Mammenn" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Stumm" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Darempred" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Badj" @@ -8535,36 +8737,87 @@ msgstr "Rann hep titl" msgid "More..." msgstr "Muioc'h..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Arventennoù" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Kemmañ arventennoù ho profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Enporzhiañ un avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Ger-tremen" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Cheñch ar ger-tremen" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Postel" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Kemmañ tretadur ar posteloù" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Krouit ho profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Hizivadennoù dre SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kevreadennoù" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "Poeladoù kevreet." @@ -8576,12 +8829,6 @@ msgstr "Didrouz" msgid "Silence this user" msgstr "Diverkañ an implijer-mañ" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8607,6 +8854,7 @@ msgid "People subscribed to %s." msgstr "Koumananterien %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8617,12 +8865,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Strolladoù" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8630,7 +8872,6 @@ msgid "Groups %s is a member of." msgstr "Ezel eo %s eus ar strolladoù" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Pediñ" @@ -8902,31 +9143,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Kemenn bet adkemeret dija." +#~ msgid "Restore default designs" +#~ msgstr "Adlakaat an neuz dre ziouer." + +#~ msgid "Reset back to default" +#~ msgstr "Adlakaat an arventennoù dre ziouer" + +#~ msgid "Save design" +#~ msgstr "Enrollañ an design" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" -#~ msgstr[1] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Deskrivit hoc'h-unan hag ar pezh a zedenn ac'hanoc'h" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, pajenn %2$d" - -#, fuzzy -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Aotre-implijout ar menegoù \"%1$s\" ne ya ket gant aotre-implijout al " -#~ "lec'hienn \"%2$s\"." - -#, fuzzy -#~ msgid "Error repeating notice." -#~ msgstr "Fazi en ur hizivaat ar profil a-bell." +#~ msgid "Not an atom feed." +#~ msgstr "An holl izili" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index cc40ee96e5..d921d71075 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,20 +16,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:05+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:38+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Accés" @@ -142,6 +141,7 @@ msgstr "No existeix la pàgina." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "No existeix l'usuari." @@ -155,6 +155,12 @@ msgstr "%1$s i amics, pàgina %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s i amics" @@ -283,6 +289,7 @@ msgstr "No s'ha pogut actualitzar l'usuari." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "L'usuari no té perfil." @@ -1982,14 +1989,17 @@ msgid "Use defaults" msgstr "Utilitza els paràmetres per defecte" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Restaura els dissenys per defecte." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Torna a restaurar els paràmetres per defecte." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Desa el disseny." @@ -2320,6 +2330,7 @@ msgstr "Fes que deixi de ser preferit." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Avisos populars" @@ -2361,6 +2372,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Avisos preferits de %s" @@ -2373,6 +2386,7 @@ msgstr "Actualitzacions preferides per %1$s a %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usuaris destacats" @@ -3638,7 +3652,6 @@ msgid "Password saved." msgstr "Contrasenya guardada." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Camins" @@ -4119,9 +4132,9 @@ msgstr "Etiqueta no vàlida: «%s»." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." -msgstr "No es pot actualitzar l'usuari per autosubscriure." +msgstr "" +"No es pot actualitzar l'usuari per autosubscriure o política de subscripció." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." @@ -4159,6 +4172,7 @@ msgid "Public timeline, page %d" msgstr "Línia temporal pública, pàgina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Línia temporal pública" @@ -4402,15 +4416,14 @@ msgid "New password successfully saved. You are now logged in." msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." -msgstr "No hi ha cap argument ID." +msgstr "No hi ha paràmetre id." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "No existeix el fitxer." +msgstr "No existeix el fitxer «%d»." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4425,7 +4438,6 @@ msgid "Registration successful" msgstr "Registre satisfactori" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Registre" @@ -4435,9 +4447,8 @@ msgid "Registration not allowed." msgstr "Registre no permès." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#, fuzzy msgid "You cannot register if you do not agree to the license." -msgstr "No podeu registrar-vos-hi si no accepteu la llicència." +msgstr "No podeu registrar-vos si no accepteu la llicència." msgid "Email address already exists." msgstr "L'adreça de correu electrònic ja existeix." @@ -4455,13 +4466,11 @@ msgstr "" "enllaçar a amics i col·legues." #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Confirma" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "Correu electrònic" @@ -4476,7 +4485,6 @@ msgid "Longer name, preferably your \"real\" name." msgstr "Nom més llarg, preferiblement el vostre nom «real»." #. TRANS: Button text to register a user on account registration page. -#, fuzzy msgctxt "BUTTON" msgid "Register" msgstr "Registre" @@ -4596,7 +4604,6 @@ msgstr "URL del vostre perfil en un altre servei de microblogging compatible." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriu-m'hi" @@ -4641,6 +4648,8 @@ msgstr "Repetit!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respostes a %s" @@ -4755,6 +4764,7 @@ msgid "System error uploading file." msgstr "Error del sistema en pujar el fitxer." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "No és un canal Atom." @@ -4787,7 +4797,6 @@ msgid "You cannot revoke user roles on this site." msgstr "No podeu revocar els rols d'usuari en aquest lloc." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "L'usuari no té aquest rol." @@ -4806,7 +4815,6 @@ msgid "User is already sandboxed." msgstr "L'usuari ja es troba en un entorn de proves." #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Sessions" @@ -4816,7 +4824,6 @@ msgid "Session settings for this StatusNet site" msgstr "Paràmetres de sessió d'aquest lloc basat en StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Sessions" @@ -4828,9 +4835,8 @@ msgstr "Gestiona les sessions" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Si cal gestionar les sessions nosaltres mateixos." +msgstr "Gestionar nosaltres mateixos les sessions." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -4838,14 +4844,12 @@ msgid "Session debugging" msgstr "Depuració de la sessió" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Activa la sortida de depuració per a les sessions." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Desa els paràmetres d'accés" +msgstr "Desa la configuració de sessió" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -5874,7 +5878,7 @@ msgstr "El contingut de l'avís no és vàlid." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usuari" @@ -5898,6 +5902,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "La subscripció per defecte no és vàlida: «%1$s» no és cap usuari." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -5993,7 +6000,6 @@ msgid "Subscription authorized" msgstr "Subscripció autoritzada" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6008,7 +6014,6 @@ msgid "Subscription rejected" msgstr "Subscripció rebutjada" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6146,7 +6151,6 @@ msgid "Contributors" msgstr "Col·laboració" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Llicència" @@ -6185,7 +6189,6 @@ msgstr "" "License juntament amb el programa. Si no és així, consulteu %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Connectors" @@ -6616,7 +6619,9 @@ msgstr "Respon" msgid "Write a reply..." msgstr "Escriviu una resposta..." +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6741,8 +6746,9 @@ msgstr "" msgid "No content for notice %s." msgstr "No hi ha contingut a l'avís %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "No existeix l'usuari %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6789,79 +6795,128 @@ msgstr "El saveSettings() no està implementat." msgid "Unable to delete design setting." msgstr "No s'ha pogut eliminar el paràmetre de disseny." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Pàgina personal" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Pàgina personal" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuració bàsica del lloc" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Lloc" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuració del disseny" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Disseny" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuració de l'usuari" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Usuari" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuració de l'accés" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accés" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuració dels camins" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Camins" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuració de les sessions" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Edita l'avís del lloc" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Avís del lloc" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuració de les instantànies" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Instantànies" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Defineix la llicència del lloc" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Llicència" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Configuració dels connectors" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Connectors" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6872,6 +6927,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "No hi ha cap aplicació per a aquest clau de consumidor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "No es permet l'ús de l'API." @@ -6907,9 +6963,11 @@ msgstr "" msgid "Could not issue access token." msgstr "No s'ha pogut emetre un testimoni d'accés." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Error de la base de dades en inserir l'usuari de l'aplicació OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Error de la base de dades en actualitzar l'usuari de l'aplicació OAuth." @@ -7008,6 +7066,13 @@ msgstr "Cancel·la" msgid "Save" msgstr "Desa" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Acció desconeguda" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " per " @@ -7030,11 +7095,12 @@ msgstr "Aprovat: %1$s - accés «%2$s»." msgid "Access token starting with: %s" msgstr "Testimoni d'accés que comença amb: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "L'element autor ha de contenir un element nom." @@ -7205,6 +7271,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7533,9 +7601,14 @@ msgstr "Podeu voler executar l'instal·lador per corregir-ho." msgid "Go to the installer." msgstr "Vés a l'instal·lador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Error de la base de dades" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Públic" @@ -7547,6 +7620,7 @@ msgstr "Elimina" msgid "Delete this user" msgstr "Elimina l'usuari" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Canvia el disseny" @@ -7558,22 +7632,15 @@ msgstr "Canvia els colors" msgid "Use defaults" msgstr "Utilitza els paràmetres per defecte" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Restaura els dissenys per defecte" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Torna a restaurar al valor per defecte" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Puja un fitxer" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Podeu pujar la vostra imatge de fons personal. La mida màxima del fitxer és " "2MB." @@ -7588,10 +7655,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desactivada" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Desa el disseny" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7626,46 +7689,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Preferit" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "No és un canal atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "No hi ha cap autor al canal." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "No es pot importar sense un usuari." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Canals" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Tot" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Seleccioneu l'etiqueta per filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiqueta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Trieu una etiqueta per escurçar la llista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Vés-hi" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Atorga a l'usuari el rol «%s»" @@ -7728,9 +7807,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membre des de" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7797,6 +7878,7 @@ msgid "%s blocked users" msgstr "%s usuaris blocats" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrador" @@ -7897,23 +7979,40 @@ msgid_plural "%dB" msgstr[0] "%dB" msgstr[1] "%dB" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Font %d de la safata d'entrada desconeguda." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Deixa" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Inici de sessió" @@ -8294,6 +8393,7 @@ msgstr "" msgid "Inbox" msgstr "Safata d'entrada" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Els teus missatges rebuts" @@ -8527,15 +8627,41 @@ msgstr "Avís duplicat." msgid "Couldn't insert new subscription." msgstr "No s'ha pogut inserir una nova subscripció." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "El vostre perfil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respostes" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Preferits" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Usuari" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Missatges" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8559,27 +8685,40 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Paràmetres de l'SMS" +#. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" msgstr "Canvieu els vostres paràmetres personals" +#. TRANS: Menu item title in primary navigation panel. msgid "Site configuration" msgstr "Configuració del lloc" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Finalitza la sessió" msgid "Logout from the site" msgstr "Finalitza la sessió del lloc" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Inicia una sessió al lloc" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Cerca" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Cerca al lloc" @@ -8627,15 +8766,36 @@ msgstr "Tots els grups" msgid "Unimplemented method." msgstr "Mètode no implementat" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grups" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grups d'usuaris" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Etiquetes recents" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etiquetes recents" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Destacat" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popular" @@ -8679,52 +8839,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Cerca" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Gent" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Cerca gent en aquest lloc" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Avisos" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Cerca el contingut dels avisos" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Cerca grups en aquest lloc" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Ajuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Quant a" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Preguntes més freqüents" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Termes del servei" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privadesa" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Font" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versió" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contacte" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insígnia" @@ -8734,36 +8924,87 @@ msgstr "Secció sense títol" msgid "More..." msgstr "Més..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Paràmetres de l'SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Canvieu els paràmetres del vostre perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Puja un avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Contrasenya" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Canvieu la vostra contrasenya" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Correu electrònic" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Canvieu la gestió del correu" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Dissenyeu el vostre perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualitzacions per missatgeria instantània (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualitzacions per SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connexions" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicacions de connexió autoritzades" @@ -8773,12 +9014,6 @@ msgstr "Silencia" msgid "Silence this user" msgstr "Silencia l'usuari" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Perfil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8804,6 +9039,7 @@ msgid "People subscribed to %s." msgstr "Gent subscrita a %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8814,12 +9050,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Grups" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8827,7 +9057,6 @@ msgid "Groups %s is a member of." msgstr "%s grups són membres de" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convida" @@ -9095,28 +9324,14 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." -#~ msgid "Already repeated that notice." -#~ msgstr "Avís duplicat." +#~ msgid "Restore default designs" +#~ msgstr "Restaura els dissenys per defecte" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Descriviu qui sou i els vostres interessos en %d caràcter" -#~ msgstr[1] "Descriviu qui sou i els vostres interessos en %d caràcters" +#~ msgid "Reset back to default" +#~ msgstr "Torna a restaurar al valor per defecte" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Feu una descripció personal i interessos" +#~ msgid "Save design" +#~ msgstr "Desa el disseny" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, pàgina %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "La llicència del flux de qui escolteu, «%1$s», no és compatible amb la " -#~ "llicència del lloc, «%2$s»." - -#~ msgid "Error repeating notice." -#~ msgstr "S'ha produït un error en repetir l'avís." +#~ msgid "Not an atom feed." +#~ msgstr "No és un canal atom." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index d18e497e85..18740b6f37 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -12,21 +12,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:39+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Přístup" @@ -137,6 +136,7 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Uživatel neexistuje." @@ -150,6 +150,12 @@ msgstr "%1$s a přátelé, strana %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s a přátelé" @@ -277,6 +283,7 @@ msgstr "Nepodařilo se aktualizovat nastavení uživatele" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Uživatel nemá profil." @@ -2022,16 +2029,19 @@ msgid "Use defaults" msgstr "Použít výchozí" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Obnovit výchozí vzhledy" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Reset zpět do výchozího" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Uložit vzhled" @@ -2366,6 +2376,7 @@ msgstr "Znemilostnit oblíbenou" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Populární oznámení" @@ -2407,6 +2418,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "oblíbená oznámení uživatele %s" @@ -2419,6 +2432,7 @@ msgstr "Aktualizace oblíbené uživatelem %1$s na %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Nejlepší uživatelé" @@ -3694,7 +3708,6 @@ msgid "Password saved." msgstr "Heslo uloženo" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Cesty" @@ -4235,6 +4248,7 @@ msgid "Public timeline, page %d" msgstr "Veřejná časová osa, strana %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Veřejné zprávy" @@ -4720,6 +4734,8 @@ msgstr "Opakované!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Odpovědi na %s" @@ -4836,6 +4852,7 @@ msgid "System error uploading file." msgstr "Chyba systému při nahrávání souboru" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Všichni členové" @@ -5952,7 +5969,7 @@ msgstr "Neplatná velikost" msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Uživatel" @@ -5976,6 +5993,9 @@ msgstr "Neplatné uvítací text. Max délka je 255 znaků." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Neplatné výchozí přihlášení: '%1$s' není uživatel." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6075,7 +6095,6 @@ msgid "Subscription authorized" msgstr "Odběr autorizován" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6090,7 +6109,6 @@ msgid "Subscription rejected" msgstr "Odběr odmítnut" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6229,7 +6247,6 @@ msgid "Contributors" msgstr "Přispěvatelé" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licence" @@ -6268,7 +6285,6 @@ msgstr "" "programem. Pokud ne, jděte na %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Pluginy" @@ -6700,7 +6716,9 @@ msgstr "Odpovědět" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6819,8 +6837,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Najít v obsahu oznámení" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Uživatel neexistuje." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6867,80 +6886,129 @@ msgstr "saveSettings () není implementována." msgid "Unable to delete design setting." msgstr "Nelze smazat nastavení vzhledu." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Moje stránky" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Moje stránky" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Základní konfigurace webu" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Stránky" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Nastavení vzhledu" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Vzhled" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Akce uživatele" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Uživatel" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Nastavení přístupu" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Přístup" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Naastavení cest" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Cesty" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Nastavení sessions" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Upravit oznámení stránky" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Sdělení" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Konfigurace snímků" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Snímky (snapshoty)" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licence" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Naastavení cest" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Pluginy" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6951,6 +7019,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6987,9 +7056,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Nemohu vložit zprávu." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Chyba databáze při vkládání uživatele aplikace OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Chyba databáze při vkládání uživatele aplikace OAuth." @@ -7088,6 +7159,13 @@ msgstr "Zrušit" msgid "Save" msgstr "Uložit" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Neznámá akce" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7110,11 +7188,12 @@ msgstr "Schváleno %1$s - přístup \"%2$s\"" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Obnovit" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7290,6 +7369,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7620,9 +7701,14 @@ msgstr "Možná budete chtít spustit instalační program abyste to vyřešili. msgid "Go to the installer." msgstr "Jdi na instalaci." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Chyba databáze" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Veřejné" @@ -7634,6 +7720,7 @@ msgstr "Odstranit" msgid "Delete this user" msgstr "Odstranit tohoto uživatele" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Uložit vzhled" @@ -7646,14 +7733,6 @@ msgstr "Změnit barvy" msgid "Use defaults" msgstr "Použít výchozí" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Obnovit výchozí vzhledy" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Reset zpět do výchozího" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7662,7 +7741,7 @@ msgstr "Nahrát soubor" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Můžete nahrát váš osobní obrázek na pozadí. Maximální velikost souboru je 2 " "MB." @@ -7679,10 +7758,6 @@ msgctxt "RADIO" msgid "Off" msgstr "vyp." -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Uložit vzhled" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7719,47 +7794,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Oblíbit" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Všichni členové" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Všechny" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Zvolte značku k filtrování" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Značka" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Vyberte si značku k zúžení seznamu" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Jdi" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Dát tomuto uživateli roli \"%s\"" @@ -7823,9 +7912,11 @@ msgstr[2] "Další přezdívky pro skupinu, oddělené čárkou nebo mezerou, ma msgid "Membership policy" msgstr "Členem od" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7893,6 +7984,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7996,23 +8088,40 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Neznámý zdroj inboxu %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Opustit" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Přihlásit" @@ -8394,6 +8503,7 @@ msgstr "" msgid "Inbox" msgstr "Doručená pošta" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Vaše příchozí zprávy" @@ -8627,15 +8737,42 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "Nelze vložit odebírání" +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Profil skupiny" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Odpovědi" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Oblíbené" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Uživatel" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Zpráva" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8659,17 +8796,25 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "nastavení SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Změňte nastavení profilu" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Akce uživatele" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Odhlásit se" @@ -8677,13 +8822,18 @@ msgstr "Odhlásit se" msgid "Logout from the site" msgstr "Odhlášení z webu" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Login to the site" msgstr "Přihlásit se na stránky" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Hledat" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Prohledat stránky" @@ -8732,15 +8882,36 @@ msgstr "Všechny skupiny" msgid "Unimplemented method." msgstr "Neimplementovaná metoda." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Skupiny" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Skupin uživatel" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Nedávné značky" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Nedávné značky" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Doporučení" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populární" @@ -8785,52 +8956,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Lidé" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Najít lidi na této stránce" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Sdělení" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Najít v obsahu oznámení" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Najít skupiny na této stránce" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Nápověda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "O nás" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS (pravidla použití služby)" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Soukromí" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Zdroj" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Verze" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Odznak" @@ -8840,36 +9041,87 @@ msgstr "Oddíl bez názvu" msgid "More..." msgstr "Další…" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "nastavení SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Změňte nastavení profilu" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Nahrát avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Heslo" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Změňte své heslo" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Email" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Změnit manipulaci emailu" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Změňte vzhled svého profilu" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Aktualizace z a na instant messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Aktualizace z a na SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Připojení" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Autorizované propojené aplikace" @@ -8879,12 +9131,6 @@ msgstr "Uťišit" msgid "Silence this user" msgstr "Utišit tohoto uživatele" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8910,6 +9156,7 @@ msgid "People subscribed to %s." msgstr "Lidé přihlášení k %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8920,12 +9167,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Skupiny" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8933,7 +9174,6 @@ msgid "Groups %s is a member of." msgstr "Skupiny kterých je %s členem" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Pozvat" @@ -9214,29 +9454,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Již jste zopakoval toto oznámení." +#~ msgid "Restore default designs" +#~ msgstr "Obnovit výchozí vzhledy" + +#~ msgid "Reset back to default" +#~ msgstr "Reset zpět do výchozího" + +#~ msgid "Save design" +#~ msgstr "Uložit vzhled" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Popište sebe a své zájmy" -#~ msgstr[1] "Popište sebe a své zájmy" -#~ msgstr[2] "Popište sebe a své zájmy" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Popište sebe a své zájmy" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Místo. Město, stát." - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, strana %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Licence naslouchaného '%1$s' není kompatibilní s licencí stránky '%2$s'." - -#~ msgid "Error repeating notice." -#~ msgstr "Chyba nastavení uživatele" +#~ msgid "Not an atom feed." +#~ msgstr "Všichni členové" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 8d04acb517..29f2e06fdc 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -22,20 +22,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:41+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Zugang" @@ -147,6 +146,7 @@ msgstr "Seite nicht vorhanden" #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Unbekannter Benutzer." @@ -160,6 +160,12 @@ msgstr "%1$s und Freunde, Seite% 2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s und Freunde" @@ -288,6 +294,7 @@ msgstr "Konnte Benutzerdaten nicht aktualisieren." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Benutzer hat kein Profil." @@ -2013,16 +2020,19 @@ msgid "Use defaults" msgstr "Standardeinstellungen benutzen" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Standard-Design wiederherstellen" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Standard wiederherstellen" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Design speichern" @@ -2362,6 +2372,7 @@ msgstr "Aus Favoriten entfernen" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Beliebte Nachrichten" @@ -2403,6 +2414,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%ss favorisierte Nachrichten" @@ -2415,6 +2428,7 @@ msgstr "Aktualisierungen von %1$s auf %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Top-Benutzer" @@ -3699,7 +3713,6 @@ msgid "Password saved." msgstr "Passwort gespeichert." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Pfad" @@ -4228,6 +4241,7 @@ msgid "Public timeline, page %d" msgstr "Öffentliche Zeitleiste, Seite %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Öffentliche Zeitleiste" @@ -4721,6 +4735,8 @@ msgstr "Wiederholt!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Antworten an %s" @@ -4837,6 +4853,7 @@ msgid "System error uploading file." msgstr "Systemfehler beim Hochladen der Datei." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Kein Mitglied" @@ -5957,7 +5974,7 @@ msgstr "Ungültige Zahl für maximale Nachrichten-Länge." msgid "Error saving user URL shortening preferences." msgstr "Fehler beim speichern der URL-Verkürzungs-Einstellungen." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Benutzer" @@ -5980,6 +5997,9 @@ msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ungültiges Standard-Abonnement: „%1$s“ ist kein Benutzer." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6078,7 +6098,6 @@ msgid "Subscription authorized" msgstr "Abonnement autorisiert" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6093,7 +6112,6 @@ msgid "Subscription rejected" msgstr "Abonnement abgelehnt" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6233,7 +6251,6 @@ msgid "Contributors" msgstr "Mitarbeiter" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Lizenz" @@ -6272,7 +6289,6 @@ msgstr "" "Programm erhalten. Wenn nicht, siehe %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Erweiterungen" @@ -6711,7 +6727,9 @@ msgstr "Antworten" msgid "Write a reply..." msgstr "Antwort verfassen..." +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Status" @@ -6834,8 +6852,9 @@ msgstr "Autor für nicht-vertrauten Benutzer wird nicht überschrieben." msgid "No content for notice %s." msgstr "Kein Inhalt für Nachricht %d." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Unbekannter Benutzer." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6882,80 +6901,129 @@ msgstr "saveSettings() noch nicht implementiert." msgid "Unable to delete design setting." msgstr "Konnte die Design-Einstellungen nicht löschen." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Homepage" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Homepage" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Basis-Seiteneinstellungen" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Seite" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Design-Konfiguration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Design" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Benutzereinstellung" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Benutzer" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Zugangskonfiguration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Zugang" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Pfadkonfiguration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Pfad" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Sitzungseinstellungen" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sitzung" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Seitennachricht bearbeiten" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Seitennachricht" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Snapshot-Konfiguration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Snapshots" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Website-Lizenz einstellen" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Lizenz" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Pfadkonfiguration" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Erweiterungen" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte." @@ -6964,6 +7032,7 @@ msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte." msgid "No application for that consumer key." msgstr "Kein Programm mit diesem Anwender-Schlüssel." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Darf API nicht verwenden." @@ -6998,9 +7067,11 @@ msgstr "Konnte kein Profil und Anwendung für das Anfrage-Token finden." msgid "Could not issue access token." msgstr "Konnte Nachricht nicht einfügen." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." @@ -7100,6 +7171,13 @@ msgstr "Abbrechen" msgid "Save" msgstr "Speichern" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Unbekannter Befehl" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " von " @@ -7122,11 +7200,12 @@ msgstr "Genehmigte %1$s - „%2$s“ Zugriff." msgid "Access token starting with: %s" msgstr "Zugriffstoken beginnend mit „%s“" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Widerrufen" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #, fuzzy msgid "Author element must contain a name element." msgstr "Das „author“-Element muss ein „name“-Element erhaten." @@ -7300,6 +7379,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7626,9 +7707,14 @@ msgstr "Bitte die Installation erneut starten, um das Problem zu beheben." msgid "Go to the installer." msgstr "Zur Installation gehen." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Datenbankfehler." +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Zeitleiste" @@ -7640,6 +7726,7 @@ msgstr "Löschen" msgid "Delete this user" msgstr "Diesen Benutzer löschen" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Design speichern" @@ -7652,14 +7739,6 @@ msgstr "Farben ändern" msgid "Use defaults" msgstr "Standardeinstellungen benutzen" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Standard-Design wiederherstellen" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Standard wiederherstellen" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7668,7 +7747,7 @@ msgstr "Datei hochladen" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Du kannst dein persönliches Hintergrundbild hochladen. Die maximale " "Dateigröße ist 2 MB." @@ -7683,10 +7762,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Aus" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Design speichern" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7723,47 +7798,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Zu Favoriten hinzufügen" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Kein Mitglied" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feeds" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Alle" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Wähle ein Tag, um die Liste einzuschränken" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Tag" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Wähle ein Tag, um die Liste einzuschränken" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Los geht's" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Teile dem Benutzer die „%s“-Rolle zu" @@ -7825,9 +7914,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Mitglied seit" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7894,6 +7985,7 @@ msgid "%s blocked users" msgstr "Blockierte Benutzer der Gruppe „%s“" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7994,23 +8086,40 @@ msgid_plural "%dB" msgstr[0] "%d Byte" msgstr[1] "%d Bytes" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Unbekannte inbox-Quelle %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Verlassen" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Anmelden" @@ -8391,6 +8500,7 @@ msgstr "" msgid "Inbox" msgstr "Posteingang" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Deine eingehenden Nachrichten" @@ -8626,16 +8736,43 @@ msgstr "Doppelte Nachricht." msgid "Couldn't insert new subscription." msgstr "Konnte neues Abonnement nicht eintragen." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Gruppenprofil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Antworten" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoriten" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Benutzer" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Nachricht" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8659,29 +8796,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Plugin Beschreibung nicht verfügbar wenn deaktiviert.)" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS-Einstellungen" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Ändern der Profileinstellungen" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Benutzereinstellung" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Abmelden" msgid "Logout from the site" msgstr "Von der Seite abmelden" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Auf der Seite anmelden" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Suchen" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Website durchsuchen" @@ -8730,15 +8880,36 @@ msgstr "Alle Gruppen" msgid "Unimplemented method." msgstr "Nicht unterstützte Methode." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppen" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Benutzer-Gruppen" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Aktuelle Tags" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Aktuelle Tags" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Beliebte Benutzer" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Beliebte Beiträge" @@ -8782,52 +8953,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Suchen" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Leute" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Finde Leute auf dieser Seite" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Nachrichten" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Durchsuche den Inhalt der Nachrichten" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Finde Gruppen auf dieser Seite" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Hilfe" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Über" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "AGB" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privatsphäre" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Quellcode" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Plakette" @@ -8837,36 +9038,87 @@ msgstr "Abschnitt ohne Titel" msgid "More..." msgstr "Mehr …" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS-Einstellungen" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Ändern der Profileinstellungen" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Avatar hochladen" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Passwort" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Ändere dein Passwort" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-Mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Ändere die E-Mail-Verarbeitung" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Passe dein Profil an" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "URL-Verkürzer" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Aktualisierungen via Instant Messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Aktualisierungen via SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Verbindungen" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Programme mit Zugriffserlaubnis" @@ -8876,12 +9128,6 @@ msgstr "Stummschalten" msgid "Silence this user" msgstr "Benutzer verstummen lassen" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8907,6 +9153,7 @@ msgid "People subscribed to %s." msgstr "Leute, die „%s“ abonniert haben" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8917,12 +9164,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Gruppen" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8930,7 +9171,6 @@ msgid "Groups %s is a member of." msgstr "Gruppen, in denen „%s“ Mitglied ist" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Einladen" @@ -9202,28 +9442,15 @@ msgstr "Ungültiges XML, XRD-Root fehlt." msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." -#~ msgid "Already repeated that notice." -#~ msgstr "Nachricht bereits wiederholt" +#~ msgid "Restore default designs" +#~ msgstr "Standard-Design wiederherstellen" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Beschreibe dich selbst und deine Interessen in einem Zeichen" -#~ msgstr[1] "Beschreibe dich selbst und deine Interessen in %d Zeichen" +#~ msgid "Reset back to default" +#~ msgstr "Standard wiederherstellen" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Beschreibe dich selbst und deine Interessen" +#~ msgid "Save design" +#~ msgstr "Design speichern" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, Seite %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Die Benutzerlizenz „%1$s“ ist nicht kompatibel mit der Lizenz der Seite „%" -#~ "2$s“." - -#~ msgid "Error repeating notice." -#~ msgstr "Fehler beim Wiederholen der Nachricht." +#, fuzzy +#~ msgid "Not an atom feed." +#~ msgstr "Kein Mitglied" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index c3006d54f6..ae6142ba19 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -14,20 +14,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:42+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Access" @@ -138,6 +137,7 @@ msgstr "No such page." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "No such user." @@ -151,6 +151,12 @@ msgstr "%1$s and friends, page %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s and friends" @@ -278,6 +284,7 @@ msgstr "Could not update user." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "User has no profile." @@ -2007,16 +2014,19 @@ msgid "Use defaults" msgstr "Use defaults" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restore default designs" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Reset back to default" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Save design" @@ -2350,6 +2360,7 @@ msgstr "Disfavor favourite" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Popular notices" @@ -2390,6 +2401,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s's favourite notices" @@ -2402,6 +2415,7 @@ msgstr "Updates favoured by %1$s on %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Featured users" @@ -3672,7 +3686,6 @@ msgid "Password saved." msgstr "Password saved." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "" @@ -4198,6 +4211,7 @@ msgid "Public timeline, page %d" msgstr "Public timeline, page %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Public timeline" @@ -4680,6 +4694,8 @@ msgstr "Repeated!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Replies to %s" @@ -4791,6 +4807,7 @@ msgid "System error uploading file." msgstr "System error uploading file." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "All members" @@ -5877,7 +5894,7 @@ msgstr "Invalid notice content." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "User" @@ -5900,6 +5917,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profile" @@ -5999,7 +6019,6 @@ msgid "Subscription authorized" msgstr "Subscription authorised" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6014,7 +6033,6 @@ msgid "Subscription rejected" msgstr "Subscription rejected" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6151,7 +6169,6 @@ msgid "Contributors" msgstr "Contributors" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "License" @@ -6190,7 +6207,6 @@ msgstr "" "along with this program. If not, see %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "" @@ -6610,7 +6626,9 @@ msgstr "Reply" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6729,8 +6747,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Find content of notices" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "No such user." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6777,80 +6796,127 @@ msgstr "saveSettings() not implemented." msgid "Unable to delete design setting." msgstr "Unable to delete design setting." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Homepage" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Homepage" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Basic site configuration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Design configuration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Design" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "User configuration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "User" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Access configuration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Access" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Paths configuration" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Sessions configuration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Edit site notice" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Site notice" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Snapshots configuration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" -msgstr "" +msgstr "Data snapshots" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "License" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Paths configuration" +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Plugins" +msgstr "" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6859,6 +6925,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6895,9 +6962,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Could not insert message." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Database error inserting OAuth application user." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Database error inserting OAuth application user." @@ -6995,6 +7064,13 @@ msgstr "Cancel" msgid "Save" msgstr "Save" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Unknown action" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7017,11 +7093,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revoke" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7189,6 +7266,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7513,9 +7592,14 @@ msgstr "" msgid "Go to the installer." msgstr "Go to the installer." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Public" @@ -7527,6 +7611,7 @@ msgstr "Delete" msgid "Delete this user" msgstr "Delete this user" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Save design" @@ -7539,14 +7624,6 @@ msgstr "Change colours" msgid "Use defaults" msgstr "Use defaults" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Restore default designs" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Reset back to default" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7555,7 +7632,7 @@ msgstr "Upload file" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "You can upload your personal background image. The maximum file size is 2MB." @@ -7571,10 +7648,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Off" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Save design" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7611,47 +7684,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Favour" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "" +#. TRANS: Feed type name. msgid "Atom" msgstr "" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -#, fuzzy -msgid "Not an atom feed." -msgstr "All members" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "All" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Select tag to filter" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Tag" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Choose a tag to narrow list" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Go" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7712,9 +7799,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Member since" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7781,6 +7870,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7881,23 +7971,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Leave" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Login" @@ -8193,6 +8300,7 @@ msgstr "" msgid "Inbox" msgstr "Inbox" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Your incoming messages" @@ -8422,16 +8530,43 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "Couldn't insert new subscription." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profile" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Group profile" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Replies" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favourites" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "User" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Message" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8455,29 +8590,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS settings" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Change your profile settings" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "User configuration" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Logout" msgid "Logout from the site" msgstr "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Login to the site" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Search" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Search site" @@ -8526,15 +8674,36 @@ msgstr "All groups" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Groups" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "User groups" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Recent tags" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Recent tags" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Featured" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popular" @@ -8579,52 +8748,81 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "People" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Find people on this site" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notices" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Find content of notices" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Find groups on this site" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Help" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "About" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "F.A.Q." -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacy" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Source" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contact" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Badge" @@ -8634,36 +8832,87 @@ msgstr "Untitled section" msgid "More..." msgstr "" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS settings" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Change your profile settings" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Upload an avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Password" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Change your password" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Change e-mail handling" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Design your profile" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Updates by instant messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Updates by SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connections" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Authorised connected applications" @@ -8673,12 +8922,6 @@ msgstr "Silence" msgid "Silence this user" msgstr "Silence this user" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profile" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8704,6 +8947,7 @@ msgid "People subscribed to %s." msgstr "People subscribed to %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8714,12 +8958,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Groups" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8727,7 +8965,6 @@ msgid "Groups %s is a member of." msgstr "Groups %s is a member of" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invite" @@ -8995,28 +9232,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Already repeated that notice." +#~ msgid "Restore default designs" +#~ msgstr "Restore default designs" + +#~ msgid "Reset back to default" +#~ msgstr "Reset back to default" + +#~ msgid "Save design" +#~ msgstr "Save design" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Describe yourself and your interests in %d chars" -#~ msgstr[1] "Describe yourself and your interests in %d chars" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Describe yourself and your interests" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Where you are, like \"City, State (or Region), Country\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, page %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." - -#~ msgid "Error repeating notice." -#~ msgstr "Error repeating notice." +#~ msgid "Not an atom feed." +#~ msgstr "All members" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index f2a54afd36..5b30d19f62 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,20 +17,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:44+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Atingo" @@ -141,6 +140,7 @@ msgstr "Ne estas tiu paĝo." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Ne ekzistas tiu uzanto." @@ -154,6 +154,12 @@ msgstr "%1$s kaj amikoj, paĝo %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s kaj amikoj" @@ -281,6 +287,7 @@ msgstr "Malsukcesis ĝisdatigi uzanton" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "La uzanto ne havas profilon." @@ -1996,16 +2003,19 @@ msgid "Use defaults" msgstr "Uzi defaŭlton" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restaŭri defaŭltajn desegnojn" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Redefaŭltiĝi" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Savi desegnon" @@ -2339,6 +2349,7 @@ msgstr "Forigi ŝatmarkon." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Popularaj avizoj" @@ -2378,6 +2389,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Ŝatataj avizoj de %s" @@ -2390,6 +2403,7 @@ msgstr "Ŝatataj ĝisdatiĝoj de %1$s ĉe %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Elstaraj uzantoj" @@ -3645,7 +3659,6 @@ msgid "Password saved." msgstr "Pasvorto konservitas." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Vojoj" @@ -4166,6 +4179,7 @@ msgid "Public timeline, page %d" msgstr "Publika tempstrio, paĝo %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Publika tempstrio" @@ -4647,6 +4661,8 @@ msgstr "Ripetita!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respondoj al %s" @@ -4764,6 +4780,7 @@ msgid "System error uploading file." msgstr "Sisteme eraris alŝuti dosieron." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Ĉiuj grupanoj" @@ -5866,7 +5883,7 @@ msgstr "Nevalida avizo-enhavo" msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Uzanto" @@ -5890,6 +5907,9 @@ msgstr "Nevalida bonvena teksto. La longlimo estas 225 literoj." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Nevalida defaŭlta abono: '%1$s' ne estas uzanto." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profilo" @@ -6138,7 +6158,6 @@ msgid "Contributors" msgstr "Kontribuantoj" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenco" @@ -6176,7 +6195,6 @@ msgstr "" "Nekaze, legu %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Kromprogramo" @@ -6596,7 +6614,9 @@ msgstr "Respondi" msgid "Write a reply..." msgstr "Skribi respondon…" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6718,8 +6738,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Ne troviĝas la enhavo por la avizo %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Ne ekzistas tiu uzanto." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6766,81 +6787,129 @@ msgstr "saveSettings() ne jam realigita." msgid "Unable to delete design setting." msgstr "Malsukcesas forigi desegnan agordon." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. #, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Hejmpaĝo" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Hejmpaĝo" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administranto" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Baza reteja agordo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Retejo" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Desegna agordo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Desegno" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Uzanta agordo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Uzanto" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Alira agordo" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Atingo" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Voja agordo" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Vojoj" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Seanca agodo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Seancoj" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Redakti retejan anoncon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Reteja anonco" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Momentfota Agordo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Momentfotoj" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenco" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Agordo pri kromprogramoj" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Kromprogramo" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "API-fonto bezonas leg-skriba aliro, sed vi nur rajtas legi." @@ -6849,6 +6918,7 @@ msgstr "API-fonto bezonas leg-skriba aliro, sed vi nur rajtas legi." msgid "No application for that consumer key." msgstr "Ne estas aplikaĵo kun la kosumanta ŝlosilo." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6885,9 +6955,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Malsukcesis enmeti mesaĝon." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." @@ -6985,6 +7057,13 @@ msgstr "Nuligi" msgid "Save" msgstr "Konservi" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Nekonata ago" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " De " @@ -7007,11 +7086,12 @@ msgstr "Permesita %1$s - aliro \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revoki" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7187,6 +7267,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7513,9 +7595,14 @@ msgstr "Vi eble volas uzi instalilon por ripari tiun ĉi." msgid "Go to the installer." msgstr "Al la instalilo." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Datumbaza eraro" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Publika" @@ -7527,6 +7614,7 @@ msgstr "Forigi" msgid "Delete this user" msgstr "Forigi la uzanton" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Savi desegnon" @@ -7539,14 +7627,6 @@ msgstr "Ŝanĝi kolorojn" msgid "Use defaults" msgstr "Uzi defaŭlton" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Restaŭri defaŭltajn desegnojn" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Redefaŭltiĝi" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7555,7 +7635,7 @@ msgstr "Alŝuti dosieron" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Vi povas alŝuti vian propran fonbildon. La dosiera grandlimo estas 2MB." @@ -7571,10 +7651,6 @@ msgctxt "RADIO" msgid "Off" msgstr "For" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Savi desegnon" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7611,47 +7687,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Ŝati" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Ĉiuj grupanoj" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Fluoj" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Ĉiuj" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Eletu etikedon por filtrado" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etikedo" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Iri" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Donu al la uzanto rolon \"%s\"" @@ -7714,9 +7803,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membriĝpolitiko" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7782,6 +7873,7 @@ msgid "%s blocked users" msgstr "Blokito de %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administri" @@ -7883,23 +7975,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Nekonata alvenkesta fonto %d" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Forlasi" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Ensaluti" @@ -8274,6 +8383,7 @@ msgstr "" msgid "Inbox" msgstr "Alvenkesto" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Viaj alvenaj mesaĝoj" @@ -8507,15 +8617,42 @@ msgstr "Refoja avizo." msgid "Couldn't insert new subscription." msgstr "Eraris enmeti novan abonon." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profilo" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Via profilo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respondoj" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Ŝatolisto" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Uzanto" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mesaĝo" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8539,28 +8676,41 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Agordoj" +#. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" msgstr "Ŝanĝi viajn personajn agordojn" +#. TRANS: Menu item title in primary navigation panel. msgid "Site configuration" msgstr "Retej-agordo" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Elsaluti" msgid "Logout from the site" msgstr "Elsaluti el la retpaĝaro" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Login to the site" msgstr "Ensaluti al la retpaĝaro" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Serĉi" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Serĉi en la retpaĝaro" @@ -8608,15 +8758,36 @@ msgstr "Ĉiuj grupoj" msgid "Unimplemented method." msgstr "Nerealiĝita metodo" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupoj" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Uzantaj grupoj" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Freŝaj etikedoj" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Freŝaj etikedoj" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Elstara" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populara" @@ -8661,52 +8832,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Serĉi" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Homon" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Serĉi homon ĉe la retejo" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Avizoj" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Serĉi enhavon ĉe la retejo" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Serĉi grupon ĉe la retejo" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Helpo" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Enkonduko" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Oftaj demandoj" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Serva Kondiĉo" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privateco" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Fontkodo" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versio" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insigno" @@ -8716,36 +8917,87 @@ msgstr "Sentitola sekcio" msgid "More..." msgstr "Pli..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Agordoj" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Ŝanĝi vian profilan agordon." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Vizaĝbildo" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Alŝuti vizaĝbildon" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Pasvorto" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Ŝanĝi vian pasvorton." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Retpoŝto" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Ŝanĝi retpoŝtan disponadon." +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Desegni vian profilon" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Mallongigiloj de URLoj" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "Tujmesaĝilo" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Ĝisdatiĝo per tujmesaĝilo." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Ĝisdatiĝo per SMM" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Konektoj" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Konektitaj aplikaĵoj rajtigitaj" @@ -8755,12 +9007,6 @@ msgstr "Silento" msgid "Silence this user" msgstr "Silentigi la uzanton" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profilo" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8786,6 +9032,7 @@ msgid "People subscribed to %s." msgstr "Abonantoj de %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8796,12 +9043,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Grupoj" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8809,7 +9050,6 @@ msgid "Groups %s is a member of." msgstr "Grupoj de %s" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Inviti" @@ -9081,29 +9321,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "La avizo jam ripetiĝis." +#~ msgid "Restore default designs" +#~ msgstr "Restaŭri defaŭltajn desegnojn" + +#~ msgid "Reset back to default" +#~ msgstr "Redefaŭltiĝi" + +#~ msgid "Save design" +#~ msgstr "Savi desegnon" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" -#~ msgstr[1] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Priskribu vin mem kaj viajn ŝatokupojn" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, paĝo %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Rigardato-flua permesilo \"%1$s\" ne konformas al reteja permesilo \"%2$s" -#~ "\"." - -#~ msgid "Error repeating notice." -#~ msgstr "Eraris ripeti avizon." +#~ msgid "Not an atom feed." +#~ msgstr "Ĉiuj grupanoj" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index d247543ebd..ade53cfaa3 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -19,20 +19,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:46+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Acceder" @@ -143,6 +142,7 @@ msgstr "No existe tal página." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "No existe ese usuario." @@ -156,6 +156,12 @@ msgstr "%1$s y sus amistades, página %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s y sus amistades" @@ -284,6 +290,7 @@ msgstr "No se pudo actualizar el usuario." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "El usuario no tiene un perfil." @@ -2000,16 +2007,19 @@ msgid "Use defaults" msgstr "Usar los valores predeterminados" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restaurar los diseños predeterminados" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Volver a los valores predeterminados" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Guardar el diseño" @@ -2349,6 +2359,7 @@ msgstr "Sacar favorito" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Mensajes populares" @@ -2390,6 +2401,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Mensajes favoritos de %s" @@ -2402,6 +2415,7 @@ msgstr "¡Actualizaciones favorecidas por %1$s en %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usuarios que figuran" @@ -3673,7 +3687,6 @@ msgid "Password saved." msgstr "Se guardó la contraseña." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Rutas" @@ -4208,6 +4221,7 @@ msgid "Public timeline, page %d" msgstr "Línea temporal pública, página %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Línea temporal pública" @@ -4700,6 +4714,8 @@ msgstr "¡Repetido!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respuestas a %s" @@ -4816,6 +4832,7 @@ msgid "System error uploading file." msgstr "Error del sistema subir el archivo" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Todos los miembros" @@ -5935,7 +5952,7 @@ msgstr "Contenido de mensaje inválido." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usuario" @@ -5959,6 +5976,9 @@ msgstr "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -6054,7 +6074,6 @@ msgid "Subscription authorized" msgstr "Suscripción autorizada" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6069,7 +6088,6 @@ msgid "Subscription rejected" msgstr "Suscripción rechazada" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6208,7 +6226,6 @@ msgid "Contributors" msgstr "Colaboradores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licencia" @@ -6247,7 +6264,6 @@ msgstr "" "con este programa. Si no la recibiste, visita %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Complementos" @@ -6679,6 +6695,9 @@ msgstr "Responder" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Estado" @@ -6804,8 +6823,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Buscar en el contenido de mensajes" -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Este usuario no existe %s" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6852,79 +6872,128 @@ msgstr "saveSettings() no implementada." msgid "Unable to delete design setting." msgstr "No se puede eliminar la configuración de diseño." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Página de inicio" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Página de inicio" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuración básica del sitio" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuración del diseño" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Diseño" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuración de usuario" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Usuario" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuración de acceso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acceder" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuración de rutas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Rutas" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuración de sesiones" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sesiones" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Editar el mensaje del sitio" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Mensaje de sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuración de instantáneas" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Capturas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licencia" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Configuración de plugins" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Complementos" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6935,6 +7004,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "No hay ninguna aplicación para esa clave de consumidor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6970,9 +7040,11 @@ msgstr "" msgid "Could not issue access token." msgstr "No se pudo insertar mensaje." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Error de base de datos al insertar usuario de la aplicación OAuth." @@ -7071,6 +7143,13 @@ msgstr "Cancelar" msgid "Save" msgstr "Guardar" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Acción desconocida" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "por " @@ -7093,11 +7172,12 @@ msgstr "Aprobado el %1$s - acceso \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7273,6 +7353,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7602,9 +7684,14 @@ msgstr "Quizá desees ejecutar el instalador para solucionar este problema." msgid "Go to the installer." msgstr "Ir al instalador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Error de la base de datos" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Público" @@ -7616,6 +7703,7 @@ msgstr "Borrar" msgid "Delete this user" msgstr "Borrar este usuario" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Guardar el diseño" @@ -7628,14 +7716,6 @@ msgstr "Cambiar colores" msgid "Use defaults" msgstr "Utilizar los valores predeterminados" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Restaurar los diseños predeterminados" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Volver a los valores predeterminados" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7644,7 +7724,7 @@ msgstr "Subir archivo" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Puedes subir tu imagen de fondo personal. El tamaño de archivo máximo " "permitido es 2 MB." @@ -7659,10 +7739,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desactivar" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Guardar el diseño" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7699,47 +7775,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Aceptar" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Amistad de amistad" -#, fuzzy -msgid "Not an atom feed." -msgstr "Todos los miembros" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feeds" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Todo" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Seleccione una etiqueta a filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiqueta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Elegir una etiqueta para reducir la lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Ir" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Otorgar al usuario el papel de \"%$\"" @@ -7803,9 +7893,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Miembro desde" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7872,6 +7964,7 @@ msgid "%s blocked users" msgstr "%s usuarios bloqueados" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7972,23 +8065,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Origen de bandeja de entrada %d desconocido." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Abandonar" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" @@ -8372,6 +8482,7 @@ msgstr "" msgid "Inbox" msgstr "Bandeja de Entrada" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Mensajes entrantes" @@ -8605,15 +8716,42 @@ msgstr "Mensaje duplicado." msgid "Couldn't insert new subscription." msgstr "No se pudo insertar una nueva suscripción." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Perfil del grupo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respuestas" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritos" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Usuario" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mensajes" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8637,29 +8775,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Configuración de SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Cambia tus opciones de perfil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Configuración de usuario" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Cerrar sesión" msgid "Logout from the site" msgstr "Cerrar sesión en el sitio" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Iniciar sesión en el sitio" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Buscar" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Buscar en el sitio" @@ -8707,15 +8858,36 @@ msgstr "Todos los grupos" msgid "Unimplemented method." msgstr "Método no implementado." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupos de usuario" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Etiquetas recientes" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etiquetas recientes" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Destacado" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popular" @@ -8760,52 +8932,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Buscar" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Gente" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Encontrar gente en este sitio" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Mensajes" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Buscar en el contenido de mensajes" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Encontrar grupos en este sitio" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Ayuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Acerca de" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Preguntas Frecuentes" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacidad" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Fuente" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versión" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Ponerse en contacto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insignia" @@ -8815,36 +9017,87 @@ msgstr "Sección sin título" msgid "More..." msgstr "Más..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Configuración de SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Cambia tus opciones de perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Imagen" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Subir una imagen." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Contraseña" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Cambia tu contraseña" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Correo electrónico" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Cambiar el manejo del correo." +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Diseñar tu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualizaciones por mensajería instantánea" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualizaciones por sms" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conecciones" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicaciones conectadas autorizadas" @@ -8854,12 +9107,6 @@ msgstr "Silenciar" msgid "Silence this user" msgstr "Silenciar a este usuario" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Perfil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8885,6 +9132,7 @@ msgid "People subscribed to %s." msgstr "Personas suscritas a %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8895,12 +9143,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Grupos" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8908,7 +9150,6 @@ msgid "Groups %s is a member of." msgstr "%s es miembro de los grupos" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" @@ -9181,29 +9422,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Este mensaje ya se ha repetido." +#~ msgid "Restore default designs" +#~ msgstr "Restaurar los diseños predeterminados" + +#~ msgid "Reset back to default" +#~ msgstr "Volver a los valores predeterminados" + +#~ msgid "Save design" +#~ msgstr "Guardar el diseño" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Descríbete y cuéntanos tus intereses en %d caracteres" -#~ msgstr[1] "Descríbete y cuéntanos tus intereses en %d caracteres" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Descríbete y cuéntanos acerca de tus intereses" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, página %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Licencia de flujo del emisor ‘%1$s’ es incompatible con la licencia del " -#~ "sitio ‘%2$s’." - -#~ msgid "Error repeating notice." -#~ msgstr "Ha habido un error al repetir el mensaje." +#~ msgid "Not an atom feed." +#~ msgstr "Todos los miembros" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 652696c575..eb50f94729 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:47+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -27,12 +27,11 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "دسترسی" @@ -143,6 +142,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "چنین کاربری وجود ندارد." @@ -156,6 +156,12 @@ msgstr "%1$s و دوستان، صفحهٔ %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s و دوستان" @@ -281,6 +287,7 @@ msgstr "نمی‌توان کاربر را به‌هنگام‌سازی کرد." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "کاربر هیچ نمایه‌ای ندارد." @@ -2009,16 +2016,19 @@ msgid "Use defaults" msgstr "استفاده‌کردن از پیش‌فرض‌ها" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "بازگرداندن طرح‌های پیش‌فرض" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "برگشت به حالت پیش گزیده" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "ذخیره‌کردن طرح" @@ -2357,6 +2367,7 @@ msgstr "خارج‌کردن از برگزیده‌ها" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "پیام‌های برگزیده" @@ -2398,6 +2409,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "پیام‌های برگزیدهٔ %s" @@ -2410,6 +2423,7 @@ msgstr "پیام‌های دوست داشتنی %s در %s" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "کاربران ویژه" @@ -3673,7 +3687,6 @@ msgid "Password saved." msgstr "گذرواژه ذخیره شد." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "مسیر ها" @@ -4210,6 +4223,7 @@ msgid "Public timeline, page %d" msgstr "خط‌زمانی عمومی، صفحهٔ %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "خط‌زمانی عمومی" @@ -4698,6 +4712,8 @@ msgstr "تکرار شد!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "پاسخ‌های به %s" @@ -4809,6 +4825,7 @@ msgid "System error uploading file." msgstr "هنگام بارگذاری پرونده خطای سیستمی رخ داد." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "همهٔ اعضا" @@ -5925,7 +5942,7 @@ msgstr "محتوای پیام نامعتبر است." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "کاربر" @@ -5949,6 +5966,9 @@ msgstr "متن خوشامدگویی نامعتبر است. بیشینهٔ طول msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "اشتراک پیش‌فرض نامعتبر است: «%1$s» کاربر نیست." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "نمایه" @@ -6195,7 +6215,6 @@ msgid "Contributors" msgstr "مشارکت‌کنندگان" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "مجوز" @@ -6232,7 +6251,6 @@ msgstr "" "برنامه دریافت کرده باشید. اگر چنین نیست، %s را ببینید." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "افزونه‌ها" @@ -6660,7 +6678,9 @@ msgstr "پاسخ" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6780,8 +6800,9 @@ msgstr "" msgid "No content for notice %s." msgstr "پیدا کردن محتوای پیام‌ها" -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "چنین کاربری وجود ندارد %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6828,80 +6849,129 @@ msgstr "saveSettings() پیاده نشده است." msgid "Unable to delete design setting." msgstr "نمی توان تنظیمات طراحی شده را پاک کرد ." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "خانه" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "خانه" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "مدیر" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "پیکربندی اولیه وب‌گاه" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "وب‌گاه" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "پیکربندی طرح" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "طرح" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "پیکربندی کاربر" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "کاربر" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "پیکربندی دسترسی" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "دسترسی" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "پیکربندی مسیرها" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "مسیر ها" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "پیکربندی نشست‌ها" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "نشست‌ها" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "ویرایش پیام وب‌گاه" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "پیام وب‌گاه" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "پیکربندی تصاویر لحظه‌ای" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "تصاویر لحظه‌ای" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "مجوز" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "پیکربندی مسیرها" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "افزونه‌ها" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6912,6 +6982,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6948,9 +7019,11 @@ msgstr "" msgid "Could not issue access token." msgstr "پیغام نمی تواند درج گردد" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد." @@ -7047,6 +7120,13 @@ msgstr "انصراف" msgid "Save" msgstr "ذخیره‌کردن" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "عمل نامعلوم" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7069,11 +7149,12 @@ msgstr "تایید شده %1$s - با دسترسی «%2$s»" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "لغو کردن" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7250,6 +7331,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7574,9 +7657,14 @@ msgstr "شما ممکن است بخواهید نصاب را اجرا کنید ت msgid "Go to the installer." msgstr "برو به نصاب." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "خطای پایگاه داده" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "عمومی" @@ -7588,6 +7676,7 @@ msgstr "حذف" msgid "Delete this user" msgstr "حذف این کاربر" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "ذخیره‌کردن طرح" @@ -7600,14 +7689,6 @@ msgstr "تغییر رنگ‌ها" msgid "Use defaults" msgstr "استفاده‌کردن از پیش‌فرض‌ها" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "بازگرداندن طرح‌های پیش‌فرض" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "برگشت به حالت پیش گزیده" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7616,7 +7697,7 @@ msgstr "بارگذاری پرونده" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "شما می‌توانید تصویر پیش‌زمینهٔ شخصی خود را بارگذاری کنید. بیشینهٔ اندازهٔ پرونده " "۲ مگابایت است." @@ -7633,10 +7714,6 @@ msgctxt "RADIO" msgid "Off" msgstr "خاموش" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "ذخیره‌کردن طرح" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7673,48 +7750,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "برگزیده‌کردن" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "" +#. TRANS: Feed type name. #, fuzzy msgid "Atom" msgstr "مؤلف" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -#, fuzzy -msgid "Not an atom feed." -msgstr "همهٔ اعضا" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "همه" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "برچسب را برای پالودن انتخاب کنید" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "برچسب" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "یک برچسب را برای محدود کردن فهرست انتخاب کنید" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "برو" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7773,9 +7864,11 @@ msgstr[0] "" msgid "Membership policy" msgstr "عضو شده از" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7841,6 +7934,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "مدیر" @@ -7939,23 +8033,40 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "منبع صندوق ورودی نامعلوم است %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "ترک کردن" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "ورود" @@ -8334,6 +8445,7 @@ msgstr "" msgid "Inbox" msgstr "صندوق دریافتی" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "پیام های وارد شونده ی شما" @@ -8567,16 +8679,43 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "نمی‌توان اشتراک تازه‌ای افزود." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "نمایه" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "نمایهٔ گروه" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "پاسخ ها" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "برگزیده‌ها" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "کاربر" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "پیام" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8600,30 +8739,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "تنظیمات پیامک" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "تنظیمات نمایه‌تان را تغییر دهید" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "پیکربندی کاربر" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "خروج" msgid "Logout from the site" msgstr "خارج شدن از سایت ." +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "ورود به وب‌گاه" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "جست‌وجو" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "جست‌وجوی وب‌گاه" @@ -8672,15 +8823,36 @@ msgstr "تمام گروه‌ها" msgid "Unimplemented method." msgstr "روش پیاده نشده است." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "گروه‌ها" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "گروه‌های کاربر" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "برچسب‌های اخیر" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "برچسب‌های اخیر" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "خصوصیت" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "محبوب" @@ -8728,52 +8900,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "افراد" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "پیدا کردن افراد در این وب‌گاه" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "پیام‌ها" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "پیدا کردن محتوای پیام‌ها" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "پیدا کردن گروه‌ها در این وب‌گاه" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "کمک" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "دربارهٔ" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "سوال‌های رایج" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "شرایط سرویس" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "خصوصی" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "منبع" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "نسخه" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "تماس" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "نشان" @@ -8783,36 +8985,87 @@ msgstr "بخش بی‌نام" msgid "More..." msgstr "بیش‌تر..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "تنظیمات پیامک" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "تنظیمات نمایه‌تان را تغییر دهید" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "چهره" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "بارگذاری یک چهره" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "گذرواژه" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "تغییر گذرواژهٔ شما" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "پست الکترونیکی" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "تغیر تنظیمات ایمل ." +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "نمایهٔ خود را طراحی کنید" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "نشانی اینترنتی" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "پیام‌رسان فوری" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "به‌هنگام‌سازی‌های انجام‌شده با پیام‌رسان فوری (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "پیامک" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "به‌روزرسانی با پیامک" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "اتصال‌ها" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "برنامه‌های وصل‌شدهٔ مجاز" @@ -8822,12 +9075,6 @@ msgstr "ساکت کردن" msgid "Silence this user" msgstr "ساکت کردن این کاربر" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "نمایه" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8853,6 +9100,7 @@ msgid "People subscribed to %s." msgstr "افراد مشترک %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8863,12 +9111,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "گروه‌ها" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8876,7 +9118,6 @@ msgid "Groups %s is a member of." msgstr "هست عضو %s گروه" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "دعوت‌کردن" @@ -9139,27 +9380,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "قبلا آن پیام تکرار شده است." +#~ msgid "Restore default designs" +#~ msgstr "بازگرداندن طرح‌های پیش‌فرض" + +#~ msgid "Reset back to default" +#~ msgstr "برگشت به حالت پیش گزیده" + +#~ msgid "Save design" +#~ msgstr "ذخیره‌کردن طرح" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "خودتان و علاقه‌مندی‌هایتان را در %d نویسه توصیف کنید" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "خودتان و علاقه‌مندی‌هایتان را توصیف کنید" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s، صفحهٔ %2$d" - -#, fuzzy -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "مجوز پیام «%1$s» با مجوز وب‌گاه «%2$s» سازگار نیست." - -#~ msgid "Error repeating notice." -#~ msgstr "هنگام تکرار پیام خطایی رخ داد." +#~ msgid "Not an atom feed." +#~ msgstr "همهٔ اعضا" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 6e33b0ecf9..c8eae141b4 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -16,20 +16,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:49+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Käyttöoikeudet" @@ -141,6 +140,7 @@ msgstr "Sivua ei ole." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Käyttäjää ei ole." @@ -154,6 +154,12 @@ msgstr "%1$s ja kaverit, sivu %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s ja kaverit" @@ -279,6 +285,7 @@ msgstr "Käyttäjän päivitys epäonnistui." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Käyttäjällä ei ole profiilia." @@ -1968,14 +1975,17 @@ msgid "Use defaults" msgstr "Käytä oletusasetuksia" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Palauta oletusulkonäkö." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Palauta oletusulkoasu." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Tallenna ulkoasu." @@ -2307,6 +2317,7 @@ msgstr "Poista suosikeista." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Suosituimmat päivitykset" @@ -2344,6 +2355,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Käyttäjän %s suosikkipäivitykset" @@ -2356,6 +2369,7 @@ msgstr "Käyttäjän %1$s suosikit palvelussa %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Esittelyssä olevat käyttäjät" @@ -3622,7 +3636,6 @@ msgid "Password saved." msgstr "Salasana tallennettu." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Polut" @@ -4168,6 +4181,7 @@ msgid "Public timeline, page %d" msgstr "Julkinen aikajana, sivu %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Julkinen aikajana" @@ -4657,6 +4671,8 @@ msgstr "Luotu" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Vastaukset käyttäjälle %s" @@ -4768,6 +4784,7 @@ msgid "System error uploading file." msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Kaikki jäsenet" @@ -5856,7 +5873,7 @@ msgstr "Koko ei kelpaa." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. #, fuzzy msgctxt "TITLE" msgid "User" @@ -5880,6 +5897,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profiili" @@ -5986,7 +6006,6 @@ msgid "Subscription authorized" msgstr "Tilaus sallittu" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6001,7 +6020,6 @@ msgid "Subscription rejected" msgstr "Tilaus hylätty" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6136,7 +6154,6 @@ msgid "Contributors" msgstr "" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Lisenssi" @@ -6165,7 +6182,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "" @@ -6600,7 +6616,9 @@ msgstr "Vastaus" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Päivitys poistettu." @@ -6719,8 +6737,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Hae päivityksien sisällöstä" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Käyttäjää ei ole." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6772,90 +6791,138 @@ msgstr "Komentoa ei ole vielä toteutettu." msgid "Unable to delete design setting." msgstr "Twitter-asetuksia ei voitu tallentaa!" +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Kotisivu" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Kotisivu" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Ylläpito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Basic site configuration" msgstr "Sähköpostiosoitteen vahvistus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Kutsu" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Design configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Ulkoasu" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "User configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Käyttäjä" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Access configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Käyttöoikeudet" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Paths configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Polut" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Sessions configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" -msgstr "" +msgstr "Omat" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Edit site notice" msgstr "Palvelun ilmoitus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Palvelun ilmoitus" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Snapshots" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Lisenssi" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "SMS vahvistus" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Liitännäiset" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6864,6 +6931,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6900,10 +6968,12 @@ msgstr "" msgid "Could not issue access token." msgstr "Viestin tallennus ei onnistunut." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error inserting OAuth application user." msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" @@ -7006,6 +7076,13 @@ msgstr "Peruuta" msgid "Save" msgstr "Tallenna" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Tuntematon toiminto" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7028,12 +7105,13 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "Poista" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7207,6 +7285,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7541,9 +7621,14 @@ msgstr "" msgid "Go to the installer." msgstr "Kirjaudu sisään palveluun" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Tietokantavirhe" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Julkinen" @@ -7555,6 +7640,7 @@ msgstr "Poista" msgid "Delete this user" msgstr "Poista käyttäjä" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Ryhmän ulkoasu" @@ -7567,16 +7653,6 @@ msgstr "Vaihda väriä" msgid "Use defaults" msgstr "Käytä oletusasetuksia" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs" -msgstr "Käytä oletusasetuksia" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default" -msgstr "Käytä oletusasetuksia" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. #, fuzzy @@ -7586,7 +7662,7 @@ msgstr "Lataa" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7601,11 +7677,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Off" -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design" -msgstr "Ryhmän ulkoasu" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7643,48 +7714,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Lisää suosikiksi" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Kaikki jäsenet" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Kaikki" +#. TRANS: Fieldset legend on gallery action page. #, fuzzy msgid "Select tag to filter" msgstr "Valitse operaattori" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Tagi" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Valitse tagi lyhentääksesi listaa" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Mene" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7746,9 +7831,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Käyttäjänä alkaen" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7815,6 +7902,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Admin" @@ -7916,23 +8004,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Eroa" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Login" @@ -8230,6 +8335,7 @@ msgstr "" msgid "Inbox" msgstr "Saapuneet" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Sinulle saapuneet viestit" @@ -8465,15 +8571,42 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "Ei voitu lisätä uutta tilausta." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profiili" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Sinun profiilisi" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Vastaukset" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Suosikit" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Käyttäjä" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Viesti" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8498,29 +8631,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Profiilikuva-asetukset" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Vaihda profiiliasetuksesi" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "SMS vahvistus" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Kirjaudu ulos" msgid "Logout from the site" msgstr "Kirjaudu sisään" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Kirjaudu sisään" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Haku" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Haku" @@ -8570,15 +8716,36 @@ msgstr "Kaikki ryhmät" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Ryhmät" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Käyttäjäryhmät" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Viimeaikaiset tagit" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Viimeaikaiset tagit" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Esittelyssä" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Suosituimmat" @@ -8629,54 +8796,81 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Henkilö" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Hae ihmisiä tältä sivustolta" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Päivitykset" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Hae päivityksien sisällöstä" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Etsi ryhmiä tästä palvelusta" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Ohjeet" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Tietoa" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "UKK" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Yksityisyys" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Lähdekoodi" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. #, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Omat" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Ota yhteyttä" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. #, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Tönäise" @@ -8686,38 +8880,88 @@ msgstr "Nimetön osa" msgid "More..." msgstr "Lisää..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Profiilikuva-asetukset" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Vaihda profiiliasetuksesi" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Kuva" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Lataa kuva" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Salasana" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Vaihda salasanasi" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Sähköposti" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Muuta sähköpostin käsittelyasetuksia." +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Design your profile" msgstr "Käyttäjän profiili" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "Pikaviestin" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Päivitykset pikaviestintä käyttäen (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Päivitykset SMS:llä" +#. TRANS: Menu item in settings navigation panel. #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Yhdistä" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "" @@ -8729,12 +8973,6 @@ msgstr "Palvelun ilmoitus" msgid "Silence this user" msgstr "Estä tämä käyttäjä" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profiili" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8760,6 +8998,7 @@ msgid "People subscribed to %s." msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8770,12 +9009,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Ryhmät" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -9054,24 +9287,18 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Tätä päivitystä ei voi poistaa." +#, fuzzy +#~ msgid "Restore default designs" +#~ msgstr "Käytä oletusasetuksia" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" -#~ msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi" +#~ msgid "Reset back to default" +#~ msgstr "Käytä oletusasetuksia" #, fuzzy -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" +#~ msgid "Save design" +#~ msgstr "Ryhmän ulkoasu" -#~ msgid "%1$s, page %2$d" -#~ msgstr "Ryhmät, sivu %d" - -#~ msgid "Error repeating notice." -#~ msgstr "Virhe tapahtui käyttäjän asettamisessa." +#, fuzzy +#~ msgid "Not an atom feed." +#~ msgstr "Kaikki jäsenet" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index baccf9cf13..f6dc006b75 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -23,20 +23,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Accès" @@ -147,6 +146,7 @@ msgstr "Page non trouvée." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Utilisateur non trouvé." @@ -160,6 +160,12 @@ msgstr "%1$s et ses amis, page %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s et ses amis" @@ -289,6 +295,7 @@ msgstr "Impossible de mettre à jour l’utilisateur." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Aucun profil ne correspond à cet utilisateur." @@ -2020,16 +2027,19 @@ msgid "Use defaults" msgstr "Utiliser les valeurs par défaut" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restaurer les conceptions par défaut" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Revenir aux valeurs par défaut" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Sauvegarder la conception" @@ -2363,6 +2373,7 @@ msgstr "Retirer ce favori" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Avis populaires" @@ -2404,6 +2415,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Avis favoris de %s" @@ -2416,6 +2429,7 @@ msgstr "Mises à jour privilégiées par %1$s sur %2$s !" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Utilisateurs en vedette" @@ -3707,7 +3721,6 @@ msgid "Password saved." msgstr "Mot de passe enregistré." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Chemins" @@ -4231,6 +4244,7 @@ msgid "Public timeline, page %d" msgstr "Flux public - page %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Flux public" @@ -4728,6 +4742,8 @@ msgstr "Repris !" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Réponses à %s" @@ -4845,6 +4861,7 @@ msgid "System error uploading file." msgstr "Erreur système lors du transfert du fichier." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Tous les membres" @@ -5973,7 +5990,7 @@ msgstr "Contenu de l’avis invalide." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Utilisateur" @@ -5996,6 +6013,9 @@ msgstr "Texte de bienvenue invalide. La taille maximale est de 255 caractères." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6096,7 +6116,6 @@ msgid "Subscription authorized" msgstr "Abonnement autorisé" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6111,7 +6130,6 @@ msgid "Subscription rejected" msgstr "Abonnement refusé" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6253,7 +6271,6 @@ msgid "Contributors" msgstr "Contributeurs" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licence" @@ -6292,7 +6309,6 @@ msgstr "" "avec ce programme. Si ce n’est pas le cas, consultez %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Extensions" @@ -6726,7 +6742,9 @@ msgstr "Répondre" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6850,8 +6868,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Chercher dans le contenu des avis" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Utilisateur non trouvé." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6898,80 +6917,129 @@ msgstr "saveSettings() n’a pas été implémentée." msgid "Unable to delete design setting." msgstr "Impossible de supprimer les paramètres de conception." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Site personnel" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Site personnel" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrer" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuration basique du site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuration de la conception" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Conception" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuration utilisateur" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Utilisateur" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuration d’accès" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accès" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuration des chemins" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Chemins" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuration des sessions" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Modifier l'avis du site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Notice du site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuration des instantanés" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Instantanés" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Définir la licence du site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licence" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Configuration des chemins" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Extensions" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6982,6 +7050,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Aucune demande trouvée pour cette clé de consommateur." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -7017,10 +7086,12 @@ msgstr "" msgid "Could not issue access token." msgstr "Impossible d’émettre le jeton d’accès." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Erreur de base de donnée en insérant l’utilisateur de l’application OAuth" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "" @@ -7121,6 +7192,13 @@ msgstr "Annuler" msgid "Save" msgstr "Enregistrer" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Action inconnue" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " par " @@ -7143,11 +7221,12 @@ msgstr "Accès « %2$s » approuvé le %1$s." msgid "Access token starting with: %s" msgstr "Jeton d’accès qui commence par : %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Révoquer" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #, fuzzy msgid "Author element must contain a name element." msgstr "l’élément « author » doit contenir un élément « name »." @@ -7321,6 +7400,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7655,9 +7736,14 @@ msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème." msgid "Go to the installer." msgstr "Aller au programme d’installation" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Erreur de la base de données" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Public" @@ -7669,6 +7755,7 @@ msgstr "Supprimer" msgid "Delete this user" msgstr "Supprimer cet utilisateur" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Sauvegarder la conception" @@ -7681,22 +7768,15 @@ msgstr "Modifier les couleurs" msgid "Use defaults" msgstr "Utiliser les valeurs par défaut" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Restaurer les conceptions par défaut" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Revenir aux valeurs par défaut" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Importer un fichier" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Vous pouvez importer une image d’arrière plan personnelle. La taille " "maximale du fichier est de 2 Mo." @@ -7711,10 +7791,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Désactivé" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Sauvegarder la conception" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7751,47 +7827,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Ajouter à mes favoris" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Ami d’un ami" -#, fuzzy -msgid "Not an atom feed." -msgstr "Tous les membres" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Flux d’informations" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Tous" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Sélectionner une marque à filtrer" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Marque" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Choissez une marque pour réduire la liste" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Aller" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Accorder le rôle « %s » à cet utilisateur" @@ -7855,9 +7945,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membre depuis" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7924,6 +8016,7 @@ msgid "%s blocked users" msgstr "Utilisateurs bloqués du groupe « %s »" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrer" @@ -8025,23 +8118,40 @@ msgid_plural "%dB" msgstr[0] "%d o" msgstr[1] "%d o" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Source %d inconnue pour la boîte de réception." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Quitter" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Connexion" @@ -8426,6 +8536,7 @@ msgstr "" msgid "Inbox" msgstr "Boîte de réception" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Vos messages reçus" @@ -8660,15 +8771,42 @@ msgstr "Avis en doublon." msgid "Couldn't insert new subscription." msgstr "Impossible d’insérer un nouvel abonnement." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Votre profil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Réponses" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoris" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Utilisateur" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Message" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8692,29 +8830,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Paramètres SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Modifier vos paramètres de profil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Configuration utilisateur" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Déconnexion" msgid "Logout from the site" msgstr "Fermer la session" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Ouvrir une session" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Rechercher" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Rechercher sur le site" @@ -8763,15 +8914,36 @@ msgstr "Tous les groupes" msgid "Unimplemented method." msgstr "Méthode non implémentée." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Groupes" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Groupes d’utilisateurs" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Marques récentes" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Marques récentes" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "En vedette" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populaires" @@ -8815,52 +8987,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Rechercher" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Personnes" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Chercher des personnes sur ce site" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Avis" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Chercher dans le contenu des avis" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Rechercher des groupes sur ce site" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Aide" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "À propos" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "CGU" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Confidentialité" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Source" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contact" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insigne" @@ -8870,36 +9072,87 @@ msgstr "Section sans titre" msgid "More..." msgstr "Plus..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Paramètres SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Modifier vos paramètres de profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Ajouter un avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Mot de passe" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Modifier votre mot de passe" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Courriel" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Modifier le traitement des courriels" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Concevez votre profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Suivi des avis par messagerie instantanée" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Suivi des avis par SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connexions" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Applications autorisées connectées" @@ -8909,12 +9162,6 @@ msgstr "Silence" msgid "Silence this user" msgstr "Réduire cet utilisateur au silence" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8940,6 +9187,7 @@ msgid "People subscribed to %s." msgstr "Abonnés de %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8950,12 +9198,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Groupes" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8963,7 +9205,6 @@ msgid "Groups %s is a member of." msgstr "Groupes de %s" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Inviter" @@ -9239,28 +9480,15 @@ msgstr "XML invalide, racine XRD manquante." msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." -#~ msgid "Already repeated that notice." -#~ msgstr "Vous avez déjà repris cet avis." +#~ msgid "Restore default designs" +#~ msgstr "Restaurer les conceptions par défaut" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Décrivez-vous avec vos intérêts en %d caractère" -#~ msgstr[1] "Décrivez-vous avec vos intérêts en %d caractères" +#~ msgid "Reset back to default" +#~ msgstr "Revenir aux valeurs par défaut" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Décrivez vous et vos interêts" +#~ msgid "Save design" +#~ msgstr "Sauvegarder la conception" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, page %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "La licence du flux auquel vous êtes abonné(e), « %1$s », n’est pas " -#~ "compatible avec la licence du site « %2$s »." - -#~ msgid "Error repeating notice." -#~ msgstr "Erreur lors de la reprise de l’avis." +#, fuzzy +#~ msgid "Not an atom feed." +#~ msgstr "Tous les membres" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 65d07de99e..5899ca6afb 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,20 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:52+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Acceso" @@ -136,6 +135,7 @@ msgstr "Esa páxina non existe." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Non existe tal usuario." @@ -149,6 +149,12 @@ msgstr "%1$s e amigos, páxina %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amigos" @@ -277,6 +283,7 @@ msgstr "Non se puido actualizar o usuario." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "O usuario non ten perfil." @@ -1672,7 +1679,7 @@ msgstr "Non pode borrar usuarios." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." -msgstr "" +msgstr "Estou seguro." #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. @@ -2008,16 +2015,19 @@ msgid "Use defaults" msgstr "Utilizar os valores por defecto" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restaurar o deseño por defecto" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Volver ao deseño por defecto" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Gardar o deseño" @@ -2359,6 +2369,7 @@ msgstr "Desmarcar como favorita" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Notas populares" @@ -2398,6 +2409,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Notas favoritas de %s" @@ -2410,6 +2423,7 @@ msgstr "Actualizacións favoritas de %1$s en %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usuarios do momento" @@ -3692,7 +3706,6 @@ msgid "Password saved." msgstr "Gardouse o contrasinal." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Rutas" @@ -4231,6 +4244,7 @@ msgid "Public timeline, page %d" msgstr "Liña do tempo pública, páxina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Liña do tempo pública" @@ -4732,6 +4746,8 @@ msgstr "Repetida!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respostas a %s" @@ -4847,6 +4863,7 @@ msgid "System error uploading file." msgstr "Houbo un erro no sistema ao cargar o ficheiro." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Todos os membros" @@ -5974,7 +5991,7 @@ msgstr "O contido da nota é incorrecto." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usuario" @@ -5998,6 +6015,9 @@ msgstr "Texto de benvida incorrecto. A extensión máxima é de 255 caracteres." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscrición por defecto incorrecta. \"%1$s\" non é un usuario." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -6251,7 +6271,6 @@ msgid "Contributors" msgstr "Colaboradores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenza" @@ -6290,7 +6309,6 @@ msgstr "" "programa. En caso contrario, vexa %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Complementos" @@ -6721,7 +6739,9 @@ msgstr "Responder" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6846,8 +6866,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Buscar nos contidos das notas" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Non existe tal usuario." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6894,80 +6915,129 @@ msgstr "saveSettings() non está integrado." msgid "Unable to delete design setting." msgstr "Non se puido borrar a configuración do deseño." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Inicio" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Inicio" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrador" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuración básica do sitio" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuración do deseño" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Deseño" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuración do usuario" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Usuario" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuración de acceso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acceso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuración das rutas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Rutas" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuración das sesións" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sesións" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Modificar a nota do sitio" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Nota do sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuración das instantáneas" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Instantáneas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Definir a licenza do sitio" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenza" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Configuración das rutas" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Complementos" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6978,6 +7048,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Non hai ningunha aplicación para esa clave." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -7014,11 +7085,13 @@ msgstr "" msgid "Could not issue access token." msgstr "Non se puido inserir a mensaxe." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Houbo un erro na base de datos ao intentar inserir o usuario da aplicación " "OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "" @@ -7119,6 +7192,13 @@ msgstr "Cancelar" msgid "Save" msgstr "Gardar" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Non se coñece esa acción" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7141,11 +7221,12 @@ msgstr "Aprobado o %1$s - permisos de \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #, fuzzy msgid "Author element must contain a name element." msgstr "o elemento \"autor\" debe conter un nome." @@ -7322,6 +7403,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7652,9 +7735,14 @@ msgstr "Pode que queira executar o instalador para arranxalo." msgid "Go to the installer." msgstr "Ir ao instalador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Houbo un erro na base de datos" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Públicas" @@ -7666,6 +7754,7 @@ msgstr "Borrar" msgid "Delete this user" msgstr "Borrar o usuario" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Gardar o deseño" @@ -7678,14 +7767,6 @@ msgstr "Cambiar as cores" msgid "Use defaults" msgstr "Utilizar os valores por defecto" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Restaurar o deseño por defecto" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Volver ao deseño por defecto" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7694,7 +7775,7 @@ msgstr "Cargar un ficheiro" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Pode cargar a súa imaxe de fondo persoal. O ficheiro non pode ocupar máis de " "2MB." @@ -7711,10 +7792,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desactivado" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Gardar o deseño" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7751,47 +7828,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Marcar como favorito" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Amigo dun amigo" -#, fuzzy -msgid "Not an atom feed." -msgstr "Todos os membros" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Fontes de novas" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Todas" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Escolla unha etiqueta a filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiqueta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Escolla unha etiqueta para reducir a lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Continuar" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Outorgarlle a este usuario o rol \"%s\"" @@ -7857,9 +7948,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membro dende" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7926,6 +8019,7 @@ msgid "%s blocked users" msgstr "Usuarios bloqueados en %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrador" @@ -8026,23 +8120,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Non se coñece a fonte %d da caixa de entrada." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Deixar" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Identificarse" @@ -8424,6 +8535,7 @@ msgstr "" msgid "Inbox" msgstr "Caixa de entrada" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "As mensaxes recibidas" @@ -8659,16 +8771,43 @@ msgstr "Nota duplicada." msgid "Couldn't insert new subscription." msgstr "Non se puido inserir unha subscrición nova." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Perfil do grupo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respostas" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritas" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Usuario" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mensaxe" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8692,19 +8831,25 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Configuración dos SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Cambie a configuración do seu perfil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Configuración do usuario" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Saír" @@ -8712,13 +8857,18 @@ msgstr "Saír" msgid "Logout from the site" msgstr "Saír ao anonimato" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Login to the site" msgstr "Identificarse no sitio" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Buscar" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Buscar no sitio" @@ -8767,15 +8917,36 @@ msgstr "Todos os grupos" msgid "Unimplemented method." msgstr "Aínda non se implantou o método." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupos do usuario" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Últimas etiquetas" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Últimas etiquetas" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Salientadas" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populares" @@ -8820,52 +8991,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Procurar" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Xente" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Atopar xente neste sitio" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notas" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Buscar nos contidos das notas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Buscar grupos neste sitio" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Axuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Acerca de" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Preguntas máis frecuentes" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Condicións do servicio" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Protección de datos" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Código fonte" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versión" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contacto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insignia" @@ -8875,36 +9076,87 @@ msgstr "Sección sen título" msgid "More..." msgstr "Máis..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Configuración dos SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Cambie a configuración do seu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Cargue un avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Contrasinal" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Cambie o seu contrasinal" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Correo electrónico" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Cambie a xestión do correo electrónico" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Deseñe o seu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualizacións por mensaxería instantánea (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualizacións por SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conexións" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicacións conectadas autorizadas" @@ -8914,12 +9166,6 @@ msgstr "Silenciar" msgid "Silence this user" msgstr "Silenciar a este usuario" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Perfil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8945,6 +9191,7 @@ msgid "People subscribed to %s." msgstr "Persoas subscritas a %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8955,12 +9202,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Grupos" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8968,7 +9209,6 @@ msgid "Groups %s is a member of." msgstr "Grupos aos que pertence %s" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convidar" @@ -9244,30 +9484,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Xa repetiu esa nota." +#~ msgid "Restore default designs" +#~ msgstr "Restaurar o deseño por defecto" + +#~ msgid "Reset back to default" +#~ msgstr "Volver ao deseño por defecto" + +#~ msgid "Save design" +#~ msgstr "Gardar o deseño" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Descríbase a vostede e mailos seus intereses en %d caracteres" -#~ msgstr[1] "Descríbase a vostede e mailos seus intereses en %d caracteres" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Descríbase a vostede e mailos seus intereses" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "" -#~ "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, páxina %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "A licenza \"%1$s\" das transmisións da persoa seguida non é compatible " -#~ "coa licenza deste sitio: \"%2$s\"." - -#~ msgid "Error repeating notice." -#~ msgstr "Houbo un erro ao repetir a nota." +#~ msgid "Not an atom feed." +#~ msgstr "Todos os membros" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 249f9e92d0..a0cdd68ad9 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,21 +11,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:53+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Přistup" @@ -136,6 +135,7 @@ msgstr "Strona njeeksistuje." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Wužiwar njeeksistuje" @@ -149,6 +149,12 @@ msgstr "%1$s a přećeljo, strona %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s a přećeljo" @@ -269,6 +275,7 @@ msgstr "Wužiwar njeje so dał aktualizować." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Wužiwar nima profil." @@ -1934,14 +1941,17 @@ msgid "Use defaults" msgstr "Standardne hódnoty wužiwać" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Standardne designy wobnowić." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Na standard wróćo stajić." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Design składować." @@ -2263,6 +2273,7 @@ msgstr "Z faworitow wotstronić." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Woblubowane zdźělenki" @@ -2298,6 +2309,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Fawority wužiwarja %s" @@ -2310,6 +2323,7 @@ msgstr "Aktualizacije preferowane wot %1$s na %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Nazhonići wužiwarjo" @@ -3510,7 +3524,6 @@ msgid "Password saved." msgstr "Hesło składowane." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Šćežki" @@ -4019,6 +4032,7 @@ msgid "Public timeline, page %d" msgstr "Zjawna časowa lajsta, strona %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "" @@ -4455,6 +4469,8 @@ msgstr "Wospjetowany!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Wotmołwy na %s" @@ -4559,6 +4575,7 @@ msgid "System error uploading file." msgstr "Systemowy zmylk při nahrawanju dataje." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "To Atomowy kanal njeje." @@ -5608,7 +5625,7 @@ msgstr "Njepłaćiwy wobsah zdźělenki." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Wužiwar" @@ -5631,6 +5648,9 @@ msgstr "Njepłaćiwy powitanski tekst. Maksimalna dołhosć je 255 znamješkow." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Njepłaćiwy standardny abonement: \"%1$s\" wužiwar njeje." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -5862,7 +5882,6 @@ msgid "Contributors" msgstr "Sobuskutkowarjo" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenca" @@ -5891,7 +5910,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Tykače" @@ -6314,7 +6332,9 @@ msgstr "Wotmołwić" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6425,8 +6445,9 @@ msgstr "" msgid "No content for notice %s." msgstr "!Žadyn wobsah za powěsć %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Wužiwar %s njeeksistuje." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6473,81 +6494,129 @@ msgstr "saveSettings() njeimplementowany." msgid "Unable to delete design setting." msgstr "Njeje móžno, designowe nastajenje zhašeć." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. #, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Startowa strona" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Startowa strona" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrator" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Zakładna sydłowa konfiguracija" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sydło" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Designowa konfiguracija" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Design" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Wužiwarska konfiguracija" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Wužiwar" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Přistupna konfiguracija" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Přistup" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Konfiguracija šćežkow" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Šćežki" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Konfiguracija posedźenjow" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Posedźenja" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Sydłowu zdźělenku wobdźěłać" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Sydłowa zdźělenka" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Konfiguracija wobrazowkowych fotow" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Njejapke fota" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Licencu sydła nastajić" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenca" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Konfiguracija šćežkow" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Tykače" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6556,6 +6625,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Žana aplikacija za tón kluč přetrjebowarja." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6589,9 +6659,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Přistupny token njeda so wudać." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "Zmylk datoweje banki při aktualizowanju wužiwarja OAuth-aplikacije." @@ -6690,6 +6762,13 @@ msgstr "Přetorhnyć" msgid "Save" msgstr "Składować" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Njeznata akcija" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "wot " @@ -6712,11 +6791,12 @@ msgstr "%1$s schwalene - přistup \"%2$s\"" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Wotwołać" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Element \"author\" dyrbi element \"name\" wobsahować." @@ -6886,6 +6966,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7232,9 +7314,14 @@ msgstr "Móže być, zo chceš instalaciski program startować, zo by to porjed msgid "Go to the installer." msgstr "K instalaciji" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Zmylk w datowej bance" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Zjawny" @@ -7246,6 +7333,7 @@ msgstr "Zničić" msgid "Delete this user" msgstr "Tutoho wužiwarja wušmórnyć" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Design składować" @@ -7258,14 +7346,6 @@ msgstr "Barby změnić" msgid "Use defaults" msgstr "Standardne hódnoty wužiwać" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Standardne designy wobnowić" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Na standard wróćo stajić" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7274,7 +7354,7 @@ msgstr "Dataju nahrać" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Móžeš swój wosobinski pozadkowy wobraz nahrać. Maksimalna datajowa wulkosć " "je 2 MB." @@ -7289,10 +7369,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Wupinjeny" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Design składować" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7327,46 +7403,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Faworit" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "To Atomowy kanal njeje." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Žadyn awtor w kanalu njeje." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Import bjez wužiwarja njemóžno." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Kanale" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Wšě" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Start" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Tutomu wužiwarjej rólu \"%s\" dać" @@ -7430,9 +7521,11 @@ msgstr[3] "" msgid "Membership policy" msgstr "Čłon wot" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7501,6 +7594,7 @@ msgid "%s blocked users" msgstr "Zablokowani wužiwarjo skupiny %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -7609,23 +7703,40 @@ msgstr[1] "%d B" msgstr[2] "%d B" msgstr[3] "%d B" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Njeznate žórło postoweho kašćika %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Wopušćić" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Přizjewjenje" @@ -7909,6 +8020,7 @@ msgstr "" msgid "Inbox" msgstr "Dochadny póst" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Twoje dochadźace powěsće" @@ -8142,16 +8254,42 @@ msgstr "Dwójna zdźělenka." msgid "Couldn't insert new subscription." msgstr "Nowy abonement njeda so zasunyć." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Skupinski profil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Wotmołwy" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Fawority" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Wužiwar" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Powěsće" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8175,19 +8313,25 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS-nastajenja" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Twoje profilowe nastajenja změnić" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Wužiwarska konfiguracija" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Wotzjewić" @@ -8195,13 +8339,18 @@ msgstr "Wotzjewić" msgid "Logout from the site" msgstr "Ze sydła wotzjewić" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Login to the site" msgstr "Při sydle přizjewić" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Pytać" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Pytanske sydło" @@ -8250,15 +8399,35 @@ msgstr "Wšě skupiny" msgid "Unimplemented method." msgstr "Njeimplementowana metoda." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Skupiny" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Wužiwarske skupiny" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Recent tags" msgstr "" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Wuběrne" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Woblubowany" @@ -8302,52 +8471,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Pytać" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Ludźo" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Ludźi na tutym sydle pytać" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Zdźělenki" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Wobsah zdźělenkow přepytać" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Skupiny na tutym sydle pytać" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Pomoc" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Wo" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Huste prašenja" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Wužiwarske wuměnjenja" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Priwatnosć" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Žórło" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Wersija" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Plaketa" @@ -8357,36 +8556,87 @@ msgstr "Wotrězk bjez titula" msgid "More..." msgstr "Wjace..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS-nastajenja" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Twoje profilowe nastajenja změnić" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Awatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Awatar nahrać" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Hesło" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Twoje hesło změnić" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mejl" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Twój profil wuhotować" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Aktualizacije přez Instant Messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Aktualizacije přez SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Zwiski" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Awtorizowane zwjazane aplikacije" @@ -8396,12 +8646,6 @@ msgstr "Hubu zatykać" msgid "Silence this user" msgstr "Tutomu wužiwarjej hubu zatykać" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8427,6 +8671,7 @@ msgid "People subscribed to %s." msgstr "Ludźo, kotřiž su %s abonowali" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8437,12 +8682,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Skupiny" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8450,7 +8689,6 @@ msgid "Groups %s is a member of." msgstr "Skupiny, w kotrychž %s je čłon" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Přeprosyć" @@ -8732,24 +8970,14 @@ msgstr "Njepłaćiwy XML, korjeń XRD faluje." msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" -#~ msgid "Already repeated that notice." -#~ msgstr "Tuta zdźělenka bu hižo wospjetowana." +#~ msgid "Restore default designs" +#~ msgstr "Standardne designy wobnowić" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Wopisaj sebje a swoje zajimy z %d znamješkom" -#~ msgstr[1] "Wopisaj sebje a swoje zajimy z %d znamješkomaj" -#~ msgstr[2] "Wopisaj sebje a swoje zajimy z %d znamješkami" -#~ msgstr[3] "Wopisaj sebje a swoje zajimy z %d znamješkami" +#~ msgid "Reset back to default" +#~ msgstr "Na standard wróćo stajić" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Wopisaj sebje a swoje zajimy" +#~ msgid "Save design" +#~ msgstr "Design składować" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, strona %2$d" - -#~ msgid "Error repeating notice." -#~ msgstr "Zmylk při wospjetowanju zdźělenki" +#~ msgid "Not an atom feed." +#~ msgstr "To Atomowy kanal njeje." diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 6b14922cb2..1e2016da7c 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,20 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:55+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Hozzáférés" @@ -138,6 +137,7 @@ msgstr "Nincs ilyen lap." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Nincs ilyen felhasználó." @@ -151,6 +151,12 @@ msgstr "%1$s és barátai, %2$d oldal" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s és barátai" @@ -273,6 +279,7 @@ msgstr "Nem sikerült frissíteni a felhasználót." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "A felhasználónak nincs profilja." @@ -1994,16 +2001,19 @@ msgid "Use defaults" msgstr "Alapértelmezések használata" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Alapértelmezések használata" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Visszaállítás az alapértelmezettre" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Design mentése" @@ -2341,6 +2351,7 @@ msgstr "Kedvenc eltávolítása" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Népszerű hírek" @@ -2378,6 +2389,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s kedvenc hírei" @@ -2390,6 +2403,7 @@ msgstr "" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Kiemelt felhasználók" @@ -3608,7 +3622,6 @@ msgid "Password saved." msgstr "Jelszó elmentve." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Útvonalak" @@ -4148,6 +4161,7 @@ msgid "Public timeline, page %d" msgstr "Közösségi történet, %d. oldal" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Közösségi történet" @@ -4599,6 +4613,8 @@ msgstr "" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "" @@ -4706,6 +4722,7 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Összes tag" @@ -5770,7 +5787,7 @@ msgstr "Érvénytelen megjegyzéstartalom." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "" @@ -5794,6 +5811,9 @@ msgstr "Érvénytelen SSL szerver. A maximális hossz 255 karakter." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6031,7 +6051,6 @@ msgid "Contributors" msgstr "Közreműködők" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenc" @@ -6060,7 +6079,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "" @@ -6478,7 +6496,9 @@ msgstr "Válasz" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6592,8 +6612,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Keressünk a hírek tartalmában" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Nincs ilyen felhasználó." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6640,80 +6661,128 @@ msgstr "" msgid "Unable to delete design setting." msgstr "Nem sikerült törölni a megjelenés beállításait." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Otthon" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Otthon" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Adminisztrátor" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "A webhely elemi beállításai" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "A megjelenés beállításai" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "A felhasználók beállításai" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Felhasználó" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "A jogosultságok beállításai" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Hozzáférés" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Az útvonalak beállításai" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Útvonalak" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Munkamenetek beállításai" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Munkamenetek" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "A webhely híre" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Pillanatképek" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenc" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Az útvonalak beállításai" +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Plugins" +msgstr "" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6722,6 +6791,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6758,9 +6828,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Nem sikerült az üzenetet feldolgozni." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" @@ -6857,6 +6929,13 @@ msgstr "Mégse" msgid "Save" msgstr "Mentés" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Ismeretlen művelet" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6879,11 +6958,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7057,6 +7137,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7377,9 +7459,13 @@ msgstr "A telepítő futtatása kijavíthatja ezt." msgid "Go to the installer." msgstr "Menj a telepítőhöz." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Adatbázishiba" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Public" msgstr "" @@ -7391,6 +7477,7 @@ msgstr "Törlés" msgid "Delete this user" msgstr "Töröljük ezt a felhasználót" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Design mentése" @@ -7403,14 +7490,6 @@ msgstr "Színek megváltoztatása" msgid "Use defaults" msgstr "Alapértelmezések használata" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Visszaállítás az alapértelmezettre" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7419,7 +7498,7 @@ msgstr "Fájl feltöltése" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s lehet." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7434,10 +7513,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Ki" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Design mentése" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7474,47 +7549,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Kedvelem" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -#, fuzzy -msgid "Not an atom feed." -msgstr "Összes tag" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Összes" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Válassz egy címkét amire szűrjünk" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Címke" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Válassz egy címkét hogy szűkítsük a listát" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Menjünk" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7580,9 +7669,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Tagság kezdete:" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7649,6 +7740,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "" @@ -7749,23 +7841,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Távozzunk" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "" @@ -8112,6 +8221,7 @@ msgstr "" msgid "Inbox" msgstr "Homokozó" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "A bejövő üzeneteid" @@ -8343,16 +8453,43 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "" +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Csoportprofil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Válaszok" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Kedvencek" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Felhasználó" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Üzenet" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8376,30 +8513,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS beállítások" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Változtasd meg a jelszavad" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "A felhasználók beállításai" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Kijelentkezés" msgid "Logout from the site" msgstr "Kijelentkezés a webhelyről" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Bejelentkezés a webhelyre" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Keresés" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "A webhely témája." @@ -8448,15 +8597,35 @@ msgstr "Összes csoport" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Csoportok" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "A felhasználó csoportjai" +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Recent tags" msgstr "" -msgid "Featured" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Featured" +msgstr "Kiemelt felhasználók" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Népszerű" @@ -8501,54 +8670,84 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" -msgstr "" +msgstr "Emberek keresése" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Emberek keresése az oldalon" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Hírek" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Keressünk a hírek tartalmában" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Csoportok keresése az oldalon" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Súgó" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Névjegy" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "GyIK" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Felhasználási feltételek" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" -msgstr "" +msgstr "Privát" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Forrás" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" -msgstr "" +msgstr "Munkamenetek" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kapcsolat" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" -msgstr "" +msgstr "Megbök" msgid "Untitled section" msgstr "Névtelen szakasz" @@ -8556,36 +8755,86 @@ msgstr "Névtelen szakasz" msgid "More..." msgstr "Tovább…" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS beállítások" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Avatar feltöltése" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Jelszó" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Változtasd meg a jelszavad" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Email kezelés megváltoztatása" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL-cím" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Kapcsolatok" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "" @@ -8595,12 +8844,6 @@ msgstr "" msgid "Silence this user" msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8626,6 +8869,7 @@ msgid "People subscribed to %s." msgstr "Már feliratkoztál!" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8636,12 +8880,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Csoportok" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8919,20 +9157,12 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Már megismételted azt a hírt." +#~ msgid "Reset back to default" +#~ msgstr "Visszaállítás az alapértelmezettre" + +#~ msgid "Save design" +#~ msgstr "Design mentése" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" -#~ msgstr[1] "Jellemezd önmagad és az érdeklődési köröd %d karakterben" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Jellemezd önmagad és az érdeklődési köröd" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\"" - -#~ msgid "Error repeating notice." -#~ msgstr "Hiba a hír ismétlésekor." +#~ msgid "Not an atom feed." +#~ msgstr "Összes tag" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index f786d1dd25..e148bcd033 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,20 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Accesso" @@ -133,6 +132,7 @@ msgstr "Pagina non existe." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Iste usator non existe." @@ -146,6 +146,12 @@ msgstr "%1$s e amicos, pagina %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amicos" @@ -274,6 +280,7 @@ msgstr "Non poteva actualisar le usator." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Le usator non ha un profilo." @@ -1144,33 +1151,32 @@ msgid "Join request canceled." msgstr "Requesta de adhesion cancellate." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "%s non es in le cauda de moderation pro iste gruppo." +msgstr "%s non es in le cauda de moderation pro tu subscriptiones." #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." msgstr "" -"Non poteva cancellar le requesta de adhesion del usator %1$s al gruppo %2$s." +"Non poteva cancellar o approbar le requesta de adhesion del usator %1$s al " +"gruppo %2$s." #. TRANS: Title for subscription approval ajax return #. TRANS: %1$s is the approved user's nickname -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request" -msgstr "Le requesta de %1$s pro %2$s" +msgstr "Le requesta de %1$s" #. TRANS: Message on page for user after approving a subscription request. -#, fuzzy msgid "Subscription approved." -msgstr "Subscription autorisate" +msgstr "Subscription approbate." #. TRANS: Message on page for user after rejecting a subscription request. -#, fuzzy msgid "Subscription canceled." -msgstr "Autorisation cancellate." +msgstr "Subscription cancellate." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1207,7 +1213,7 @@ msgstr "Es ja favorite." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "Group memberships of %s" msgstr "Membratos del gruppo %s" @@ -1571,7 +1577,6 @@ msgid "No profile with that ID." msgstr "Non existe un profilo con iste ID." #. TRANS: Title after unsubscribing from a group. -#, fuzzy msgctxt "TITLE" msgid "Unsubscribed" msgstr "Subscription cancellate" @@ -1971,14 +1976,17 @@ msgid "Use defaults" msgstr "Usar predefinitiones" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Restaurar apparentias predefinite." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Revenir al predefinitiones." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Salveguardar apparentia." @@ -2308,6 +2316,7 @@ msgstr "Disfavorir favorite." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Notas popular" @@ -2348,6 +2357,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Notas favorite de %s" @@ -2360,6 +2371,7 @@ msgstr "Actualisationes favorite per %1$s in %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usatores in evidentia" @@ -3601,7 +3613,6 @@ msgid "Password saved." msgstr "Contrasigno salveguardate." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Camminos" @@ -4024,26 +4035,24 @@ msgstr "" "humanos)." #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. -#, fuzzy msgid "Subscription policy" -msgstr "Subscriptiones" +msgstr "Politica de subscription" #. TRANS: Dropdown field option for following policy. -#, fuzzy msgid "Let anyone follow me" -msgstr "Pote solmente sequer personas." +msgstr "Permitter a omnes de sequer me" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" -msgstr "" +msgstr "Demandar me lo primo" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." -msgstr "" +msgstr "Si altere usatores require tu permission pro sequer te." #. TRANS: Checkbox label in profile settings. msgid "Make updates visible only to my followers" -msgstr "" +msgstr "Render actualisationes visibile solmente a mi sequitores" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed @@ -4075,9 +4084,10 @@ msgstr "Etiquetta invalide: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." -msgstr "Non poteva actualisar le usator pro autosubscription." +msgstr "" +"Non poteva actualisar autosubscription o politica de subscription in le " +"conto del usator." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." @@ -4115,6 +4125,7 @@ msgid "Public timeline, page %d" msgstr "Chronologia public, pagina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Chronologia public" @@ -4587,6 +4598,8 @@ msgstr "Repetite!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Responsas a %s" @@ -4699,6 +4712,7 @@ msgid "System error uploading file." msgstr "Error de systema durante le incargamento del file." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Non es un syndication Atom." @@ -5013,9 +5027,8 @@ msgid "Message from %1$s on %2$s" msgstr "Message de %1$s in %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "Messageria instantanee non disponibile." +msgstr "Non disponibile." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5023,21 +5036,21 @@ msgstr "Nota delite." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "%1$s etiquettate con %2$s" +msgstr "Notas per %1$s etiquettate con %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "%1$s etiquettate con %2$s, pagina %3$d" +msgstr "Notas per %1$s etiquettate con %2$s, pagina %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Notas etiquettate con %1$s, pagina %2$d" +msgstr "Notas per %1$s, pagina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5414,7 +5427,6 @@ msgid "No code entered." msgstr "Nulle codice entrate." #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Instantaneos" @@ -5436,7 +5448,6 @@ msgid "Invalid snapshot report URL." msgstr "Le URL pro reportar instantaneos es invalide." #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "Instantaneos" @@ -5454,32 +5465,28 @@ msgid "Data snapshots" msgstr "Instantaneos de datos" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." -msgstr "Quando inviar datos statistic al servitores de status.net" +msgstr "Quando inviar datos statistic al servitores de status.net." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequentia" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." -msgstr "Un instantaneo essera inviate a cata N accessos web" +msgstr "Un instantaneo essera inviate a cata N accessos web." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL pro reporto" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." -msgstr "Le instantaneos essera inviate a iste URL" +msgstr "Le instantaneos essera inviate a iste URL." #. TRANS: Title for button to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." -msgstr "Salveguardar configuration de instantaneos" +msgstr "Salveguardar configuration de instantaneos." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5492,24 +5499,23 @@ msgstr "Non poteva salveguardar le subscription." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "You may only approve your own pending subscriptions." -msgstr "" +msgstr "Tu pote solmente approbar le proprie subscriptiones pendente." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "Membros attendente approbation del gruppo %s" +msgstr "Subscriptores a %s attendente approbation" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "Membros attendente approbation del gruppo %1$s, pagina %2$d" +msgstr "Subscriptores de %1$s attendente approbation, pagina %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "Un lista de usatores attendente approbation a adherer a iste gruppo." +msgstr "Un lista de usatores attendente approbation a subscriber a te." #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5684,7 +5690,6 @@ msgstr "" "subscribite a te." #. TRANS: Title of "tag other users" page. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "Etiquettas" @@ -5782,12 +5787,10 @@ msgstr "" "Le servicio de accurtamento de URL es troppo longe (maximo 50 characteres)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum URL length." msgstr "Numero invalide pro longitude maxime de URL." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum notice length." msgstr "Numero invalide pro longitude maxime de nota." @@ -5797,7 +5800,7 @@ msgstr "" "Error durante le salveguarda del preferentias de usator pro le abbreviation " "de URL." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usator" @@ -5820,6 +5823,9 @@ msgstr "Texto de benvenita invalide. Longitude maxime es 255 characteres." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscription predefinite invalide: \"%1$s\" non es usator." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profilo" @@ -5912,7 +5918,6 @@ msgid "Subscription authorized" msgstr "Subscription autorisate" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -5927,7 +5932,6 @@ msgid "Subscription rejected" msgstr "Subscription rejectate" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6065,7 +6069,6 @@ msgid "Contributors" msgstr "Contributores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licentia" @@ -6104,7 +6107,6 @@ msgstr "" "insimul con iste programma. Si non, vide %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plug-ins" @@ -6283,23 +6285,20 @@ msgid "You are banned from posting notices on this site." msgstr "Il te es prohibite publicar notas in iste sito." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. -#, fuzzy msgid "Cannot repeat; original notice is missing or deleted." -msgstr "Non pote repeter tu proprie nota." +msgstr "Non pote repeter; le nota original manca o ha essite delite." #. TRANS: Client error displayed when trying to repeat an own notice. msgid "You cannot repeat your own notice." msgstr "Tu non pote repeter tu proprie nota." #. TRANS: Client error displayed when trying to repeat a non-public notice. -#, fuzzy msgid "Cannot repeat a private notice." -msgstr "Non pote repeter tu proprie nota." +msgstr "Non pote repeter un nota private." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#, fuzzy msgid "Cannot repeat a notice you cannot read." -msgstr "Non pote repeter tu proprie nota." +msgstr "Non pote repeter un nota que tu non pote leger." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." @@ -6526,6 +6525,9 @@ msgstr "Responder" msgid "Write a reply..." msgstr "Scriber un responsa..." +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Stato" @@ -6646,8 +6648,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Nulle contento pro nota %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Le usator %s non existe." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6694,79 +6697,128 @@ msgstr "saveSettings() non implementate." msgid "Unable to delete design setting." msgstr "Impossibile deler configuration de apparentia." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Initio" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Initio" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrator" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuration basic del sito" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuration del apparentia" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Apparentia" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuration del usator" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Usator" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuration del accesso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accesso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuration del camminos" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Camminos" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuration del sessiones" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessiones" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Modificar aviso del sito" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Aviso del sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuration del instantaneos" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Instantaneos" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Definir licentia del sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licentia" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Configuration del plug-ins" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Plug-ins" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6777,6 +6829,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Nulle application pro iste clave de consumitor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Uso del API non permittite." @@ -6812,11 +6865,13 @@ msgstr "" msgid "Could not issue access token." msgstr "Non poteva emitter le indicio de accesso." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Error del base de datos durante le insertion del usator del application " "OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Error del base de datos durante le actualisation del usator del application " @@ -6917,6 +6972,13 @@ msgstr "Cancellar" msgid "Save" msgstr "Salveguardar" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Action incognite" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " per " @@ -6939,11 +7001,12 @@ msgstr "Accesso \"%2$s\" approbate le %1$s." msgid "Access token starting with: %s" msgstr "Indicio de accesso comenciante con: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revocar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Le elemento \"author\" debe continer un elemento \"name\"." @@ -7114,6 +7177,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7426,9 +7491,14 @@ msgstr "Considera executar le installator pro reparar isto." msgid "Go to the installer." msgstr "Ir al installator." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Error de base de datos" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Public" @@ -7440,6 +7510,7 @@ msgstr "Deler" msgid "Delete this user" msgstr "Deler iste usator" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Cambiar de apparentia" @@ -7451,22 +7522,15 @@ msgstr "Cambiar colores" msgid "Use defaults" msgstr "Usar predefinitiones" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Restaurar apparentias predefinite" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Revenir al predefinitiones" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Incargar file" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Tu pote incargar tu imagine de fundo personal. Le dimension maximal del file " "es 2MB." @@ -7481,10 +7545,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Non active" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Salveguardar apparentia" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7519,46 +7579,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Favorir" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Amico de un amico" -msgid "Not an atom feed." -msgstr "Non es un syndication Atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Il non ha un autor in le syndication." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Non pote importar sin usator." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Syndicationes" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Totes" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Selige etiquetta a filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiquetta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Selige etiquetta pro reducer lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Ir" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Conceder le rolo \"%s\" a iste usator" @@ -7618,9 +7694,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Politica de adhesion" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "Aperte a totes" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "Administrator debe approbar tote le membros" @@ -7687,6 +7765,7 @@ msgid "%s blocked users" msgstr "%s usatores blocate" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Admin" @@ -7787,13 +7866,16 @@ msgid_plural "%dB" msgstr[0] "%dB" msgstr[1] "%dB" -#, php-format +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#, fuzzy, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" "Le usator \"%s\" de %s ha dicite que tu pseudonymo %s pertine a ille/illa. " "Si isto es correcte, tu pote confirmar lo con un clic super iste URL: %s . " @@ -7801,14 +7883,28 @@ msgstr "" "de tu navigator del web.) Si iste usator non es tu, o si tu non requestava " "iste confirmation, simplemente ignora iste message." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Fonte de cassa de entrata \"%s\" incognite" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Quitar" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Aperir session" @@ -8170,6 +8266,7 @@ msgstr "" msgid "Inbox" msgstr "Cassa de entrata" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Tu messages recipite" @@ -8400,15 +8497,41 @@ msgstr "Nota duplicate." msgid "Couldn't insert new subscription." msgstr "Non poteva inserer nove subscription." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Profilo" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Tu profilo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Responsas" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favorites" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Usator" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Messages" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8432,27 +8555,40 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Le descriptiones de plug-ins non es disponibile si disactivate.)" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Configurationes" +#. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" msgstr "Cambiar tu optiones personal" +#. TRANS: Menu item title in primary navigation panel. msgid "Site configuration" msgstr "Configuration del sito" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Clauder session" msgid "Logout from the site" msgstr "Terminar le session del sito" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Authenticar te a iste sito" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Cercar" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Cercar in le sito" @@ -8500,15 +8636,36 @@ msgstr "Tote le gruppos" msgid "Unimplemented method." msgstr "Methodo non implementate." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Gruppos de usatores" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Etiquettas recente" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etiquettas recente" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "In evidentia" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popular" @@ -8552,52 +8709,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Cercar" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Personas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Cercar personas in iste sito" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notas" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Cercar in contento de notas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Cercar gruppos in iste sito" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Adjuta" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "A proposito" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "CdS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Confidentialitate" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Fonte" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contacto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Insignia" @@ -8607,36 +8794,87 @@ msgstr "Section sin titulo" msgid "More..." msgstr "Plus…" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Configurationes" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Cambiar le optiones de tu profilo" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Incargar un avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Contrasigno" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Cambiar tu contrasigno" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Modificar le tractamento de e-mail" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Designar tu profilo" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Abbreviatores de URL" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualisationes per messageria instantanee (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualisationes per SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connexiones" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Applicationes autorisate connectite" @@ -8646,12 +8884,6 @@ msgstr "Silentiar" msgid "Silence this user" msgstr "Silentiar iste usator" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profilo" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8677,6 +8909,7 @@ msgid "People subscribed to %s." msgstr "Personas qui seque %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, fuzzy, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8687,12 +8920,6 @@ msgstr "Membro pendente" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Gruppos" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8700,7 +8927,6 @@ msgid "Groups %s is a member of." msgstr "Gruppos del quales %s es membro" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" @@ -8969,31 +9195,14 @@ msgstr "XML invalide, radice XRD mancante." msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." -#~ msgid "Already repeated that notice." -#~ msgstr "Iste nota ha ja essite repetite." +#~ msgid "Restore default designs" +#~ msgstr "Restaurar apparentias predefinite" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Describe te e tu interesses in %d character" -#~ msgstr[1] "Describe te e tu interesses in %d characteres" +#~ msgid "Reset back to default" +#~ msgstr "Revenir al predefinitiones" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Describe te e tu interesses" +#~ msgid "Save design" +#~ msgstr "Salveguardar apparentia" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, pagina %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Le licentia del fluxo que tu ascolta, ‘%1$s’, non es compatibile con le " -#~ "licentia del sito ‘%2$s’." - -#~ msgid "Invalid group join approval: not pending." -#~ msgstr "Approbation de adhesion a gruppo invalide: non pendente." - -#~ msgid "Error repeating notice." -#~ msgstr "Error durante le repetition del nota." +#~ msgid "Not an atom feed." +#~ msgstr "Non es un syndication Atom." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 9ad9dcf357..192da638cd 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,20 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:57+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Accesso" @@ -137,6 +136,7 @@ msgstr "Pagina inesistente." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Utente inesistente." @@ -150,6 +150,12 @@ msgstr "%1$s e amici, pagina %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amici" @@ -276,6 +282,7 @@ msgstr "Impossibile aggiornare l'utente." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "L'utente non ha un profilo." @@ -2021,16 +2028,19 @@ msgid "Use defaults" msgstr "Usa predefiniti" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Ripristina i valori predefiniti" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Reimposta i valori predefiniti" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Salva aspetto" @@ -2369,6 +2379,7 @@ msgstr "Rimuovi preferito" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Messaggi famosi" @@ -2410,6 +2421,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Messaggi preferiti di %s" @@ -2422,6 +2435,7 @@ msgstr "Messaggi preferiti da %1$s su %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Utenti in evidenza" @@ -3702,7 +3716,6 @@ msgid "Password saved." msgstr "Password salvata." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Percorsi" @@ -4245,6 +4258,7 @@ msgid "Public timeline, page %d" msgstr "Attività pubblica, pagina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Attività pubblica" @@ -4736,6 +4750,8 @@ msgstr "Ripetuti!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Risposte a %s" @@ -4849,6 +4865,7 @@ msgid "System error uploading file." msgstr "Errore di sistema nel caricare il file." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Tutti i membri" @@ -5967,7 +5984,7 @@ msgstr "Contenuto del messaggio non valido." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Utente" @@ -5992,6 +6009,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profilo" @@ -6090,7 +6110,6 @@ msgid "Subscription authorized" msgstr "Abbonamento autorizzato" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6105,7 +6124,6 @@ msgid "Subscription rejected" msgstr "Abbonamento rifiutato" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6244,7 +6262,6 @@ msgid "Contributors" msgstr "Collaboratori" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licenza" @@ -6283,7 +6300,6 @@ msgstr "" "disponibile assieme a questo programma. Se così non fosse, consultare %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plugin" @@ -6717,7 +6733,9 @@ msgstr "Rispondi" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6841,8 +6859,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Trova contenuto dei messaggi" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Utente inesistente." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6889,80 +6908,129 @@ msgstr "saveSettings() non implementata." msgid "Unable to delete design setting." msgstr "Impossibile eliminare le impostazioni dell'aspetto." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Pagina web" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Pagina web" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Amministra" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configurazione di base" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configurazione aspetto" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Aspetto" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configurazione utente" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Utente" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configurazione di accesso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Accesso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configurazione percorsi" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Percorsi" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configurazione sessioni" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessioni" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Modifica messaggio del sito" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Messaggio del sito" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configurazione snapshot" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Snapshot" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Imposta licenza" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licenza" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Configurazione percorsi" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Plugin" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6973,6 +7041,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Nessuna applicazione per quella chiave." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -7009,9 +7078,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Impossibile inserire il messaggio." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." @@ -7110,6 +7181,13 @@ msgstr "Annulla" msgid "Save" msgstr "Salva" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Azione sconosciuta" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7132,11 +7210,12 @@ msgstr "Approvata %1$s - Accesso \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revoca" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #, fuzzy msgid "Author element must contain a name element." msgstr "L'elemento author deve contenere un elemento name." @@ -7313,6 +7392,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7641,9 +7722,14 @@ msgstr "" msgid "Go to the installer." msgstr "Vai al programma d'installazione." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Errore del database" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Pubblico" @@ -7655,6 +7741,7 @@ msgstr "Elimina" msgid "Delete this user" msgstr "Elimina questo utente" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Salva aspetto" @@ -7667,14 +7754,6 @@ msgstr "Modifica colori" msgid "Use defaults" msgstr "Usa predefiniti" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Ripristina i valori predefiniti" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Reimposta i valori predefiniti" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7683,7 +7762,7 @@ msgstr "Carica file" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Puoi caricare la tua immagine di sfondo. La dimensione massima del file è di " "2MB." @@ -7700,10 +7779,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Off" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Salva aspetto" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7740,47 +7815,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Preferisci" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Tutti i membri" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feed" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Tutto" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Seleziona un'etichetta da filtrare" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etichetta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Scegli un'etichetta per ridurre l'elenco" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Vai" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Concedi a questo utente il ruolo \"%s\"" @@ -7842,9 +7931,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membro dal" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7911,6 +8002,7 @@ msgid "%s blocked users" msgstr "Utenti bloccati di %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Amministra" @@ -8011,23 +8103,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Sorgente casella in arrivo %d sconosciuta." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Lascia" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Accedi" @@ -8411,6 +8520,7 @@ msgstr "" msgid "Inbox" msgstr "In arrivo" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "I tuoi messaggi in arrivo" @@ -8646,16 +8756,43 @@ msgstr "Messaggio duplicato." msgid "Couldn't insert new subscription." msgstr "Impossibile inserire un nuovo abbonamento." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profilo" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Profilo del gruppo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Risposte" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Preferiti" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Utente" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Messaggio" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8679,29 +8816,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Impostazioni SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Modifica le impostazioni del tuo profilo" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Configurazione utente" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Esci" msgid "Logout from the site" msgstr "Termina la tua sessione sul sito" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Accedi al sito" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Cerca" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Cerca nel sito" @@ -8750,15 +8900,36 @@ msgstr "Tutti i gruppi" msgid "Unimplemented method." msgstr "Metodo non implementato" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppi" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Gruppi dell'utente" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Etichette recenti" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etichette recenti" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "In evidenza" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Famosi" @@ -8803,52 +8974,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Cerca" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Persone" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Trova persone in questo sito" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Messaggi" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Trova contenuto dei messaggi" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Trova gruppi in questo sito" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Aiuto" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Informazioni" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacy" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Sorgenti" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versione" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contatti" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Badge" @@ -8858,36 +9059,87 @@ msgstr "Sezione senza nome" msgid "More..." msgstr "Altro..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Impostazioni SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Modifica le impostazioni del tuo profilo" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Immagine" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Carica un'immagine" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Password" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Modifica la tua password" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Email" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Modifica la gestione dell'email" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Progetta il tuo profilo" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Messaggi via messaggistica istantanea (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Messaggi via SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Connessioni" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Applicazioni collegate autorizzate" @@ -8897,12 +9149,6 @@ msgstr "Zittisci" msgid "Silence this user" msgstr "Zittisci questo utente" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profilo" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8928,6 +9174,7 @@ msgid "People subscribed to %s." msgstr "Persone abbonate a %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8938,12 +9185,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Gruppi" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8951,7 +9192,6 @@ msgid "Groups %s is a member of." msgstr "Gruppi di cui %s fa parte" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invita" @@ -9225,29 +9465,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Hai già ripetuto quel messaggio." +#~ msgid "Restore default designs" +#~ msgstr "Ripristina i valori predefiniti" + +#~ msgid "Reset back to default" +#~ msgstr "Reimposta i valori predefiniti" + +#~ msgid "Save design" +#~ msgstr "Salva aspetto" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Descriviti assieme ai tuoi interessi in %d caratteri" -#~ msgstr[1] "Descriviti assieme ai tuoi interessi in %d caratteri" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Descrivi te e i tuoi interessi" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Dove ti trovi, tipo \"città, regione, stato\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, pagina %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "La licenza \"%1$s\" dello stream di chi ascolti non è compatibile con la " -#~ "licenza \"%2$s\" di questo sito." - -#~ msgid "Error repeating notice." -#~ msgstr "Errore nel ripetere il messaggio." +#~ msgid "Not an atom feed." +#~ msgstr "Tutti i membri" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index b8a248edcd..d69940baf1 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,20 +14,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:47:59+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "アクセス" @@ -139,6 +138,7 @@ msgstr "そのようなページはありません。" #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "そのようなユーザはいません。" @@ -152,6 +152,12 @@ msgstr "%1$sとその友人、%2$dページ目" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%sとその友人" @@ -279,6 +285,7 @@ msgstr "ユーザを更新できませんでした。" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "ユーザはプロフィールをもっていません。" @@ -2015,16 +2022,19 @@ msgid "Use defaults" msgstr "デフォルトを使用" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "デフォルトデザインに戻す。" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "デフォルトへリセットする" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "デザインの保存" @@ -2366,6 +2376,7 @@ msgstr "お気に入りをやめる" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "人気のつぶやき" @@ -2407,6 +2418,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s のお気に入りのつぶやき" @@ -2419,6 +2432,7 @@ msgstr "%1$s による %2$s 上のお気に入りを更新!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "フィーチャーされたユーザ" @@ -3698,7 +3712,6 @@ msgid "Password saved." msgstr "パスワードが保存されました。" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "パス" @@ -4236,6 +4249,7 @@ msgid "Public timeline, page %d" msgstr "パブリックタイムライン、ページ %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "パブリックタイムライン" @@ -4724,6 +4738,8 @@ msgstr "繰り返されました!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "%s への返信" @@ -4839,6 +4855,7 @@ msgid "System error uploading file." msgstr "ファイルのアップロードでシステムエラー" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "全てのメンバー" @@ -5968,7 +5985,7 @@ msgstr "不正なトークン。" msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. #, fuzzy msgctxt "TITLE" msgid "User" @@ -5993,6 +6010,9 @@ msgstr "不正なウェルカムテキスト。最大長は255字です。" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "プロファイル" @@ -6246,7 +6266,6 @@ msgid "Contributors" msgstr "コントリビュータ" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "ライセンス" @@ -6275,7 +6294,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "プラグイン" @@ -6706,7 +6724,9 @@ msgstr "返信" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6825,8 +6845,9 @@ msgstr "" msgid "No content for notice %s." msgstr "つぶやきの内容を探す" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "そのようなユーザはいません。" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6873,84 +6894,133 @@ msgstr "saveSettings() は実装されていません。" msgid "Unable to delete design setting." msgstr "デザイン設定を削除できません。" +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "ホームページ" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ホームページ" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "管理者" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "基本サイト設定" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #, fuzzy msgctxt "MENU" msgid "Site" msgstr "サイト" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "デザイン設定" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" msgid "Design" msgstr "デザイン" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ユーザ設定" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "ユーザ" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "アクセス設定" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "アクセス" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "パス設定" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "パス" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "セッション設定" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "セッション" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Edit site notice" msgstr "サイトつぶやき" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "サイトつぶやき" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "パス設定" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "スナップショット" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "ライセンス" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "パス設定" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "プラグイン" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6961,6 +7031,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6997,9 +7068,11 @@ msgstr "" msgid "Could not issue access token." msgstr "メッセージを追加できません。" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "OAuth アプリケーションユーザの追加時DBエラー。" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "OAuth アプリケーションユーザの追加時DBエラー。" @@ -7098,6 +7171,13 @@ msgstr "中止" msgid "Save" msgstr "保存" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "不明なアクション" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7122,11 +7202,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "回復" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7302,6 +7383,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7627,9 +7710,14 @@ msgstr "" msgid "Go to the installer." msgstr "インストーラへ。" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "データベースエラー" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "パブリック" @@ -7641,6 +7729,7 @@ msgstr "削除" msgid "Delete this user" msgstr "このユーザを削除" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "デザインの保存" @@ -7653,14 +7742,6 @@ msgstr "色の変更" msgid "Use defaults" msgstr "デフォルトを使用" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "デフォルトデザインに戻す。" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "デフォルトへリセットする" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7669,7 +7750,7 @@ msgstr "ファイルアップロード" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "自分のバックグラウンド画像をアップロードできます。最大ファイルサイズは 2MB で" "す。" @@ -7686,10 +7767,6 @@ msgctxt "RADIO" msgid "Off" msgstr "オフ" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "デザインの保存" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7726,47 +7803,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "お気に入り" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "全てのメンバー" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "全て" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "フィルターにかけるタグを選択" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "タグ" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "タグを選んで、リストを狭くしてください" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "移動" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7825,9 +7916,11 @@ msgstr[0] "" msgid "Membership policy" msgstr "利用開始日" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7893,6 +7986,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Admin" @@ -7991,23 +8085,40 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "不明な受信箱のソース %d。" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "離れる" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. #, fuzzy msgctxt "MENU" msgid "Login" @@ -8362,6 +8473,7 @@ msgstr "" msgid "Inbox" msgstr "受信箱" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "あなたの入ってくるメッセージ" @@ -8600,15 +8712,42 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "サブスクリプションを追加できません" +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "プロファイル" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "グループプロファイル" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "返信" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "お気に入り" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "ユーザ" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "メッセージ" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8632,29 +8771,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS 設定" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "プロファイル設定の変更" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "ユーザ設定" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "ロゴ" msgid "Logout from the site" msgstr "サイトのテーマ" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "サイトへログイン" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "検索" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "サイト検索" @@ -8703,15 +8855,36 @@ msgstr "全てのグループ" msgid "Unimplemented method." msgstr "未実装のメソッド。" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "グループ" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "ユーザグループ" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "最近のタグ" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "最近のタグ" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "フィーチャーされた" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "人気" @@ -8756,52 +8929,81 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "人々" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "このサイトの人々を探す" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "つぶやき" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "つぶやきの内容を探す" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "このサイト上のグループを検索する" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "ヘルプ" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "About" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "よくある質問" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "プライバシー" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "ソース" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "バージョン" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "連絡先" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "バッジ" @@ -8811,36 +9013,87 @@ msgstr "名称未設定のセクション" msgid "More..." msgstr "さらに..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS 設定" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "プロファイル設定の変更" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "アバター" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "アバターのアップロード" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "パスワード" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "パスワードの変更" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "メール" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "メールの扱いを変更" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "あなたのプロファイルをデザイン" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "インスタントメッセンジャー(IM)での更新" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "SMSでの更新" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "接続" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "承認された接続アプリケーション" @@ -8850,12 +9103,6 @@ msgstr "サイレンス" msgid "Silence this user" msgstr "このユーザをサイレンスに" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "プロファイル" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8881,6 +9128,7 @@ msgid "People subscribed to %s." msgstr "人々は %s をフォローしました。" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8891,12 +9139,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "グループ" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -9165,28 +9407,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "すでにつぶやきを繰り返しています。" +#~ msgid "Restore default designs" +#~ msgstr "デフォルトデザインに戻す。" + +#~ msgid "Reset back to default" +#~ msgstr "デフォルトへリセットする" + +#~ msgid "Save design" +#~ msgstr "デザインの保存" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "%d字以内で自分自身と自分の興味について書いてください" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "自分自身と自分の興味について書いてください" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s、ページ %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性が" -#~ "ありません。" - -#~ msgid "Error repeating notice." -#~ msgstr "つぶやき繰り返しエラー" +#~ msgid "Not an atom feed." +#~ msgstr "全てのメンバー" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index b51a52d41c..e500161cb4 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,20 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:00+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "შესვლა" @@ -133,6 +132,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "ასეთი მომხმარებელი არ არსებობს." @@ -146,6 +146,12 @@ msgstr "%1$s და მეგობრები, გვერდი %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr " %s და მეგობრები" @@ -272,6 +278,7 @@ msgstr "მომხმარებლის განახლება ვე #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "მომხმარებელს პროფილი არ გააჩნია." @@ -1990,16 +1997,19 @@ msgid "Use defaults" msgstr "გამოიყენე პირვანდელი მდგომარეობა" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "დააბრუნე პირვანდელი დიზაინი" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "პირვანდელის პარამეტრების დაბრუნება" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "შეინახე დიზაინი" @@ -2336,6 +2346,7 @@ msgstr "რჩეულის გაუქმება" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "პოპულარული შეტყობინებები" @@ -2376,6 +2387,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s-ს რჩეული შეტყობინებები" @@ -2388,6 +2401,7 @@ msgstr "განახლებები არჩეული %1$s-ს მი #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "წარმოდგენილი მომხმარებლები" @@ -3658,7 +3672,6 @@ msgid "Password saved." msgstr "პაროლი შენახულია." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "გზები" @@ -4193,6 +4206,7 @@ msgid "Public timeline, page %d" msgstr "საჯარო განახლებების ნაკადი, გვერდი %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "საჯარო განახლებების ნაკადი" @@ -4680,6 +4694,8 @@ msgstr "გამეორებული!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "პასუხები %s–ს" @@ -4795,6 +4811,7 @@ msgid "System error uploading file." msgstr "სისტემური შეცდომა ფაილის ატვირთვისას." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "" @@ -5890,7 +5907,7 @@ msgstr "შეტყობინების არასწორი შიგ msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "მომხმარებელი" @@ -5914,6 +5931,9 @@ msgstr "არასწორი მისასალმებელი ტე msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "პროფილი" @@ -6167,7 +6187,6 @@ msgid "Contributors" msgstr "წვლილის შემომტანები" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "ლიცენზია" @@ -6206,7 +6225,6 @@ msgstr "" "ერთად. თუ არა, იხილეთ %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "დამატებები" @@ -6634,7 +6652,9 @@ msgstr "პასუხი" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6754,8 +6774,9 @@ msgstr "" msgid "No content for notice %s." msgstr "მოძებნე შეტყობინებებში" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "ასეთი მომხმარებელი არ არსებობს." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6802,81 +6823,129 @@ msgstr "saveSettings() არ არის განხორციელებ msgid "Unable to delete design setting." msgstr "დიზაინის პარამეტრების წაშლა ვერ ხერხდება." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. #, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "ვებ. გვერსი" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ვებ. გვერსი" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "ადმინი" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "საიტის ძირითადი კონფიგურაცია" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "საიტი" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "დიზაინის კონფიგურაცია" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "დიზაინი" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "მომხმარებლის კონფიგურაცია" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "მომხმარებელი" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "შესვლის კონფიგურაცია" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "შესვლა" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "გზების კონფიგურაცია" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "გზები" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "სესიების კონფიგურაცია" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "სესიები" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "საიტის შეტყობინების რედაქტირება" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "საიტის შეტყობინება" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "წინა ვერსიების კონფიგურაცია" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "წინა ვერსიები" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "ლიცენზია" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "გზების კონფიგურაცია" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "დამატებები" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6887,6 +6956,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6923,9 +6993,11 @@ msgstr "" msgid "Could not issue access token." msgstr "შეტყობინების ჩასმა ვერ მოხერხდა." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის ჩასმისას." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის ჩასმისას." @@ -7024,6 +7096,13 @@ msgstr "გაუქმება" msgid "Save" msgstr "შენახვა" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "უცნობი მოქმედება" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7046,11 +7125,12 @@ msgstr "დამტკიცებულია %1$s - \"%2$s\" შესვლ msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "უკუგება" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7226,6 +7306,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7547,9 +7629,14 @@ msgstr "თუ გინდათ ინსტალატორი გაუშ msgid "Go to the installer." msgstr "გადადი ამ ინსტალატორზე." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "მონაცემთა ბაზის შეცდომა" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "საჯარო" @@ -7561,6 +7648,7 @@ msgstr "წაშლა" msgid "Delete this user" msgstr "ამ მომხმარებლის წაშლა" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "შეინახე დიზაინი" @@ -7573,14 +7661,6 @@ msgstr "შეცვალე ფერები" msgid "Use defaults" msgstr "გამოიყენე პირვანდელი მდგომარეობა" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "დააბრუნე პირვანდელი დიზაინი" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "პირვანდელის პარამეტრების დაბრუნება" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7589,7 +7669,7 @@ msgstr "ფაილის ატვირთვა" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "თქვენ შეგიძლიათ ატვირთოთ პერსონალური ფონური სურათი. ფაილის დასაშვები ზომაა " "2მბ." @@ -7606,10 +7686,6 @@ msgctxt "RADIO" msgid "Off" msgstr "გამორთვა" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "შეინახე დიზაინი" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7646,46 +7722,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "რჩეული" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "ყველა" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "აირჩიე გასაფილტრი სანიშნე" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "სანიშნე" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "სიის გასაფილტრად აირჩიე სანიშნე" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "წინ" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "მიანიჭე ამ მომხმარებელს \"%s\" როლი" @@ -7746,9 +7837,11 @@ msgstr[0] "" msgid "Membership policy" msgstr "" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7814,6 +7907,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "ადმინი" @@ -7911,23 +8005,40 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "დატოვება" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "შესვლა" @@ -8287,6 +8398,7 @@ msgstr "" msgid "Inbox" msgstr "შემომავალი წერილების ყუთი" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "თქვენი შემომავალი შეტყობინებები" @@ -8520,16 +8632,43 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "პროფილი" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "მომხმარებლის პროფილი" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "პასუხები" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "რჩეულები" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "მომხმარებელი" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "შეტყობინება" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8553,19 +8692,25 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS პარამეტრები" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "შეცვალე პროფილის პარამეტრები" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "მომხმარებლის კონფიგურაცია" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "გასვლა" @@ -8573,13 +8718,18 @@ msgstr "გასვლა" msgid "Logout from the site" msgstr "გასვლა საიტიდან" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Login to the site" msgstr "საიტზე შესვლა" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "ძიება" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "ძიება საიტზე" @@ -8628,15 +8778,36 @@ msgstr "ყველა ჯგუფი" msgid "Unimplemented method." msgstr "მეთოდი განუხორციელებელია." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "ჯგუფები" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "ბოლო სანიშნეები" -msgid "Featured" -msgstr "" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "ბოლო სანიშნეები" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Featured" +msgstr "წარმოდგენილი მომხმარებლები" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "პოპულარული" @@ -8681,52 +8852,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "ადამიანები" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "მოძებნე ადამიანები ამ საიტზე" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "შეტყობინებები" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "მოძებნე შეტყობინებებში" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "მოძებნე ჯგუფები ამ საიტზე" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "დახმარება" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "საიტის შესახებ" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "ხდკ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "მპ" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "პირადი" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "წყარო" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "ვერსია" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "კონტაქტი" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "იარლიყი" @@ -8736,36 +8937,86 @@ msgstr "უსათაურო სექცია" msgid "More..." msgstr "მეტი..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS პარამეტრები" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "შეცვალე პროფილის პარამეტრები" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "ავატარი" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "ატვირთე ავატარი" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "პაროლი" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "შეცვალე პაროლი" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "ელ. ფოსტა" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "ელ. ფოსტის მართვა" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "პროფილის პარამეტრები" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "URL" msgstr "" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "განახლებები ჩათ კლიენტისგან (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "განახლებები SMS-თ" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "შეერთებები" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "ავტორიზირებული შეერთებული აპლიკაციები" @@ -8775,12 +9026,6 @@ msgstr "დადუმება" msgid "Silence this user" msgstr "ამ მომხმარებლის დადუმება" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "პროფილი" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8806,6 +9051,7 @@ msgid "People subscribed to %s." msgstr "უკვე გამოწერილია!" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8816,12 +9062,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "ჯგუფები" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8829,7 +9069,6 @@ msgid "Groups %s is a member of." msgstr "%1$s-ს ის ჯგუფები რომლებშიც გაერთიანებულია %2$s." #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "მოწვევა" @@ -9094,25 +9333,11 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "ეს შეტყობინება უკვე გამეორებულია." +#~ msgid "Restore default designs" +#~ msgstr "დააბრუნე პირვანდელი დიზაინი" -#, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "აღწერეთ საკუთარი თავი და თქვენი ინტერესები %d სიმბოლოთი" +#~ msgid "Reset back to default" +#~ msgstr "პირვანდელის პარამეტრების დაბრუნება" -#~ msgid "Describe yourself and your interests" -#~ msgstr "აღწერეთ საკუთარი თავი და თქვენი ინტერესები" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "გამოსაწერი მომხმარებლის ნაკადის ლიცენზია ‘%1$s’ შეუთავსებელია საიტის " -#~ "ლიცენზიასთან ‘%2$s’." - -#~ msgid "Error repeating notice." -#~ msgstr "შეცდომა შეტყობინების გამეორებისას." +#~ msgid "Save design" +#~ msgstr "შეინახე დიზაინი" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 774c65bacc..6980266a7a 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,20 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:02+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "접근" @@ -135,6 +134,7 @@ msgstr "해당하는 페이지 없음" #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "해당하는 이용자 없음" @@ -148,6 +148,12 @@ msgstr "%s 및 친구들, %d 페이지" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s 및 친구들" @@ -268,6 +274,7 @@ msgstr "이용자를 업데이트 할 수 없습니다." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." @@ -1992,15 +1999,18 @@ msgid "Use defaults" msgstr "기본값 사용" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "기본값 사용" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "디자인 저장" @@ -2337,6 +2347,7 @@ msgstr "좋아하는글 취소" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "인기있는 게시글" @@ -2372,6 +2383,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s 님의 좋아하는 글" @@ -2384,6 +2397,7 @@ msgstr "%2$s에 있는 %1$s의 업데이트!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "인기있는 회원" @@ -3641,7 +3655,6 @@ msgid "Password saved." msgstr "비밀 번호 저장" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "경로" @@ -4169,6 +4182,7 @@ msgid "Public timeline, page %d" msgstr "공개 타임라인, %d 페이지" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "퍼블릭 타임라인" @@ -4645,6 +4659,8 @@ msgstr "재전송됨!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "%s에 답신" @@ -4753,6 +4769,7 @@ msgid "System error uploading file." msgstr "파일을 올리는데 시스템 오류 발생" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "모든 회원" @@ -5824,7 +5841,7 @@ msgstr "옳지 않은 크기" msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "사용자" @@ -5847,6 +5864,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "프로필" @@ -5949,7 +5969,6 @@ msgid "Subscription authorized" msgstr "구독 허가" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -5963,7 +5982,6 @@ msgid "Subscription rejected" msgstr "구독 거부" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6100,7 +6118,6 @@ msgid "Contributors" msgstr "편집자" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "라이센스" @@ -6138,7 +6155,6 @@ msgstr "" "락되어 있다면 %s 페이지를 보십시오." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "플러그인" @@ -6567,7 +6583,9 @@ msgstr "답장하기" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet %s" @@ -6687,8 +6705,9 @@ msgstr "" msgid "No content for notice %s." msgstr "통지들의 내용 찾기" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "해당하는 이용자 없음" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6738,80 +6757,129 @@ msgstr "명령이 아직 실행되지 않았습니다." msgid "Unable to delete design setting." msgstr "디자인 설정을 저장할 수 없습니다." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "홈페이지" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "홈페이지" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "관리자" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "사이트" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "디자인" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "사용자" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "접근" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "경로" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "세션" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "사이트 공지 편집" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "사이트 공지" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "메일 주소 확인" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" -msgstr "" +msgstr "접근 설정을 저장" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "라이센스" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "메일 주소 확인" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "플러그인" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6820,6 +6888,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6856,9 +6925,11 @@ msgstr "" msgid "Could not issue access token." msgstr "메시지를 삽입할 수 없습니다." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류" @@ -6958,6 +7029,13 @@ msgstr "취소" msgid "Save" msgstr "저장" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "알려지지 않은 행동" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6980,11 +7058,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "제거" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7158,6 +7237,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7483,9 +7564,14 @@ msgstr "" msgid "Go to the installer." msgstr "이 사이트에 로그인" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "데이터베이스 오류" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "공개" @@ -7497,6 +7583,7 @@ msgstr "삭제" msgid "Delete this user" msgstr "이 사용자 삭제" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "디자인 저장" @@ -7509,14 +7596,6 @@ msgstr "색상 변경" msgid "Use defaults" msgstr "기본값 사용" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7525,7 +7604,7 @@ msgstr "실행 실패" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "개인 아바타를 올릴 수 있습니다. 최대 파일 크기는 2MB입니다." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7540,10 +7619,6 @@ msgctxt "RADIO" msgid "Off" msgstr "끄기" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "디자인 저장" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7581,48 +7656,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "좋아합니다" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "모든 회원" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "모든 것" +#. TRANS: Fieldset legend on gallery action page. #, fuzzy msgid "Select tag to filter" msgstr "통신 회사를 선택 하세요." +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "태그" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "좁은 리스트에서 태그 선택하기" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "이동" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7680,9 +7769,11 @@ msgstr[0] "" msgid "Membership policy" msgstr "가입한 때" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7748,6 +7839,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "관리" @@ -7845,23 +7937,40 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "떠나기" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "로그인" @@ -8145,6 +8254,7 @@ msgstr "" msgid "Inbox" msgstr "받은 쪽지함" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "받은 메시지" @@ -8374,16 +8484,43 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "예약 구독을 추가 할 수 없습니다." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "프로필" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "그룹 프로필" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "답신" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "좋아하는 글들" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "사용자" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "메시지" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8408,29 +8545,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "메일 설정" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "프로필 세팅 바꾸기" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "메일 주소 확인" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "로그아웃" msgid "Logout from the site" msgstr "이 사이트에서 로그아웃" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "이 사이트에 로그인" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "검색" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "검색 도움말" @@ -8479,15 +8629,36 @@ msgstr "모든 그룹" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "그룹" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "사용자 그룹" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "최근 태그" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "최근 태그" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "피쳐링됨" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "인기있는" @@ -8536,52 +8707,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "검색" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "사람들" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "이 사이트에 있는 사람 찾기" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "통지" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "통지들의 내용 찾기" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "이 사이트에서 그룹 찾기" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "도움말" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "정보" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "자주 묻는 질문" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "서비스 약관" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "개인정보 취급방침" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "소스 코드" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "버전" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "연락하기" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "배지" @@ -8591,37 +8792,88 @@ msgstr "제목없는 섹션" msgid "More..." msgstr "더 보기..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "메일 설정" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "프로필 세팅 바꾸기" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "아바타" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "아바타를 업로드하세요." +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "비밀 번호" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "비밀번호 바꾸기" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "메일" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "메일 처리 변경" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Design your profile" msgstr "이용자 프로필" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "메신저" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "인스턴트 메신저에 의한 업데이트" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "SMS에 의한 업데이트" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "연결" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "응용프로그램 삭제" @@ -8633,12 +8885,6 @@ msgstr "사이트 공지" msgid "Silence this user" msgstr "이 사용자 삭제" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "프로필" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8664,6 +8910,7 @@ msgid "People subscribed to %s." msgstr "%s에 의해 구독되는 사람들" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8674,12 +8921,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "그룹" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8687,7 +8928,6 @@ msgid "Groups %s is a member of." msgstr "%s 사용자가 멤버인 그룹" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "초대" @@ -8949,22 +9189,9 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "이미 재전송된 소식입니다." +#~ msgid "Save design" +#~ msgstr "디자인 저장" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "%d자 이내에서 자기 소개 및 자기 관심사" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "자기 소개 및 자기 관심사" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%s 및 친구들, %d 페이지" - -#~ msgid "Error repeating notice." -#~ msgstr "사용자 세팅 오류" +#~ msgid "Not an atom feed." +#~ msgstr "모든 회원" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 1ebe51bf46..c4d0cb7d63 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,20 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Пристап" @@ -136,6 +135,7 @@ msgstr "Нема таква страница." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Нема таков корисник." @@ -149,6 +149,12 @@ msgstr "%1$s и пријателите, стр. %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s и пријатели" @@ -276,6 +282,7 @@ msgstr "Не можев да го подновам корисникот." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Корисникот нема профил." @@ -1146,34 +1153,32 @@ msgid "Join request canceled." msgstr "Барањето за зачленување е откажано." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "%s не е редицата за модерација на оваа група." +msgstr "%s не е во редицата за модерација на Вашите претплати." #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." msgstr "" -"Не можев да го откажам барањето да го зачленам корисникот %1$s во групата %2" -"$s." +"Не можев да го откажам или одобрам барањето да го зачленам корисникот %1$s " +"во групата %2$s." #. TRANS: Title for subscription approval ajax return #. TRANS: %1$s is the approved user's nickname -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request" -msgstr "Барањето на %1$s за %2$s" +msgstr "Барањето на %1$s" #. TRANS: Message on page for user after approving a subscription request. -#, fuzzy msgid "Subscription approved." -msgstr "Претплатата е одобрена" +msgstr "Претплатата е одобрена." #. TRANS: Message on page for user after rejecting a subscription request. -#, fuzzy msgid "Subscription canceled." -msgstr "Овластувањето е откажано." +msgstr "Претплатата е откажана." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1210,9 +1215,9 @@ msgstr "Веќе е бендисано." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "Group memberships of %s" -msgstr "Членства на групата %s" +msgstr "Членувања на %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1575,7 +1580,6 @@ msgid "No profile with that ID." msgstr "Нема профил со тоа ID." #. TRANS: Title after unsubscribing from a group. -#, fuzzy msgctxt "TITLE" msgid "Unsubscribed" msgstr "Претплатата е откажана" @@ -1972,14 +1976,17 @@ msgid "Use defaults" msgstr "Користи по основно" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Врати ги изгледите по основно." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Врати по основно." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Зачувај изглед." @@ -2311,6 +2318,7 @@ msgstr "Тргни од бендисани." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Популарни забелешки" @@ -2352,6 +2360,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Бендисани забелешки на %s" @@ -2364,6 +2374,7 @@ msgstr "Подновувања, бендисани од %1$s на %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Избрани корисници" @@ -3612,7 +3623,6 @@ msgid "Password saved." msgstr "Лозинката е зачувана." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Патеки" @@ -4037,26 +4047,25 @@ msgstr "" "ботови и сл.)." #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. -#, fuzzy msgid "Subscription policy" -msgstr "Претплати" +msgstr "Правило за претплата" #. TRANS: Dropdown field option for following policy. -#, fuzzy msgid "Let anyone follow me" -msgstr "Може само да следи луѓе." +msgstr "Нека ме следи секој" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" -msgstr "" +msgstr "Прво прашај ме" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." msgstr "" +"Дали на корисниците да им треба Ваша дозвола за да ги следат Вашите поднови." #. TRANS: Checkbox label in profile settings. msgid "Make updates visible only to my followers" -msgstr "" +msgstr "Подновите нека се видливи само за моите следбеници" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed @@ -4088,9 +4097,10 @@ msgstr "Неважечка ознака: „%s“." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." -msgstr "Не можев да го подновам корисникот за автопретплата." +msgstr "" +"Не можев да го подновам правилото за автопретплата или претплата во " +"корисничкиот профил." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." @@ -4128,6 +4138,7 @@ msgid "Public timeline, page %d" msgstr "Јавна историја, стр. %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Јавна историја" @@ -4603,6 +4614,8 @@ msgstr "Повторено!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Одговори испратени до %s" @@ -4717,6 +4730,7 @@ msgid "System error uploading file." msgstr "Системска грешка при подигањето на податотеката." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Ова не е Atom-канал." @@ -5034,9 +5048,8 @@ msgid "Message from %1$s on %2$s" msgstr "Порака од %1$s на %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "IM е недостапно." +msgstr "Недостапно." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5044,21 +5057,21 @@ msgstr "Избришана забелешка" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "%1$s го/ја означи %2$s" +msgstr "Забелешки од %1$s означени со %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "%1$s го/ја означи %2$s, страница %3$d" +msgstr "Забелешки на %2$s, означени со %2$s, страница %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Забелешки означени со %1$s, стр. %2$d" +msgstr "Забелешки на %1$s, страница %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5516,7 +5529,7 @@ msgstr "Не можев да ја зачувам претплатата." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "You may only approve your own pending subscriptions." -msgstr "" +msgstr "Можете да одобрувате само Ваши претплати во исчекување." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. @@ -5821,7 +5834,7 @@ msgstr "" "Грешка при зачувувањето на корисничките нагодувања за скратување на URL-" "адреси." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Корисник" @@ -5844,6 +5857,9 @@ msgstr "Неважечки текст за добредојде. Дозволе msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Профил" @@ -5936,7 +5952,6 @@ msgid "Subscription authorized" msgstr "Претплатата е одобрена" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -5951,7 +5966,6 @@ msgid "Subscription rejected" msgstr "Претплатата е одбиена" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6089,7 +6103,6 @@ msgid "Contributors" msgstr "Учесници" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Лиценца" @@ -6128,7 +6141,6 @@ msgstr "" "овој програм. Ако ја немате, погледајте %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Приклучоци" @@ -6557,6 +6569,9 @@ msgstr "Одговори" msgid "Write a reply..." msgstr "Напишете одговор..." +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Статус" @@ -6676,8 +6691,9 @@ msgstr "Не презапишувам авторски податоци за н msgid "No content for notice %s." msgstr "Нема содржина за забелешката %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Нема корисник по име %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6724,79 +6740,128 @@ msgstr "saveSettings() не е имплементирано." msgid "Unable to delete design setting." msgstr "Не можам да ги избришам нагодувањата за изглед." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Домашна страница" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Домашна страница" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Администратор" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Основни нагодувања на мрежното место" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Мреж. место" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Поставки на изгледот" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Изглед" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Кориснички поставки" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Корисник" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Поставки на пристапот" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Пристап" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Поставки на патеки" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Патеки" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Поставки на сесиите" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Сесии" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Уреди објава за мрежното место" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Напомена за мрежното место" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Поставки за снимки" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Снимки" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Постави лиценца за мреж. место" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Лиценца" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Поставки за приклучоци" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Приклучоци" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6807,6 +6872,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Нема програм за тој потрошувачки клуч." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Не е дозволено да се користи API." @@ -6840,11 +6906,13 @@ msgstr "Не можев да пронајдам профил и програм msgid "Could not issue access token." msgstr "Не можев да го издадам жетонот за пристап." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Грешка во базата на податоци при вметнувањето на корисникот на OAuth-" "програмот." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Грешка во базата на податоци при подновата на корисникот на OAuth-програмот." @@ -6943,6 +7011,13 @@ msgstr "Откажи" msgid "Save" msgstr "Зачувај" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Непознато дејство" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " од " @@ -6965,11 +7040,12 @@ msgstr "Одобрено %1$s - „%2$s“ пристап." msgid "Access token starting with: %s" msgstr "Пристапен жетон што почнува со: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Одземи" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Авторскиот елемент мора да содржи елемент за име." @@ -7140,6 +7216,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7456,9 +7534,14 @@ msgstr "Препорачуваме да го пуштите инсталатер msgid "Go to the installer." msgstr "Оди на инсталаторот." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Грешка во базата на податоци" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Јавен" @@ -7470,6 +7553,7 @@ msgstr "Избриши" msgid "Delete this user" msgstr "Избриши овој корисник" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Измени изглед" @@ -7481,22 +7565,15 @@ msgstr "Промена на бои" msgid "Use defaults" msgstr "Користи по основно" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Врати основно-зададени нагодувања" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Врати по основно" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Подигање" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Можете да подигнете Ваша лична позадинска слика. Максималната дозволена " "големина изнесува 2 МБ." @@ -7511,10 +7588,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Искл." -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Зачувај изглед" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7549,46 +7622,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Бендисај" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "Ова не е Atom-канал." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Нема автор во емитувањето." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Не можам да увезам без корисник." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Канали" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Сè" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Одберете ознака за филтрирање" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Ознака" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Одберете ознака за да го ограничите списокот" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Оди" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Додели улога „%s“ на корисников" @@ -7649,9 +7738,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Правило за членство" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "Отворено за сите" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "Администраторот мора да ги одобри сите членови" @@ -7717,6 +7808,7 @@ msgid "%s blocked users" msgstr "Блокирани корисници од групата „%s“" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Админ" @@ -7817,13 +7909,16 @@ msgid_plural "%dB" msgstr[0] "%d Б" msgstr[1] "%d Б" -#, php-format +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#, fuzzy, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" "Корисникот „%s“ на %s има изјавено дека Вашиот прекар на %s е негов. Ако ова " "е вистина, можете да потврдите стискајќи на оваа URL-адреса: %s . (Ако не " @@ -7831,14 +7926,28 @@ msgstr "" "Ако ова не сте Вие, или ако не ја имате побарано оваа потврда, слободно " "занемарете ја поракава." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Непознат извор на приемна пошта %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Напушти" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Најава" @@ -8202,6 +8311,7 @@ msgstr "" msgid "Inbox" msgstr "Примени" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Ваши приемни пораки" @@ -8432,15 +8542,41 @@ msgstr "Дуплирана забелешка." msgid "Couldn't insert new subscription." msgstr "Не може да се внесе нова претплата." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Профил" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Профил на група" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Одговори" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Бендисани" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Корисник" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Пораки" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8464,27 +8600,40 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Описите на приклучоците не се достапни ако е оневозможено.)" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Нагодувања за СМС" +#. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" msgstr "Измена на лични поставки" +#. TRANS: Menu item title in primary navigation panel. msgid "Site configuration" msgstr "Поставки на мреж. место" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Одјава" msgid "Logout from the site" msgstr "Одјава" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Најава" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Барај" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Пребарај по мрежното место" @@ -8532,15 +8681,36 @@ msgstr "Сите групи" msgid "Unimplemented method." msgstr "Неимплементиран метод." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Групи" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Кориснички групи" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Скорешни ознаки" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Скорешни ознаки" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Избрани" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Популарно" @@ -8584,52 +8754,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Пребарај" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Луѓе" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Пронајдете луѓе на ова мрежно место" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Забелешки" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Пронајдете содржини на забелешките" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Пронајдете групи на ова мрежно место" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Помош" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "За нас" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "ЧПП" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Услови" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Приватност" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Изворен код" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Верзија" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Контакт" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Значка" @@ -8639,36 +8839,87 @@ msgstr "Заглавие без наслов" msgid "More..." msgstr "Повеќе..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Нагодувања за СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Смени профилни нагодувања" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Аватар" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Подигни аватар" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Лозинка" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Смени лозинка" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Е-пошта" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Смени ракување со е-пошта" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Наместете изглед на Вашиот профил" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Скратувачи на URL" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Подновувања преку инстант-пораки (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Подновувања по СМС" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Сврзувања" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Овластени поврзани програми" @@ -8678,12 +8929,6 @@ msgstr "Замолчи" msgid "Silence this user" msgstr "Замолчи го овој корисник" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Профил" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8709,6 +8954,7 @@ msgid "People subscribed to %s." msgstr "Луѓе претплатени на %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, fuzzy, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8717,13 +8963,7 @@ msgstr "Член во исчекување (%d)" #. TRANS: Menu item title in local navigation menu. #, php-format msgid "Approve pending subscription requests." -msgstr "" - -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Групи" +msgstr "Одобри барања за претплата во исчекување." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. @@ -8732,7 +8972,6 @@ msgid "Groups %s is a member of." msgstr "Групи кадешто членува %s" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Покани" @@ -8873,15 +9112,14 @@ msgid "My colleagues at %s" msgstr "" #. TRANS: Label for drop-down of potential addressees. -#, fuzzy msgctxt "LABEL" msgid "To:" -msgstr "За" +msgstr "За:" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. -#, fuzzy, php-format +#, php-format msgid "Unknown to value: \"%s\"." -msgstr "Непознат глагол: „%s“." +msgstr "Непозната вредност за примач: „%s“." #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" @@ -8997,31 +9235,14 @@ msgstr "Неважечки XML. Нема XRD-корен." msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." -#~ msgid "Already repeated that notice." -#~ msgstr "Забелешката е веќе повторена." +#~ msgid "Restore default designs" +#~ msgstr "Врати основно-зададени нагодувања" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Опишете се себеси и своите интереси со %d знак." -#~ msgstr[1] "Опишете се себеси и своите интереси со %d знаци." +#~ msgid "Reset back to default" +#~ msgstr "Врати по основно" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Опишете се себеси и Вашите интереси" +#~ msgid "Save design" +#~ msgstr "Зачувај изглед" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Каде се наоѓате, на пр. „Град, Област, Земја“." - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, стр. %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Лиценцата на каналот на следачот „%1$s“ не е соодветна на лиценцата на " -#~ "мрежното место „%2$s“." - -#~ msgid "Invalid group join approval: not pending." -#~ msgstr "Неважечко одобрение за членство: не е во исчекување." - -#~ msgid "Error repeating notice." -#~ msgstr "Грешка при повторувањето на белешката." +#~ msgid "Not an atom feed." +#~ msgstr "Ова не е Atom-канал." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index b973c1dcb7..94f362ad0a 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,20 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:05+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "അഭിഗമ്യത" @@ -133,6 +132,7 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "അങ്ങനെ ഒരു ഉപയോക്താവില്ല." @@ -146,6 +146,12 @@ msgstr "%1$s ഒപ്പം സുഹൃത്തുക്കളും, താ #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s ഒപ്പം സുഹൃത്തുക്കളും" @@ -264,6 +270,7 @@ msgstr "ഉപയോക്തൃ വിവരങ്ങൾ പുതുക്ക #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "" @@ -1927,14 +1934,17 @@ msgid "Use defaults" msgstr "സ്വതേയുള്ളവ ഉപയോഗിക്കുക" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "രൂപകല്പന സേവ്‌ ചെയ്യുക." @@ -2264,6 +2274,7 @@ msgstr "പ്രിയങ്കരമാണ് എന്നത് നീക് #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "ജനപ്രിയ അറിയിപ്പുകൾ" @@ -2301,6 +2312,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s എന്ന ഉപയോക്താവിനു പ്രിയങ്കരങ്ങളായ അറിയിപ്പുകൾ" @@ -2313,6 +2326,7 @@ msgstr "" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "പ്രമുഖ ഉപയോക്താക്കൾ" @@ -3531,7 +3545,6 @@ msgid "Password saved." msgstr "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "" @@ -4042,6 +4055,7 @@ msgid "Public timeline, page %d" msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "സാർവ്വജനിക സമയരേഖ" @@ -4497,6 +4511,8 @@ msgstr "ആവർത്തിച്ചു!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "%s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ" @@ -4601,6 +4617,7 @@ msgid "System error uploading file." msgstr "പ്രമാണം അപ്‌ലോഡ് ചെയ്തുകൊണ്ടിരിക്കെ സിസ്റ്റം പിഴവുണ്ടായി." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല." @@ -5666,7 +5683,7 @@ msgstr "അറിയിപ്പിന്റെ ഉള്ളടക്കം അ msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "ഉപയോക്താവ്" @@ -5689,8 +5706,11 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" -msgstr "" +msgstr "അജ്ഞാതമായ കുറിപ്പ്." #. TRANS: Field label in user admin panel for setting the character limit for the bio field. msgid "Bio Limit" @@ -5920,7 +5940,6 @@ msgid "Contributors" msgstr "സംഭാവന ചെയ്തവർ" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "അനുമതി" @@ -5949,7 +5968,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "പ്ലഗിനുകൾ" @@ -6370,7 +6388,9 @@ msgstr "മറുപടി" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "സ്റ്റാറ്റസ്‌നെറ്റ്" @@ -6482,8 +6502,9 @@ msgstr "" msgid "No content for notice %s." msgstr "ഉള്ളടക്കമൊന്നും %s എന്ന അറിയിപ്പിൽ നൽകിയിട്ടില്ല." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "%s എന്നൊരു ഉപയോക്താവില്ല." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6530,81 +6551,127 @@ msgstr "" msgid "Unable to delete design setting." msgstr "രൂപകല്പനാ സജ്ജീകരണങ്ങൾ മായ്ക്കാൻ കഴിഞ്ഞില്ല." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. #, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "ഹോംപേജ്" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ഹോംപേജ്" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "കാര്യനിർവാഹകൻ" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "സൈറ്റിന്റെ അടിസ്ഥാന ക്രമീകരണം" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "സൈറ്റ്" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "രൂപകല്പനാ ക്രമീകരണം" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "രൂപകല്പന" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ഉപയോക്തൃ ക്രമീകരണം" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "ഉപയോക്താവ്" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "അഭിഗമ്യതാ ക്രമീകരണം" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "അഭിഗമ്യത" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" -msgstr "" +msgstr "പതിപ്പ്" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "സൈറ്റ് അറിയിപ്പ് തിരുത്തുക" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "സൈറ്റ് അറിയിപ്പ്" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Snapshots" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "സൈറ്റിന്റെ ഉപയോഗാനുമതി സജ്ജീകരിക്കുക" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "അനുമതി" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "രൂപകല്പനാ ക്രമീകരണം" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "പ്ലഗിനുകൾ" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6613,6 +6680,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6646,9 +6714,11 @@ msgstr "" msgid "Could not issue access token." msgstr "" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" @@ -6745,6 +6815,13 @@ msgstr "റദ്ദാക്കുക" msgid "Save" msgstr "സേവ് ചെയ്യുക" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "അജ്ഞാതമായ പ്രവൃത്തി" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6767,11 +6844,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "തിരിച്ചെടുക്കുക" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -6941,6 +7019,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7261,9 +7341,14 @@ msgstr "" msgid "Go to the installer." msgstr "" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "ഡാറ്റാബേസ് പിഴവ്" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "സാർവ്വജനികം" @@ -7275,6 +7360,7 @@ msgstr "മായ്ക്കുക" msgid "Delete this user" msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യുക" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "രൂപകല്പന സേവ്‌ ചെയ്യുക" @@ -7287,14 +7373,6 @@ msgstr "നിറങ്ങൾ മാറ്റുക" msgid "Use defaults" msgstr "സ്വതേയുള്ളവ ഉപയോഗിക്കുക" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7303,7 +7381,7 @@ msgstr "പ്രമാണം അപ്‌ലോഡ് ചെയ്യുക" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "താങ്കൾക്ക് ഈ സൈറ്റിനുള്ള പശ്ചാത്തല ചിത്രം അപ്‌ലോഡ് ചെയ്യാവുന്നതാണ്. പ്രമാണത്തിന്റെ പരമാവധി " "വലിപ്പം %1$s ആയിരിക്കണം." @@ -7318,10 +7396,6 @@ msgctxt "RADIO" msgid "Off" msgstr "രഹിതം" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "രൂപകല്പന സേവ്‌ ചെയ്യുക" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7356,46 +7430,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "ആർ.എസ്.എസ്. 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "ആർ.എസ്.എസ്. 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "ആറ്റം" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -msgid "Not an atom feed." -msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "ഫീഡ്" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "എല്ലാം" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "റ്റാഗ്" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "പോകൂ" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7455,9 +7543,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "അംഗമായത്" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7524,6 +7614,7 @@ msgid "%s blocked users" msgstr "%s തടയപ്പെട്ട ഉപയോക്താക്കൾ" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "കാര്യനിർവാഹക(ൻ)" @@ -7624,23 +7715,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "ഒഴിവായി പോവുക" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "പ്രവേശിക്കുക" @@ -7924,6 +8032,7 @@ msgstr "" msgid "Inbox" msgstr "ഇൻബോക്സ്" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "താങ്കൾക്ക് വരുന്ന സന്ദേശങ്ങൾ" @@ -8154,17 +8263,42 @@ msgstr "അറിയിപ്പിന്റെ പകർപ്പ്." msgid "Couldn't insert new subscription." msgstr "" +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "അജ്ഞാതമായ കുറിപ്പ്." + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "അജ്ഞാതമായ കുറിപ്പ്." +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "മറുപടികൾ" +#. TRANS: Menu item in personal group navigation menu. #, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "%s എന്ന ഉപയോക്താവിന് പ്രിയങ്കരമായവ" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "ഉപയോക്താവ്" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "സന്ദേശങ്ങൾ" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8188,19 +8322,25 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "എസ്.എം.എസ്. സജ്ജീകരണങ്ങൾ" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "താങ്കളുടെ രഹസ്യവാക്ക് മാറ്റുക" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "ഉപയോക്തൃ ക്രമീകരണം" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "ലോഗൗട്ട്" @@ -8208,14 +8348,18 @@ msgstr "ലോഗൗട്ട്" msgid "Logout from the site" msgstr "സൈറ്റിൽ നിന്നും പുറത്തുകടക്കുക" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Login to the site" msgstr "സൈറ്റിലേക്ക് പ്രവേശിക്കുക" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Search" msgstr "തിരയുക" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "സൈറ്റിൽ തിരയുക" @@ -8264,15 +8408,36 @@ msgstr "എല്ലാ സംഘങ്ങളും" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "സംഘങ്ങൾ" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "ഉപയോക്തൃ സംഘങ്ങൾ" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "സമീപകാല റ്റാഗുകൾ" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "സമീപകാല റ്റാഗുകൾ" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "തിരഞ്ഞെടുക്കപ്പെട്ടത്" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "ജനപ്രിയം" @@ -8316,52 +8481,80 @@ msgctxt "BUTTON" msgid "Search" msgstr "തിരയുക" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "ജനങ്ങൾ" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "ഈ സൈറ്റിലെ ആൾക്കാരെ കണ്ടെത്തുക" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "അറിയിപ്പുകൾ" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "അറിയിപ്പുകളുടെ ഉള്ളടക്കം കണ്ടെത്തുക" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "ഈ സൈറ്റിലെ സംഘങ്ങൾ കണ്ടെത്തുക" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "സഹായം" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "വിവരണം" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "പതിവുചോദ്യങ്ങൾ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "സ്വകാര്യത" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "സ്രോതസ്സ്" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "പതിപ്പ്" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "സമ്പർക്കം" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +msgctxt "MENU" msgid "Badge" msgstr "" @@ -8371,37 +8564,86 @@ msgstr "തലക്കെട്ടില്ലാത്ത ഭാഗം" msgid "More..." msgstr "കൂടുതൽ..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "എസ്.എം.എസ്. സജ്ജീകരണങ്ങൾ" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "അവതാരം" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "രഹസ്യവാക്ക്" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "താങ്കളുടെ രഹസ്യവാക്ക് മാറ്റുക" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "ഇമെയിൽ" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "ഇമെയിൽ കൈകാര്യരീതിയിൽ മാറ്റം വരുത്തുക" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "യൂ.ആർ.എൽ." +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "എസ്.എം.എസ്." + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item in settings navigation panel. #, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "ബന്ധങ്ങൾ" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "" @@ -8411,12 +8653,6 @@ msgstr "നിശബ്ദമാക്കുക" msgid "Silence this user" msgstr "ഈ ഉപയോക്താവിനെ നിശബ്ദനാക്കുക" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "അജ്ഞാതമായ കുറിപ്പ്." - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8442,6 +8678,7 @@ msgid "People subscribed to %s." msgstr "മുമ്പേ തന്നെ %s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാണ്." #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8452,12 +8689,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "സംഘങ്ങൾ" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8465,7 +8696,6 @@ msgid "Groups %s is a member of." msgstr "%2$s അംഗമായ %1$s സംഘങ്ങൾ." #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ക്ഷണിക്കുക" @@ -8730,17 +8960,14 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." +#~ msgid "Restore default designs" +#~ msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക" -#~ msgid "Describe yourself and your interests" -#~ msgstr "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക" +#~ msgid "Reset back to default" +#~ msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്ന്" +#~ msgid "Save design" +#~ msgstr "രൂപകല്പന സേവ്‌ ചെയ്യുക" -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, താൾ %2$d" - -#~ msgid "Error repeating notice." -#~ msgstr "അറിയിപ്പ് ആവർത്തിക്കുന്നതിൽ പിഴവുണ്ടായി." +#~ msgid "Not an atom feed." +#~ msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index d8d4decb64..ee1f0d3c77 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -12,20 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:07+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Tilgang" @@ -136,6 +135,7 @@ msgstr "Ingen slik side." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Ingen slik bruker." @@ -149,6 +149,12 @@ msgstr "%1$s og venner, side %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s og venner" @@ -273,6 +279,7 @@ msgstr "Kunne ikke oppdatere bruker." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Brukeren har ingen profil." @@ -1994,16 +2001,19 @@ msgid "Use defaults" msgstr "Bruk standard" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Gjenopprett standardutseende" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Tilbakestill til standardverdier" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Lagre utseende" @@ -2335,6 +2345,7 @@ msgstr "Fjern favoritt" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Populære notiser" @@ -2376,6 +2387,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s sine favorittnotiser" @@ -2388,6 +2401,7 @@ msgstr "Oppdateringer markert som favoritt av %1$s på %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Profilerte brukere" @@ -3651,7 +3665,6 @@ msgid "Password saved." msgstr "Passordet ble lagret" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Stier" @@ -4172,6 +4185,7 @@ msgid "Public timeline, page %d" msgstr "Offentlig tidslinje, side %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Offentlig tidslinje" @@ -4661,6 +4675,8 @@ msgstr "Gjentatt!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Svar til %s" @@ -4772,6 +4788,7 @@ msgid "System error uploading file." msgstr "Systemfeil ved opplasting av fil." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Alle medlemmer" @@ -5876,7 +5893,7 @@ msgstr "Ugyldig notisinnhold." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Bruker" @@ -5900,6 +5917,9 @@ msgstr "Ugyldig velkomsttekst. Maks lengde er 255 tegn." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ugyldig standardabonnement: '%1$s' er ikke bruker." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6144,7 +6164,6 @@ msgid "Contributors" msgstr "Bidragsytere" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Lisens" @@ -6173,7 +6192,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Programtillegg" @@ -6599,7 +6617,9 @@ msgstr "Svar" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6715,8 +6735,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Inget innhold for notis %d." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Ingen slik bruker." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6765,84 +6786,132 @@ msgstr "saveSettings() ikke implementert." msgid "Unable to delete design setting." msgstr "Kunne ikke lagre dine innstillinger for utseende." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Hjemmesiden" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Hjemmesiden" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrator" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Basic site configuration" msgstr "Endre nettstedskonfigurasjon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Nettsted" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Design configuration" msgstr "Tilgangskonfigurasjon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Utseende" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Brukerkonfigurasjon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Bruker" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Tilgangskonfigurasjon" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Tilgang" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Stikonfigurasjon" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Stier" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Sessions configuration" msgstr "Tilgangskonfigurasjon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Økter" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Rediger nettstedsnotis" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Nettstedsnotis" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Snapshots configuration" msgstr "Stikonfigurasjon" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Snapshots" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Lisens" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Stikonfigurasjon" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Programtillegg" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6851,6 +6920,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6887,9 +6957,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Kunne ikke sette inn melding." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Databasefeil ved innsetting av bruker i programmet OAuth." @@ -6990,6 +7062,13 @@ msgstr "Avbryt" msgid "Save" msgstr "Lagre" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Ukjent handling" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7012,11 +7091,12 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Tilbakekall" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7192,6 +7272,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7523,9 +7605,14 @@ msgstr "" msgid "Go to the installer." msgstr "Log inn på nettstedet" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Databasefeil" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Offentlig" @@ -7537,6 +7624,7 @@ msgstr "Slett" msgid "Delete this user" msgstr "Slett denne brukeren" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Lagre utseende" @@ -7549,14 +7637,6 @@ msgstr "Endre farger" msgid "Use defaults" msgstr "Bruk standard" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Gjenopprett standardutseende" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Tilbakestill til standardverdier" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7565,7 +7645,7 @@ msgstr "Last opp fil" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7580,10 +7660,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Av" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Lagre utseende" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7623,49 +7699,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Favoritter" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Venn av en venn" -#, fuzzy -msgid "Not an atom feed." -msgstr "Alle medlemmer" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Alle" +#. TRANS: Fieldset legend on gallery action page. #, fuzzy msgid "Select tag to filter" msgstr "Velg en operatør" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. #, fuzzy msgid "Tag" msgstr "Tagger" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Gå" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Innvilg denne brukeren rollen «%s»" @@ -7725,9 +7814,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Medlem siden" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7794,6 +7885,7 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -7894,23 +7986,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Ukjent innbokskilde %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Forlat" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Logg inn" @@ -8288,6 +8397,7 @@ msgstr "" msgid "Inbox" msgstr "Innboks" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Dine innkommende meldinger" @@ -8524,15 +8634,42 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "Kunne ikke sette inn bekreftelseskode." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Gruppeprofil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Svar" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritter" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Bruker" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Melding" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, fuzzy, php-format msgid "Tags in %s's notices" @@ -8556,18 +8693,25 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. #, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS-innstillinger" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Endre profilinnstillingene dine" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Brukerkonfigurasjon" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Logg ut" @@ -8575,13 +8719,18 @@ msgstr "Logg ut" msgid "Logout from the site" msgstr "Logg ut fra nettstedet" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Login to the site" msgstr "Log inn på nettstedet" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Søk" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Søk nettsted" @@ -8630,18 +8779,37 @@ msgstr "Alle grupper" msgid "Unimplemented method." msgstr "Ikke-implementert metode." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupper" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Brukergrupper" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Recent tags" +msgstr "Nyeste Tagger" + +#. TRANS: Menu item title in search group navigation panel. #, fuzzy msgid "Recent tags" msgstr "Nyeste Tagger" +#. TRANS: Menu item in search group navigation panel. #, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Profilerte brukere" +#. TRANS: Menu item in search group navigation panel. #, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populære notiser" @@ -8688,54 +8856,81 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Personer" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Finn personer på dette nettstedet" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notiser" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Finn innhold i notiser" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Finn grupper på dette nettstedet" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Hjelp" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Om" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "OSS/FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. #, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privat" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Kilde" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versjon" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. #, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Knuff" @@ -8746,36 +8941,86 @@ msgstr "Side uten tittel" msgid "More..." msgstr "Mer..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS-innstillinger" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Endre profilinnstillingene dine" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Brukerbilde" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Last opp en avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Passord" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Endre passordet ditt" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-post" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Endre eposthåndtering" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Brukerprofil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "Nettadresse" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Oppdatert med SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Tilkoblinger" +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Authorized connected applications" msgstr "Tilkoblede program" @@ -8787,12 +9032,6 @@ msgstr "Nettstedsnotis" msgid "Silence this user" msgstr "Slett denne brukeren" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8818,6 +9057,7 @@ msgid "People subscribed to %s." msgstr "Fjernabonner" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8828,12 +9068,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Grupper" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8841,7 +9075,6 @@ msgid "Groups %s is a member of." msgstr "%1$s grupper %2$s er et medlem av." #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Inviter" @@ -9112,28 +9345,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Allerede gjentatt den notisen." +#~ msgid "Restore default designs" +#~ msgstr "Gjenopprett standardutseende" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Beskriv deg selv og dine interesser på %d tegn" -#~ msgstr[1] "Beskriv deg selv og dine interesser på %d tegn" +#~ msgid "Reset back to default" +#~ msgstr "Tilbakestill til standardverdier" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Beskriv degselv og dine interesser" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, side %2$d" +#~ msgid "Save design" +#~ msgstr "Lagre utseende" #, fuzzy -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Notislisensen ‘%1$s’ er ikke kompatibel med nettstedslisensen ‘%2$s’." - -#~ msgid "Error repeating notice." -#~ msgstr "Feil ved repetering av notis." +#~ msgid "Not an atom feed." +#~ msgstr "Alle medlemmer" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 893fd2201e..5e2f931af4 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,20 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Toegang" @@ -136,6 +135,7 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Onbekende gebruiker." @@ -149,6 +149,12 @@ msgstr "%1$s en vrienden, pagina %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s en vrienden" @@ -278,6 +284,7 @@ msgstr "Het was niet mogelijk de gebruiker bij te werken." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Deze gebruiker heeft geen profiel." @@ -1158,34 +1165,32 @@ msgid "Join request canceled." msgstr "Het verzoek voor lidmaatschap is geweigerd." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "%s heeft geen openstaand verzoek voor deze groep." +msgstr "%s staat niet in de wachtrij voor uw abonnementen." #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." msgstr "" "Het was niet mogelijk het verzoek van gebruiker %1$s om lid te worden van de " -"groep %2$s te annuleren." +"groep %2$s te annuleren of goed te keuren." #. TRANS: Title for subscription approval ajax return #. TRANS: %1$s is the approved user's nickname -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request" -msgstr "Verzoek van %1$s voor %2$s." +msgstr "Verzoek van %1$s" #. TRANS: Message on page for user after approving a subscription request. -#, fuzzy msgid "Subscription approved." -msgstr "Het abonnement is geautoriseerd" +msgstr "Het abonnement is oedgekeurd." #. TRANS: Message on page for user after rejecting a subscription request. -#, fuzzy msgid "Subscription canceled." -msgstr "Autorisatie geannuleerd." +msgstr "Het abonnement is geweigerd." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1224,9 +1229,9 @@ msgstr "Deze mededeling is al een favoriet." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "Group memberships of %s" -msgstr "groepslidmaatschappen van %s" +msgstr "Groepslidmaatschappen van %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1593,7 +1598,6 @@ msgid "No profile with that ID." msgstr "Er is geen profiel met dat ID." #. TRANS: Title after unsubscribing from a group. -#, fuzzy msgctxt "TITLE" msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" @@ -1604,7 +1608,7 @@ msgstr "Geen bevestigingscode." #. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. msgid "Confirmation code not found." -msgstr "De bevestigingscode niet gevonden." +msgstr "De bevestigingscode is niet gevonden." #. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. msgid "That confirmation code is not for you!" @@ -1996,14 +2000,17 @@ msgid "Use defaults" msgstr "Standaardinstellingen gebruiken" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Het standaardontwerp toepassen." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "De standaardinstellingen toepassen." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Ontwerp opslaan." @@ -2334,6 +2341,7 @@ msgstr "Van uw favorietenlijst verwijderen." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Populaire mededelingen" @@ -2376,6 +2384,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Favoriete mededelingen van %s" @@ -2388,6 +2398,7 @@ msgstr "Updates op de favorietenlijst van %1$s op %2$s." #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Nieuwe gebruikers" @@ -3597,7 +3608,7 @@ msgstr "Nieuw wachtwoord" #. TRANS: Field title on page where to change password. #. TRANS: Field title on account registration page. msgid "6 or more characters." -msgstr "Zes of meer tekens" +msgstr "Zes of meer tekens." #. TRANS: Field label on page where to change password. In this field the new password should be typed a second time. msgctxt "LABEL" @@ -3644,7 +3655,6 @@ msgid "Password saved." msgstr "Het wachtwoord is opgeslagen." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Paden" @@ -4068,26 +4078,24 @@ msgstr "" "processen)." #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. -#, fuzzy msgid "Subscription policy" -msgstr "Abonnementen" +msgstr "Abonnementenbeleid" #. TRANS: Dropdown field option for following policy. -#, fuzzy msgid "Let anyone follow me" -msgstr "Het is alleen mogelijk om mensen te volgen." +msgstr "Iedereen mag mij volgen" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" -msgstr "" +msgstr "Vraag het me eerst" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." -msgstr "" +msgstr "Of andere gebruikers uw toestemming nodig hebben om u te volgen." #. TRANS: Checkbox label in profile settings. msgid "Make updates visible only to my followers" -msgstr "" +msgstr "Nieuwe berichten alleen weergeven aan mijn volgers" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed @@ -4119,11 +4127,10 @@ msgstr "Ongeldig label: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." msgstr "" -"Het was niet mogelijk de instelling voor automatisch abonneren voor de " -"gebruiker bij te werken." +"Het was niet mogelijk de instelling voor automatisch abonneren of het " +"abonneerbeleid voor de gebruiker bij te werken." #. TRANS: Server error thrown when user profile location preference settings could not be updated. msgid "Could not save location prefs." @@ -4161,6 +4168,7 @@ msgid "Public timeline, page %d" msgstr "Openbare tijdlijn, pagina %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Openbare tijdlijn" @@ -4638,6 +4646,8 @@ msgstr "Herhaald!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Antwoorden aan %s" @@ -4753,6 +4763,7 @@ msgid "System error uploading file." msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Dit is geen Atomfeed." @@ -5070,9 +5081,8 @@ msgid "Message from %1$s on %2$s" msgstr "Bericht van %1$s op %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "IM is niet beschikbaar." +msgstr "Niet beschikbaar." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5080,21 +5090,21 @@ msgstr "Deze mededeling is verwijderd." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "%2$s gelabeld door %1$s" +msgstr "Mededelingen van %1$s met het label %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "%2$s gelabeld door %1$s, pagina %3$d" +msgstr "Mededelingen van %1$s met het label %2$s, pagina %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Mededelingen met het label %1$s, pagina %2$d" +msgstr "Mededelingen van %1$s, pagina %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5477,7 +5487,6 @@ msgid "No code entered." msgstr "Er is geen code ingevoerd." #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Snapshots" @@ -5499,7 +5508,6 @@ msgid "Invalid snapshot report URL." msgstr "De rapportage-URL voor snapshots is ongeldig." #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "Snapshots" @@ -5517,33 +5525,29 @@ msgid "Data snapshots" msgstr "Snapshots van gegevens" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." msgstr "" -"Wanneer statistische gegevens naar de status.net-servers verzonden worden" +"Wanneer statistische gegevens naar de status.net-servers verzonden worden." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Frequentie" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." -msgstr "Iedere zoveel websitehits wordt een snapshot verzonden" +msgstr "Iedere zoveel websitehits wordt een snapshot verzonden." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "Rapportage-URL" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." -msgstr "Snapshots worden naar deze URL verzonden" +msgstr "Snapshots worden naar deze URL verzonden." #. TRANS: Title for button to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." -msgstr "Snapshotinstellingen opslaan" +msgstr "Snapshotinstellingen opslaan." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5556,28 +5560,23 @@ msgstr "Het was niet mogelijk het abonnement op te slaan." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "You may only approve your own pending subscriptions." -msgstr "" +msgstr "U mag alleen uw eigen aangevraagde abonnementen goedkeuren." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "Groepslidmaatschapsaanvragen voor %s die wachten op goedkeuring" +msgstr "Te behandelen volgersaanvragen voor %s" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "" -"Groepslidmaatschapsaanvragen voor %1$s die wachten op goedkeuring, pagina %2" -"$d" +msgstr "Te behandelen volgersaanvragen voor %1$s, pagina %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "" -"Een lijst met gebruikers die wachten om geaccepteerd te worden voor deze " -"groep." +msgstr "Een lijst met gebruikers die wachten op goedkeuring om u te volgen." #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5754,7 +5753,6 @@ msgstr "" "geabonneerd zijn." #. TRANS: Title of "tag other users" page. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "Labels" @@ -5783,7 +5781,7 @@ msgstr "Deze gebruiker is niet gemuilkorfd." #. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" -msgstr "Het abonnement is opgezegd" +msgstr "Uitgeschreven" #. TRANS: Client error displayed when trying to update profile with an incompatible license. #. TRANS: %1$s is the license incompatible with site license %2$s. @@ -5851,12 +5849,10 @@ msgid "URL shortening service is too long (maximum 50 characters)." msgstr "De URL voor de verkortingdienst is te lang (maximaal 50 tekens)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum URL length." msgstr "Ongeldig getal voor maximale URL-lengte." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum notice length." msgstr "Ongeldig getal voor maximale mededelingslengte." @@ -5864,7 +5860,7 @@ msgstr "Ongeldig getal voor maximale mededelingslengte." msgid "Error saving user URL shortening preferences." msgstr "Fout bij het opslaan van gebruikersinstellingen voor URL-verkorting." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Gebruiker" @@ -5887,6 +5883,9 @@ msgstr "Ongeldige welkomsttekst. De maximale lengte is 255 tekens." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profiel" @@ -5980,30 +5979,28 @@ msgid "Subscription authorized" msgstr "Het abonnement is geautoriseerd" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de site voor informatie over het volledig " -"afwijzen van een abonnement. Uw abonnementstoken is:" +"Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de website voor details over hoe het " +"abonnement te autoriseren." #. TRANS: Reject message header from Authorise subscription page. msgid "Subscription rejected" msgstr "Het abonnement is afgewezen" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " "subscription." msgstr "" -"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de site voor informatie over het volledig " -"afwijzen van een abonnement." +"Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de website voor details over hoe het " +"abonnement volledig af te wijzen." #. TRANS: Exception thrown when no valid user is found for an authorisation request. #. TRANS: %s is a listener URI. @@ -6133,7 +6130,6 @@ msgid "Contributors" msgstr "Medewerkers" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licentie" @@ -6172,7 +6168,6 @@ msgstr "" "License te hebben ontvangen. Zo niet, zie dan %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plug-ins" @@ -6359,23 +6354,21 @@ msgstr "" "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. -#, fuzzy msgid "Cannot repeat; original notice is missing or deleted." -msgstr "U kunt uw eigen mededeling niet herhalen." +msgstr "" +"Herhalen is niet mogelijk. De originele mededeling mist of is verwijderd." #. TRANS: Client error displayed when trying to repeat an own notice. msgid "You cannot repeat your own notice." msgstr "U kunt uw eigen mededeling niet herhalen." #. TRANS: Client error displayed when trying to repeat a non-public notice. -#, fuzzy msgid "Cannot repeat a private notice." -msgstr "U kunt uw eigen mededeling niet herhalen." +msgstr "U kunt een persoonlijk bericht niet herhalen." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#, fuzzy msgid "Cannot repeat a notice you cannot read." -msgstr "U kunt uw eigen mededeling niet herhalen." +msgstr "U kunt een mededeling die u niet kunt zien niet herhalen." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." @@ -6383,9 +6376,9 @@ msgstr "U hebt die mededeling al herhaald." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). -#, fuzzy, php-format +#, php-format msgid "%1$s has no access to notice %2$d." -msgstr "Deze gebruiker heeft geen laatste mededeling." +msgstr "%1$s heeft geen toegang tot de mededeling %2$d." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. @@ -6475,7 +6468,6 @@ msgid "Could not delete subscription." msgstr "Kon abonnement niet verwijderen." #. TRANS: Activity title when subscribing to another person. -#, fuzzy msgctxt "TITLE" msgid "Follow" msgstr "Volgen" @@ -6545,23 +6537,19 @@ msgid "User deletion in progress..." msgstr "Bezig met het verwijderen van de gebruiker..." #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Edit profile settings." -msgstr "Profielinstellingen bewerken" +msgstr "Profielinstellingen bewerken." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Edit" msgstr "Bewerken" #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Send a direct message to this user." -msgstr "Deze gebruiker een direct bericht zenden" +msgstr "Deze gebruiker een direct bericht zenden." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Message" msgstr "Bericht" @@ -6608,6 +6596,9 @@ msgstr "Antwoorden" msgid "Write a reply..." msgstr "Schrijf een antwoord..." +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Status" @@ -6733,8 +6724,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Geen inhoud voor mededeling %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "De gebruiker %s bestaat niet." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6781,79 +6773,128 @@ msgstr "saveSettings() is nog niet geïmplementeerd." msgid "Unable to delete design setting." msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Start" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Start" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Beheerder" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Basisinstellingen voor de website" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Website" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Instellingen vormgeving" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Uiterlijk" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Gebruikersinstellingen" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Gebruiker" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Toegangsinstellingen" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Toegang" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Padinstellingen" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Paden" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Sessieinstellingen" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessies" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Websitebrede mededeling opslaan" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Mededeling van de website" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Snapshotinstellingen" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Snapshots" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Sitelicentie instellen" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licentie" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Plug-ininstellingen" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Plug-ins" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6864,6 +6905,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Er is geen applicatie voor die gebruikerssleutel." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Het gebruik van de API is niet toegestaan." @@ -6899,11 +6941,13 @@ msgstr "" msgid "Could not issue access token." msgstr "Het was niet mogelijk het toegangstoken uit te geven." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Er is een databasefout opgetreden tijdens het toevoegen van de OAuth " "applicatiegebruiker." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Er is een databasefout opgetreden tijdens het toevoegen van de OAuth " @@ -7003,6 +7047,13 @@ msgstr "Annuleren" msgid "Save" msgstr "Opslaan" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Onbekende handeling" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " door " @@ -7025,11 +7076,12 @@ msgstr "Goedgekeurd op %1$s met toegang \"%2$s\"." msgid "Access token starting with: %s" msgstr "Toegangstoken begint met: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Intrekken" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Het element author moet een element name bevatten." @@ -7067,7 +7119,6 @@ msgid "Cancel join request" msgstr "Lidmaatschapsverzoek weigeren" #. TRANS: Button text for form action to cancel a subscription request. -#, fuzzy msgctxt "BUTTON" msgid "Cancel subscription request" msgstr "Lidmaatschapsverzoek weigeren" @@ -7202,6 +7253,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7524,9 +7577,14 @@ msgstr "" msgid "Go to the installer." msgstr "Naar het installatieprogramma gaan." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Databasefout" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Openbaar" @@ -7538,6 +7596,7 @@ msgstr "Verwijderen" msgid "Delete this user" msgstr "Gebruiker verwijderen" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Ontwerp wijzigen" @@ -7549,22 +7608,15 @@ msgstr "Kleuren wijzigen" msgid "Use defaults" msgstr "Standaardinstellingen gebruiken" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Standaardontwerp toepassen" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Standaardinstellingen toepassen" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Bestand uploaden" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale " "bestandsgroote is 2 megabyte." @@ -7579,10 +7631,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Uit" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Ontwerp opslaan" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7617,46 +7665,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Aan favorietenlijst toevoegen" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "Vrienden van vrienden (FOAF)" -msgid "Not an atom feed." -msgstr "Dit is geen Atomfeed." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Er staat geen auteur in de feed." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Het is niet mogelijk te importeren zonder gebruiker." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feeds" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Alle" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Selecteer een label om op te filteren" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Label" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Kies een label om de lijst kleiner te maken" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "OK" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Deze gebruiker de rol \"%s\" geven" @@ -7715,9 +7779,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Lidmaatschapsbeleid" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "Open voor iedereen" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "Beheerders moeten alle leden accepteren" @@ -7784,6 +7850,7 @@ msgid "%s blocked users" msgstr "Geblokkeerde gebruikers in %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Beheer" @@ -7884,13 +7951,16 @@ msgid_plural "%dB" msgstr[0] "%d byte" msgstr[1] "%d bytes" -#, php-format +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#, fuzzy, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" "Gebruiker \"%s\" op de site %s heeft aangegeven dat de schermnaam %s van hem " "is. Als dat klopt, dan kunt u dit bevestigen door op deze verwijzing te " @@ -7898,14 +7968,28 @@ msgstr "" "verwijzing naar in de adresbalk van uw webbrowser. Als u deze gebruiker niet " "bent, of u hebt niet om deze bevestiging gevraagd, negeer dit bericht dan." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Onbekende bron Postvak IN %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Verlaten" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Aanmelden" @@ -7969,19 +8053,19 @@ msgstr "%1$s volgt nu uw berichten %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s would like to listen to your notices on %2$s." -msgstr "%1$s volgt nu uw berichten %2$s." +msgstr "%1$s wil uw berichten volgen op %2$s." #. TRANS: Main body of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "" "%1$s would like to listen to your notices on %2$s. You may approve or reject " "their subscription at %3$s" msgstr "" -"%1$s wil lid worden van de groep %2$s op %3$s. U kunt dit verzoek accepteren " -"of weigeren via de volgende verwijzing: %4$s." +"%1$s wil uw berichten volgen op %2$s. U kunt dit verzoek accepteren of " +"weigeren via de volgende verwijzing: %3$s." #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, @@ -8270,6 +8354,7 @@ msgstr "" msgid "Inbox" msgstr "Postvak IN" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Uw inkomende berichten" @@ -8468,9 +8553,8 @@ msgid "Delete this notice" msgstr "Deze mededeling verwijderen" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#, fuzzy msgid "Notice repeated." -msgstr "Mededeling herhaald" +msgstr "Mededeling herhaald." msgid "Update your status..." msgstr "Werk uw status bij..." @@ -8500,15 +8584,41 @@ msgstr "Dubbele mededeling." msgid "Couldn't insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Profiel" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Uw profiel" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Antwoorden" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favorieten" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Gebruiker" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Berichten" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8532,27 +8642,40 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "Plug-inbeschrijvingen zijn niet beschikbaar als uitgeschakeld." +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS-instellingen" +#. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" msgstr "Persoonlijke instellingen wijzigen" +#. TRANS: Menu item title in primary navigation panel. msgid "Site configuration" msgstr "Siteinstellingen" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Afmelden" msgid "Logout from the site" msgstr "Van de site afmelden" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Bij de site aanmelden" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Zoeken" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Site doorzoeken" @@ -8600,15 +8723,35 @@ msgstr "Alle groepen" msgid "Unimplemented method." msgstr "Methode niet geïmplementeerd." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Groepen" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Gebruikersgroepen" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Recente labels" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Recente labels" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Uitgelicht" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populair" @@ -8645,59 +8788,89 @@ msgstr "Site doorzoeken" #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. msgid "Keyword(s)" -msgstr "Term(en)" +msgstr "Trefwoord(en)" #. TRANS: Button text for searching site. msgctxt "BUTTON" msgid "Search" msgstr "Zoeken" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Gebruikers" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Gebruikers op deze site vinden" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Mededelingen" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Inhoud van mededelingen vinden" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Groepen op deze site vinden" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Help" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Over" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Veel gestelde vragen" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Gebruiksvoorwaarden" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacy" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Broncode" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versie" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contact" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Widget" @@ -8707,36 +8880,87 @@ msgstr "Naamloze sectie" msgid "More..." msgstr "Meer..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS-instellingen" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Uw profielgegevens wijzigen" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Avatar uploaden" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Wachtwoord" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Uw wachtwoord wijzigen" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "E-mailafhandeling wijzigen" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Uw profiel ontwerpen" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "URL-verkorters" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Updates via instant messenger (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Updates via SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Verbindingen" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Geautoriseerde verbonden applicaties" @@ -8747,69 +8971,55 @@ msgid "Silence this user" msgstr "Deze gebruiker muilkorven" #. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profiel" - -#. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscriptions" msgstr "Abonnementen" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to." -msgstr "Gebruikers waarop %s een abonnement heeft" +msgstr "Gebruikers waarop %s een abonnement heeft." #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Abonnees" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s." -msgstr "Gebruikers met een abonnement op %s" +msgstr "Gebruikers met een abonnement op %s." #. TRANS: Menu item in local navigation menu. -#, fuzzy, php-format +#. TRANS: %d is the number of pending subscription requests. +#, php-format msgctxt "MENU" msgid "Pending (%d)" -msgstr "Opstaande aanvraag voor groepslidmaatschap" +msgstr "In behandeling (%d)" #. TRANS: Menu item title in local navigation menu. #, php-format msgid "Approve pending subscription requests." -msgstr "" - -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Groepen" +msgstr "Openstaande volgverzoeken behandelen." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Groups %s is a member of." -msgstr "Groepen waar %s lid van is" +msgstr "Groepen waar %s lid van is." #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" -msgstr "Uitnodigen" +msgstr "Uitnodigingen" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Invite friends and colleagues to join you on %s." -msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" +msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s." msgid "Subscribe to this user" msgstr "Op deze gebruiker abonneren" @@ -8941,24 +9151,23 @@ msgstr "Meest actieve gebruikers" #. TRANS: Option in drop-down of potential addressees. msgctxt "SENDTO" msgid "Everyone" -msgstr "" +msgstr "Iedereen" #. TRANS: Option in drop-down of potential addressees. #. TRANS: %s is a StatusNet sitename. #, php-format msgid "My colleagues at %s" -msgstr "" +msgstr "Mijn collega's bij %s" #. TRANS: Label for drop-down of potential addressees. -#, fuzzy msgctxt "LABEL" msgid "To:" -msgstr "Aan" +msgstr "Aan:" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. -#, fuzzy, php-format +#, php-format msgid "Unknown to value: \"%s\"." -msgstr "Onbekend werkwoord: \"%s\"." +msgstr "Onbekende waarde voor \"Aan\": \"%s\"." #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" @@ -9073,32 +9282,14 @@ msgstr "Ongeldige XML. De XRD-root mist." msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." -#~ msgid "Already repeated that notice." -#~ msgstr "U hebt die mededeling al herhaald." +#~ msgid "Restore default designs" +#~ msgstr "Standaardontwerp toepassen" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Beschrijf uzelf en uw interesses in %d teken" -#~ msgstr[1] "Beschrijf uzelf en uw interesses in %d tekens" +#~ msgid "Reset back to default" +#~ msgstr "Standaardinstellingen toepassen" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Beschrijf uzelf en uw interesses" +#~ msgid "Save design" +#~ msgstr "Ontwerp opslaan" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "" -#~ "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, pagina %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "De licentie \"%1$s\" voor de stream die u wilt volgen is niet compatibel " -#~ "met de sitelicentie \"%2$s\"." - -#~ msgid "Invalid group join approval: not pending." -#~ msgstr "Ongeldig groepslidmaatschapverzoek: niet in behandeling." - -#~ msgid "Error repeating notice." -#~ msgstr "Er is een fout opgetreden bij het herhalen van de mededeling." +#~ msgid "Not an atom feed." +#~ msgstr "Dit is geen Atomfeed." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index cf6ec7ce4b..1b63d42d3c 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:09+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,14 +20,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Dostęp" @@ -138,6 +137,7 @@ msgstr "Nie ma takiej strony." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Brak takiego użytkownika." @@ -151,6 +151,12 @@ msgstr "%1$s i przyjaciele, strona %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "Użytkownik %s i przyjaciele" @@ -278,6 +284,7 @@ msgstr "Nie można zaktualizować użytkownika." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Użytkownik nie posiada profilu." @@ -1990,16 +1997,19 @@ msgid "Use defaults" msgstr "Użyj domyślne" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Przywróć domyślny wygląd" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Przywróć domyślne ustawienia" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Zapisz wygląd" @@ -2332,6 +2342,7 @@ msgstr "Usuń wpis z ulubionych" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Popularne wpisy" @@ -2373,6 +2384,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Ulubione wpisy użytkownika %s" @@ -2385,6 +2398,7 @@ msgstr "Aktualizacje ulubione przez użytkownika %1$s na %2$s." #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Znani użytkownicy" @@ -3659,7 +3673,6 @@ msgid "Password saved." msgstr "Zapisano hasło." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Ścieżki" @@ -4182,6 +4195,7 @@ msgid "Public timeline, page %d" msgstr "Publiczna oś czasu, strona %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Publiczna oś czasu" @@ -4666,6 +4680,8 @@ msgstr "Powtórzono." #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Odpowiedzi na %s" @@ -4777,6 +4793,7 @@ msgid "System error uploading file." msgstr "Błąd systemu podczas wysyłania pliku." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Nie jest kanałem Atom." @@ -5898,7 +5915,7 @@ msgstr "Nieprawidłowa treść wpisu." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Użytkownik" @@ -5921,6 +5938,9 @@ msgstr "Nieprawidłowy tekst powitania. Maksymalna długość to 255 znaków." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6019,7 +6039,6 @@ msgid "Subscription authorized" msgstr "Upoważniono subskrypcję" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6033,7 +6052,6 @@ msgid "Subscription rejected" msgstr "Odrzucono subskrypcję" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6170,7 +6188,6 @@ msgid "Contributors" msgstr "Współtwórcy" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licencja" @@ -6211,7 +6228,6 @@ msgstr "" "License); jeśli nie - proszę odwiedzić stronę internetową %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Wtyczki" @@ -6652,7 +6668,9 @@ msgstr "Odpowiedz" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6775,8 +6793,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Brak zawartości dla wpisu %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Brak użytkownika %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6823,80 +6842,129 @@ msgstr "saveSettings() nie jest zaimplementowane." msgid "Unable to delete design setting." msgstr "Nie można usunąć ustawienia wyglądu." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Strona domowa" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Strona domowa" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administrator" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Podstawowa konfiguracja witryny" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Witryna" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Konfiguracja wyglądu" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Wygląd" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Konfiguracja użytkownika" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Użytkownik" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Konfiguracja dostępu" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Dostęp" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Konfiguracja ścieżek" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Ścieżki" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Konfiguracja sesji" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sesje" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Zmodyfikuj wpis witryny" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Wpis witryny" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Konfiguracja migawek" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Migawki" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Ustaw licencję witryny" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licencja" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Konfiguracja ścieżek" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Wtyczki" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6907,6 +6975,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Brak aplikacji dla tego klucza klienta." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6940,9 +7009,11 @@ msgstr "Nie można odnaleźć profilu i aplikacji powiązanych z tokenem żądan msgid "Could not issue access token." msgstr "Nie można wywołać tokenu żądania." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Błąd bazy danych podczas wprowadzania użytkownika aplikacji OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "Błąd bazy danych podczas aktualizowania użytkownika aplikacji OAuth." @@ -7041,6 +7112,13 @@ msgstr "Anuluj" msgid "Save" msgstr "Zapisz" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Nieznane działanie" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " autorstwa " @@ -7063,11 +7141,12 @@ msgstr "Zaakceptowano %1$s - dostęp \"%2$s\"." msgid "Access token starting with: %s" msgstr "Token dostępu rozpoczynający się od: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Unieważnij" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Element \"author\" musi zawierać element \"name\"." @@ -7239,6 +7318,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7567,9 +7648,14 @@ msgstr "Należy uruchomić instalator, aby to naprawić." msgid "Go to the installer." msgstr "Przejdź do instalatora." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Błąd bazy danych" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Publiczny" @@ -7581,6 +7667,7 @@ msgstr "Usuń" msgid "Delete this user" msgstr "Usuń tego użytkownika" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Zapisz wygląd" @@ -7593,22 +7680,15 @@ msgstr "Zmień kolory" msgid "Use defaults" msgstr "Użycie domyślnych" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Przywróć domyślny wygląd" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Przywróć domyślne ustawienia" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Wyślij plik" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "Można wysłać osobisty obraz tła. Maksymalny rozmiar pliku to 2 MB." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7621,10 +7701,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Wyłączone" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Zapisz wygląd" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7661,46 +7737,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Dodaj do ulubionych" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "Nie jest kanałem Atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Brak autora w kanale." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Nie można zaimportować bez użytkownika." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Kanały" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Wszystko" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Wybierz znacznik do filtrowania" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Znacznik" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Wybierz znacznik do ograniczonej listy" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Przejdź" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Nadaj użytkownikowi rolę \"%s\"" @@ -7768,9 +7860,11 @@ msgstr[2] "" msgid "Membership policy" msgstr "Członek od" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7838,6 +7932,7 @@ msgid "%s blocked users" msgstr "%s zablokowanych użytkowników" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrator" @@ -7941,23 +8036,40 @@ msgstr[0] "%d B" msgstr[1] "%d B" msgstr[2] "%d B" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Nieznane źródło skrzynki odbiorczej %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Opuść" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Zaloguj się" @@ -8340,6 +8452,7 @@ msgstr "" msgid "Inbox" msgstr "Odebrane" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Wiadomości przychodzące" @@ -8573,15 +8686,42 @@ msgstr "Podwójny wpis." msgid "Couldn't insert new subscription." msgstr "Nie można wprowadzić nowej subskrypcji." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Profil grupy" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Odpowiedzi" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Ulubione" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Użytkownik" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Wiadomość" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8605,29 +8745,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Ustawienia SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Zmień ustawienia profilu" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Konfiguracja użytkownika" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Wyloguj się" msgid "Logout from the site" msgstr "Wyloguj się z witryny" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Zaloguj się na witrynie" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Wyszukaj" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Przeszukaj witrynę" @@ -8676,15 +8829,36 @@ msgstr "Wszystkie grupy" msgid "Unimplemented method." msgstr "Niezaimplementowana metoda." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupy" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupy użytkowników" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Ostatnie znaczniki" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Ostatnie znaczniki" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Znane" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popularne" @@ -8728,52 +8902,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Wyszukaj" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Osoby" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Znajdź osoby na tej witrynie" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Wpisy" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Przeszukaj zawartość wpisów" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Znajdź grupy na tej witrynie" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Pomoc" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "O usłudze" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Prywatność" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Kod źródłowy" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Wersja" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Odznaka" @@ -8783,36 +8987,87 @@ msgstr "Sekcja bez nazwy" msgid "More..." msgstr "Więcej..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Ustawienia SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Zmień ustawienia profilu" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Awatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Wyślij awatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Hasło" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Zmień hasło" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Zmień obsługę adresu e-mail" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Wygląd profilu" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "Adres URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "Komunikator" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Aktualizacje przez komunikator" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Aktualizacje przez wiadomości SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Połączenia" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Upoważnione połączone aplikacje" @@ -8822,12 +9077,6 @@ msgstr "Wycisz" msgid "Silence this user" msgstr "Wycisz tego użytkownika" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8853,6 +9102,7 @@ msgid "People subscribed to %s." msgstr "Osoby subskrybowane do %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8863,12 +9113,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Grupy" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8876,7 +9120,6 @@ msgid "Groups %s is a member of." msgstr "Grupy %s są członkiem" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Zaproś" @@ -9162,29 +9405,14 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD." msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." -#~ msgid "Already repeated that notice." -#~ msgstr "Już powtórzono ten wpis." +#~ msgid "Restore default designs" +#~ msgstr "Przywróć domyślny wygląd" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Opisz siebie i swoje zainteresowania w %d znaku" -#~ msgstr[1] "Opisz siebie i swoje zainteresowania w %d znakach" -#~ msgstr[2] "Opisz siebie i swoje zainteresowania w %d znakach" +#~ msgid "Reset back to default" +#~ msgstr "Przywróć domyślne ustawienia" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Opisz się i swoje zainteresowania" +#~ msgid "Save design" +#~ msgstr "Zapisz wygląd" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, strona %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Licencja nasłuchiwanego strumienia \"%1$s\" nie jest zgodna z licencją " -#~ "witryny \"%2$s\"." - -#~ msgid "Error repeating notice." -#~ msgstr "Błąd podczas powtarzania wpisu." +#~ msgid "Not an atom feed." +#~ msgstr "Nie jest kanałem Atom." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index f3ba5bd0b5..c35803ed95 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -17,20 +17,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:10+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Acesso" @@ -141,6 +140,7 @@ msgstr "Página não foi encontrada." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Utilizador não foi encontrado." @@ -154,6 +154,12 @@ msgstr "%1$s e amigos, página %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amigos" @@ -280,6 +286,7 @@ msgstr "Não foi possível actualizar o utilizador." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Utilizador não tem perfil." @@ -1962,14 +1969,17 @@ msgid "Use defaults" msgstr "Usar padrão" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Restaurar designs padrão." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Repor para o padrão." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Salvar o design." @@ -2305,6 +2315,7 @@ msgstr "Retirar dos favoritos." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Notas populares" @@ -2345,6 +2356,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Notas favoritas de %s" @@ -2357,6 +2370,7 @@ msgstr "Actualizações marcadas por %1$s em %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Utilizadores em destaque" @@ -3621,7 +3635,6 @@ msgid "Password saved." msgstr "Senha gravada." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Localizações" @@ -4154,6 +4167,7 @@ msgid "Public timeline, page %d" msgstr "Notas públicas, página %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Notas públicas" @@ -4650,6 +4664,8 @@ msgstr "Repetida!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respostas a %s" @@ -4763,6 +4779,7 @@ msgid "System error uploading file." msgstr "Ocorreu um erro de sistema ao transferir o ficheiro." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Todos os membros" @@ -5880,7 +5897,7 @@ msgstr "Conteúdo da nota é inválido." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Utilizador" @@ -5904,6 +5921,9 @@ msgstr "Texto de boas-vindas inválido. Tamanho máx. é 255 caracteres." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -6154,7 +6174,6 @@ msgid "Contributors" msgstr "Colaboradores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licença" @@ -6192,7 +6211,6 @@ msgstr "" "General Public License. Se não a tiver recebido, consulte %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plugins" @@ -6626,7 +6644,9 @@ msgstr "Responder" msgid "Write a reply..." msgstr "Escrever uma resposta..." +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6752,8 +6772,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Procurar no conteúdo das notas" -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Utilizador %s não foi encontrado." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6800,79 +6821,128 @@ msgstr "saveSettings() não implementado." msgid "Unable to delete design setting." msgstr "Não foi possível apagar a configuração do estilo." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Página pessoal" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Página pessoal" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Gestor" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuração básica do site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuração do estilo" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Estilo" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuração do utilizador" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Utilizador" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuração de acesso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acesso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuração das localizações" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Localizações" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuração das sessões" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessões" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Editar aviso do site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Aviso do site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configuração dos instântaneos" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Instantâneos" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Conjunto de licenças do site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licença" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Configuração dos plugins" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Plugins" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "API requer acesso de leitura e escrita, mas só tem acesso de leitura." @@ -6881,6 +6951,7 @@ msgstr "API requer acesso de leitura e escrita, mas só tem acesso de leitura." msgid "No application for that consumer key." msgstr "Nenhuma aplicação para essa chave de consumidor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6916,9 +6987,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Não foi possível emitir a ficha de acesso." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" "Erro na actualização da base de dados ao inserir o utilizador da aplicação " @@ -7017,6 +7090,13 @@ msgstr "Cancelar" msgid "Save" msgstr "Gravar" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Acção desconhecida" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "por " @@ -7039,11 +7119,12 @@ msgstr "Aprovado a %1$s - acesso \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Retirar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7219,6 +7300,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7543,9 +7626,14 @@ msgstr "Talvez queira correr o instalador para resolver esta questão." msgid "Go to the installer." msgstr "Ir para o instalador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Erro de base de dados" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Público" @@ -7557,6 +7645,7 @@ msgstr "Apagar" msgid "Delete this user" msgstr "Apagar este utilizador" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Gravar o estilo" @@ -7569,22 +7658,15 @@ msgstr "Alterar cores" msgid "Use defaults" msgstr "Usar predefinições" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Repor estilos predefinidos" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Repor predefinição" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Carregar ficheiro" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Pode carregar uma imagem de fundo pessoal. O tamanho máximo do ficheiro é " "2Mb." @@ -7601,10 +7683,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desligar" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Gravar o estilo" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7641,47 +7719,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Eleger como favorita" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Todos os membros" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Todas" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Seleccione uma categoria para filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Categoria" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Escolha uma categoria para reduzir a lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Prosseguir" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Atribuir a este utilizador a função \"%s\"" @@ -7743,9 +7835,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membro desde" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7812,6 +7906,7 @@ msgid "%s blocked users" msgstr "Utilizadores bloqueados de %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Gestor" @@ -7912,23 +8007,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Origem da caixa de entrada desconhecida \"%s\"." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Afastar-me" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Entrar" @@ -8310,6 +8422,7 @@ msgstr "" msgid "Inbox" msgstr "Recebidas" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Mensagens recebidas" @@ -8546,16 +8659,43 @@ msgstr "Nota duplicada." msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir nova subscrição." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. #, fuzzy msgid "Your profile" msgstr "Perfil do grupo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respostas" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritas" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Utilizador" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mensagem" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8579,29 +8719,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Configurações" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Modificar as suas definições de perfil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Configuração do utilizador" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Sair" msgid "Logout from the site" msgstr "Terminar esta sessão" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Iniciar uma sessão" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Pesquisa" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Pesquisar no site" @@ -8649,15 +8802,36 @@ msgstr "Todos os grupos" msgid "Unimplemented method." msgstr "Método não implementado." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupos" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Categorias recentes" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Categorias recentes" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Destaques" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populares" @@ -8702,52 +8876,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Pesquisar" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Pessoas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Procurar pessoas neste site" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notas" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Procurar no conteúdo das notas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Procurar grupos neste site" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Ajuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Sobre" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Termos" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacidade" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Código fonte" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versão" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contacto" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Emblema" @@ -8757,36 +8961,87 @@ msgstr "Secção sem título" msgid "More..." msgstr "Mais..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Configurações" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Modificar as suas definições de perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Carregar um avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Senha" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Modificar a sua senha" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Correio" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Alterar manuseamento de email" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Altere o estilo do seu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Actualizações por mensagem instantânea (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Actualizações por SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Ligações" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicações ligadas autorizadas" @@ -8796,12 +9051,6 @@ msgstr "Silenciar" msgid "Silence this user" msgstr "Silenciar este utilizador" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Perfil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8827,6 +9076,7 @@ msgid "People subscribed to %s." msgstr "Pessoas que subscrevem %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8837,12 +9087,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Grupos" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8850,7 +9094,6 @@ msgid "Groups %s is a member of." msgstr "Grupos de que %s é membro" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convidar" @@ -9125,29 +9368,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Já repetiu essa nota." +#~ msgid "Restore default designs" +#~ msgstr "Repor estilos predefinidos" + +#~ msgid "Reset back to default" +#~ msgstr "Repor predefinição" + +#~ msgid "Save design" +#~ msgstr "Gravar o estilo" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Descreva-se e aos seus interesses (máx. 140 caracteres)" -#~ msgstr[1] "Descreva-se e aos seus interesses (máx. 140 caracteres)" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Descreva-se e aos seus interesses" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Onde está, por ex. \"Cidade, Região, País\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, página %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Licença ‘%1$s’ da listenee stream não é compatível com a licença ‘%2$s’ " -#~ "do site." - -#~ msgid "Error repeating notice." -#~ msgstr "Erro ao repetir nota." +#~ msgid "Not an atom feed." +#~ msgstr "Todos os membros" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 3da4511c93..ee0b6f0827 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,21 +15,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:12+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Acesso" @@ -140,6 +139,7 @@ msgstr "Esta página não existe." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Este usuário não existe." @@ -153,6 +153,12 @@ msgstr "%1$s e amigos, pág. %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amigos" @@ -281,6 +287,7 @@ msgstr "Não foi possível atualizar o usuário." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "O usuário não tem perfil." @@ -2008,16 +2015,19 @@ msgid "Use defaults" msgstr "Usar o padrão|" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Restaura a aparência padrão" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Restaura de volta ao padrão" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Salvar a aparência" @@ -2355,6 +2365,7 @@ msgstr "Desmarcar a favorita" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Mensagens populares" @@ -2396,6 +2407,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Mensagens favoritas de %s" @@ -2408,6 +2421,7 @@ msgstr "Mensagens favoritas de %1$s no %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Usuários em destaque" @@ -3696,7 +3710,6 @@ msgid "Password saved." msgstr "A senha foi salva." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Caminhos" @@ -4218,6 +4231,7 @@ msgid "Public timeline, page %d" msgstr "Mensagens públicas, pág. %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Mensagens públicas" @@ -4713,6 +4727,8 @@ msgstr "Repetida!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Respostas para %s" @@ -4830,6 +4846,7 @@ msgid "System error uploading file." msgstr "Erro no sistema durante o envio do arquivo." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Todos os membros" @@ -5944,7 +5961,7 @@ msgstr "O conteúdo da mensagem é inválido." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Usuário" @@ -5968,6 +5985,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Assinatura padrão inválida: '%1$s' não é um usuário." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Perfil" @@ -6066,7 +6086,6 @@ msgid "Subscription authorized" msgstr "A assinatura foi autorizada" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6081,7 +6100,6 @@ msgid "Subscription rejected" msgstr "A assinatura foi recusada" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6222,7 +6240,6 @@ msgid "Contributors" msgstr "Colaboradores" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licença" @@ -6261,7 +6278,6 @@ msgstr "" "este programa. Caso contrário, veja %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Plugins" @@ -6690,7 +6706,9 @@ msgstr "Responder" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6813,8 +6831,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Encontre conteúdo de mensagens" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Este usuário não existe." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6861,80 +6880,129 @@ msgstr "saveSettings() não implementado." msgid "Unable to delete design setting." msgstr "Não foi possível excluir as configurações da aparência." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Site" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Site" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Admin" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Configuração básica do site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Configuração da aparência" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Aparência" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuração do usuário" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Usuário" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Configuração do acesso" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Acesso" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Configuração dos caminhos" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Caminhos" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Configuração das sessões" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessões" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Editar os avisos do site" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Avisos do site" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Configurações das estatísticas" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Estatísticas" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licença" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Configuração dos caminhos" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Plugins" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6945,6 +7013,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Não foi encontrado nenhuma aplicação para essa chave de consumidor." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6981,10 +7050,12 @@ msgstr "" msgid "Could not issue access token." msgstr "Não foi possível inserir a mensagem." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" "Erro no banco de dados durante a inserção do usuário da aplicativo OAuth." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "" @@ -7084,6 +7155,13 @@ msgstr "Cancelar" msgid "Save" msgstr "Salvar" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Ação desconhecida" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7106,11 +7184,12 @@ msgstr "Aprovado em %1$s - acesso \"%2$s\"." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Revogar" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7287,6 +7366,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7617,9 +7698,14 @@ msgstr "Você pode querer executar o instalador para corrigir isto." msgid "Go to the installer." msgstr "Ir para o instalador." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Erro no banco de dados" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Público" @@ -7631,6 +7717,7 @@ msgstr "Excluir" msgid "Delete this user" msgstr "Excluir este usuário" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Salvar a aparência" @@ -7643,14 +7730,6 @@ msgstr "Alterar a cor" msgid "Use defaults" msgstr "Usar o padrão|" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Restaura a aparência padrão" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Restaura de volta ao padrão" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7659,7 +7738,7 @@ msgstr "Enviar arquivo" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Você pode enviar sua imagem de fundo. O tamanho máximo do arquivo é de 2Mb." @@ -7675,10 +7754,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desativado" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Salvar a aparência" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7715,47 +7790,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Tornar favorita" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Todos os membros" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Todas" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Selecione a etiqueta para filtrar" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Etiqueta" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Selecione uma etiqueta para reduzir a lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Ir" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Associa o papel \"%s\" a este usuário" @@ -7819,9 +7908,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Membro desde" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7888,6 +7979,7 @@ msgid "%s blocked users" msgstr "Usuários bloqueados de %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administrar" @@ -7988,23 +8080,40 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Fonte da caixa de entrada desconhecida %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Sair" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Entrar" @@ -8387,6 +8496,7 @@ msgstr "" msgid "Inbox" msgstr "Recebidas" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Suas mensagens recebidas" @@ -8623,15 +8733,42 @@ msgstr "Nota duplicada." msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir a nova assinatura." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Perfil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Perfil do grupo" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Respostas" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoritos" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Usuário" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Mensagem" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8655,29 +8792,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Configuração do SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Alterar as suas configurações de perfil" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Configuração do usuário" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Sair" msgid "Logout from the site" msgstr "Sai do site" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Autentique-se no site" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Pesquisar" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Procurar no site" @@ -8726,15 +8876,36 @@ msgstr "Todos os grupos" msgid "Unimplemented method." msgstr "Método não implementado." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Grupos de usuário" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Etiquetas recentes" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etiquetas recentes" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Em destaque" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Popular" @@ -8779,52 +8950,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Pesquisar" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Pessoas" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Encontre pessoas neste site" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Mensagens" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Encontre conteúdo de mensagens" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Encontre grupos neste site" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Ajuda" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Sobre" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Termos de uso" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Privacidade" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Fonte" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Versão" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Contato" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Mini-aplicativo" @@ -8834,36 +9035,87 @@ msgstr "Seção sem título" msgid "More..." msgstr "Mais..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Configuração do SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Alterar as suas configurações de perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Enviar um avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Senha" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Alterar a sua senha" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-mail" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Configurações de uso do e-mail" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Mude a aparência do seu perfil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "Site" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "MI" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Atualizações via mensageiro instantâneo (MI)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Atualizações via SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Conexões" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Aplicações autorizadas conectadas" @@ -8873,12 +9125,6 @@ msgstr "Silenciar" msgid "Silence this user" msgstr "Silenciar este usuário" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Perfil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8904,6 +9150,7 @@ msgid "People subscribed to %s." msgstr "Assinantes de %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8914,12 +9161,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Grupos" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8927,7 +9168,6 @@ msgid "Groups %s is a member of." msgstr "Grupos dos quais %s é membro" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convidar" @@ -9200,28 +9440,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Você já repetiu essa mensagem." +#~ msgid "Restore default designs" +#~ msgstr "Restaura a aparência padrão" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Descreva a si mesmo e os seus interesses em %d caractere" -#~ msgstr[1] "Descreva a si mesmo e os seus interesses em %d caracteres" +#~ msgid "Reset back to default" +#~ msgstr "Restaura de volta ao padrão" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Descreva a si mesmo e os seus interesses" +#~ msgid "Save design" +#~ msgstr "Salvar a aparência" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, pág. %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "A licença '%1$s' do fluxo do usuário não é compatível com a licença '%2" -#~ "$s' do site." - -#~ msgid "Error repeating notice." -#~ msgstr "Erro na repetição da mensagem." +#, fuzzy +#~ msgid "Not an atom feed." +#~ msgstr "Todos os membros" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index c164e129cc..961972298b 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -18,21 +18,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Доступ" @@ -144,6 +143,7 @@ msgstr "Нет такой страницы." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Нет такого пользователя." @@ -157,6 +157,12 @@ msgstr "%1$s и друзья, страница %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s и друзья" @@ -283,6 +289,7 @@ msgstr "Не удаётся обновить пользователя." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "У пользователя нет профиля." @@ -1988,14 +1995,17 @@ msgid "Use defaults" msgstr "Использовать значения по умолчанию" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Восстановить оформление по умолчанию." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Восстановить значения по умолчанию." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Сохранить оформление." @@ -2334,6 +2344,7 @@ msgstr "Удаление записи из числа любимых." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Популярные записи" @@ -2375,6 +2386,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Любимые записи %s" @@ -2387,6 +2400,7 @@ msgstr "Обновления, понравившиеся %1$s на %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Особые пользователи" @@ -3634,7 +3648,6 @@ msgid "Password saved." msgstr "Пароль сохранён." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Пути" @@ -4146,6 +4159,7 @@ msgid "Public timeline, page %d" msgstr "Общая лента, страница %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Общая лента" @@ -4615,6 +4629,8 @@ msgstr "Повторено!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Ответы для %s" @@ -4726,6 +4742,7 @@ msgid "System error uploading file." msgstr "Системная ошибка при загрузке файла." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Не является каналом Atom." @@ -5834,7 +5851,7 @@ msgstr "Неверное значение параметра максималь msgid "Error saving user URL shortening preferences." msgstr "Ошибка при сохранении настроек сервиса сокращения URL." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Пользователь" @@ -5858,6 +5875,9 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Профиль" @@ -5950,7 +5970,6 @@ msgid "Subscription authorized" msgstr "Подписка авторизована" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -5964,7 +5983,6 @@ msgid "Subscription rejected" msgstr "Подписка отменена" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6101,7 +6119,6 @@ msgid "Contributors" msgstr "Разработчики" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Лицензия" @@ -6140,7 +6157,6 @@ msgstr "" "этой программой. Если нет, см. %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Плагины" @@ -6569,6 +6585,9 @@ msgstr "Ответить" msgid "Write a reply..." msgstr "Напишите ответ…" +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Состояние" @@ -6689,8 +6708,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Нет содержания для записи %s." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Нет такого пользователя %s." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6737,79 +6757,128 @@ msgstr "saveSettings() не реализована." msgid "Unable to delete design setting." msgstr "Не удаётся удалить настройки оформления." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Главная" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Главная" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Администрирование" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Основная конфигурация сайта" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Сайт" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Конфигурация оформления" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Оформление" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Конфигурация пользователя" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Пользователь" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Конфигурация доступа" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Доступ" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Конфигурация путей" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Пути" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Конфигурация сессий" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Сессии" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Изменить уведомление сайта" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Уведомление сайта" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Конфигурация снимков" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Снимки" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Установить лицензию сайта" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Лицензия" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Конфигурация расширений" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Плагины" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6820,6 +6889,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Нет приложения для этого пользовательского ключа." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Не разрешается использовать API." @@ -6853,9 +6923,11 @@ msgstr "Не удаётся найти профиль и приложение, msgid "Could not issue access token." msgstr "Ошибка выдачи ключа доступа." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Ошибка базы данных при добавлении пользователя приложения OAuth." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "Ошибка базы данных при обновлении пользователя приложения OAuth." @@ -6954,6 +7026,13 @@ msgstr "Отменить" msgid "Save" msgstr "Сохранить" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Неизвестное действие" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " от " @@ -6976,11 +7055,12 @@ msgstr "Подтверждён доступ %1$s — «%2$s»." msgid "Access token starting with: %s" msgstr "Ключ доступа, начинающийся на %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Отозвать" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Элемент author должен содержать элемент name." @@ -7151,6 +7231,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7473,9 +7555,14 @@ msgstr "Возможно, вы решите запустить установщ msgid "Go to the installer." msgstr "Перейти к установщику" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Ошибка базы данных" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Общее" @@ -7487,6 +7574,7 @@ msgstr "Удалить" msgid "Delete this user" msgstr "Удалить этого пользователя" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Изменение оформления" @@ -7498,22 +7586,15 @@ msgstr "Изменение цветовой гаммы" msgid "Use defaults" msgstr "Использовать значения по умолчанию" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Восстановить оформление по умолчанию" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Восстановить значения по умолчанию" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Загрузить файл" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Вы можете загрузить собственное фоновое изображение. Максимальный размер " "файла составляет 2Mb." @@ -7528,10 +7609,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Выключено" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Сохранить оформление" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7566,46 +7643,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "В любимые" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "Не является лентой Atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Не указан автор в ленте." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Невозможно импортировать без пользователя." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Каналы" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Все" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Выберите тег для фильтрации" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Теги" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Выберите тег из выпадающего списка" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Перейти" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Назначить этому пользователю роль «%s»" @@ -7671,9 +7764,11 @@ msgstr[2] "" msgid "Membership policy" msgstr "Политика принятия" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "Открыта для всех" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "Администратор должен подтверждать всех участников" @@ -7740,6 +7835,7 @@ msgid "%s blocked users" msgstr "Заблокированные пользователи %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Настройки" @@ -7843,13 +7939,16 @@ msgstr[0] "%dБ" msgstr[1] "%dБ" msgstr[2] "%dБ" -#, php-format +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#, fuzzy, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" "Пользователь «%s» на сайте %s сообщил, что псевдоним %s принадлежит ему. Если " "это действительно так, вы можете подтвердить это, нажав на следующую ссылку: " @@ -7857,14 +7956,28 @@ msgstr "" "браузера.) Если вы не являетесь упомянутым пользователем или не запрашивали " "это подтверждение, просто проигнорируйте это сообщение." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Неизвестный источник входящих сообщений %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Покинуть" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Вход" @@ -8245,6 +8358,7 @@ msgstr "" msgid "Inbox" msgstr "Входящие" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Ваши входящие сообщения" @@ -8476,15 +8590,42 @@ msgstr "Дублирующаяся запись." msgid "Couldn't insert new subscription." msgstr "Не удаётся вставить новую подписку." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Профиль" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Ваш профиль" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Ответы" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Любимое" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Пользователь" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Сообщения" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8508,27 +8649,40 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Описание отключённых расширений недоступно.)" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Установки СМС" +#. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" msgstr "Изменение персональных настроек" +#. TRANS: Menu item title in primary navigation panel. msgid "Site configuration" msgstr "Конфигурация сайта" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Выход" msgid "Logout from the site" msgstr "Выйти" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Войти" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Поиск" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Поиск по сайту" @@ -8576,15 +8730,36 @@ msgstr "Все группы" msgid "Unimplemented method." msgstr "Нереализованный метод." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Группы" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Группы" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Облако тегов" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Облако тегов" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Особые" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Популярное" @@ -8628,52 +8803,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Найти" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Люди" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Найти человека на этом сайте" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Записи" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Найти запись по содержимому" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Найти группы на этом сайте" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Помощь" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "О проекте" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "ЧаВо" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "TOS" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Пользовательское соглашение" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Исходный код" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Версия" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Контактная информация" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Бедж" @@ -8683,36 +8888,87 @@ msgstr "Секция без названия" msgid "More..." msgstr "Далее…" +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Установки СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Изменить ваши настройки профиля" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Аватар" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Загрузить аватару" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Пароль" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Измените свой пароль" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Email" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Изменить электронный адрес" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Оформить ваш профиль" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Сокращатели ссылок" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Обновлено по IM" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Обновления по СМС" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Соединения" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Авторизованные соединённые приложения" @@ -8722,12 +8978,6 @@ msgstr "Заглушить" msgid "Silence this user" msgstr "Заглушить этого пользователя." -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Профиль" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8753,6 +9003,7 @@ msgid "People subscribed to %s." msgstr "Люди подписанные на %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8763,12 +9014,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Группы" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8776,7 +9021,6 @@ msgid "Groups %s is a member of." msgstr "Группы, в которых состоит %s" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Пригласить" @@ -9053,32 +9297,14 @@ msgstr "Неверный XML, отсутствует корень XRD." msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." -#~ msgid "Already repeated that notice." -#~ msgstr "Запись уже повторена." +#~ msgid "Restore default designs" +#~ msgstr "Восстановить оформление по умолчанию" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Опишите себя и свои увлечения при помощи %d символа" -#~ msgstr[1] "Опишите себя и свои увлечения при помощи %d символов" -#~ msgstr[2] "Опишите себя и свои увлечения при помощи %d символов" +#~ msgid "Reset back to default" +#~ msgstr "Восстановить значения по умолчанию" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Опишите себя и свои интересы" +#~ msgid "Save design" +#~ msgstr "Сохранить оформление" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Где вы находитесь, например «Город, область, страна»" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, страница %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2" -#~ "$s»." - -#~ msgid "Invalid group join approval: not pending." -#~ msgstr "Неверное подтверждение вступления в группу: не ожидается." - -#~ msgid "Error repeating notice." -#~ msgstr "Ошибка при повторении записи." +#~ msgid "Not an atom feed." +#~ msgstr "Не является лентой Atom." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 9ef31942a9..c5b63762a4 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,8 +18,7 @@ msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:53 lib/adminpanelnav.php:110 +#: actions/accessadminpanel.php:53 msgid "Access" msgstr "" @@ -95,9 +94,9 @@ msgstr "" #: actions/siteadminpanel.php:319 actions/sitenoticeadminpanel.php:197 #: actions/smssettings.php:204 actions/snapshotadminpanel.php:252 #: actions/subscriptions.php:261 actions/tagother.php:144 -#: actions/urlsettings.php:152 actions/useradminpanel.php:298 -#: lib/applicationeditform.php:355 lib/designform.php:320 -#: lib/groupeditform.php:228 +#: actions/urlsettings.php:152 actions/useradminpanel.php:300 +#: lib/applicationeditform.php:355 lib/designform.php:315 +#: lib/groupeditform.php:230 msgctxt "BUTTON" msgid "Save" msgstr "" @@ -151,6 +150,7 @@ msgstr "" #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. #: actions/all.php:80 actions/allrss.php:69 #: actions/apiaccountupdatedeliverydevice.php:110 @@ -173,7 +173,7 @@ msgstr "" #: actions/repliesrss.php:38 actions/rsd.php:114 actions/showfavorites.php:106 #: actions/userbyid.php:75 actions/usergroups.php:95 actions/userrss.php:40 #: actions/userxrd.php:59 actions/xrds.php:71 lib/command.php:503 -#: lib/galleryaction.php:59 lib/mailbox.php:80 lib/profileaction.php:77 +#: lib/galleryaction.php:61 lib/mailbox.php:80 lib/profileaction.php:77 msgid "No such user." msgstr "" @@ -187,9 +187,15 @@ msgstr "" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #: actions/all.php:94 actions/all.php:185 actions/allrss.php:117 #: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 -#: lib/adminpanelnav.php:70 lib/personalgroupnav.php:75 lib/settingsnav.php:71 +#: lib/adminpanelnav.php:73 lib/personalgroupnav.php:77 lib/settingsnav.php:73 #, php-format msgid "%s and friends" msgstr "" @@ -359,6 +365,7 @@ msgstr "" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. #: actions/apiaccountupdateprofile.php:111 #: actions/apiaccountupdateprofilebackgroundimage.php:199 @@ -366,7 +373,7 @@ msgstr "" #: actions/apiaccountupdateprofileimage.php:131 #: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108 #: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75 -#: actions/replies.php:80 actions/usergroups.php:103 lib/galleryaction.php:66 +#: actions/replies.php:80 actions/usergroups.php:103 lib/galleryaction.php:69 #: lib/profileaction.php:85 msgid "User has no profile." msgstr "" @@ -976,7 +983,7 @@ msgstr "" #. TRANS: Field label on login page. #. TRANS: Field label on account registration page. #: actions/apioauthauthorize.php:463 actions/login.php:235 -#: actions/register.php:442 lib/settingsnav.php:93 +#: actions/register.php:442 msgid "Password" msgstr "" @@ -1652,7 +1659,7 @@ msgid "Invalid size." msgstr "" #. TRANS: Title for avatar upload page. -#: actions/avatarsettings.php:66 lib/settingsnav.php:88 +#: actions/avatarsettings.php:66 msgid "Avatar" msgstr "" @@ -2023,7 +2030,7 @@ msgstr "" #. TRANS: Header on conversation page. Hidden by default (h2). #. TRANS: Label for user statistics. #: actions/conversation.php:149 lib/noticelist.php:87 -#: lib/profileaction.php:246 lib/searchgroupnav.php:78 +#: lib/profileaction.php:246 msgid "Notices" msgstr "" @@ -2122,7 +2129,7 @@ msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:102 actions/editapplication.php:131 #: actions/newapplication.php:112 actions/showapplication.php:116 -#: lib/action.php:1462 +#: lib/action.php:1460 msgid "There was a problem with your session token." msgstr "" @@ -2265,7 +2272,7 @@ msgid "Delete this user." msgstr "" #. TRANS: Message used as title for design settings for the site. -#: actions/designadminpanel.php:60 lib/settingsnav.php:103 +#: actions/designadminpanel.php:60 msgid "Design" msgstr "" @@ -2340,7 +2347,7 @@ msgstr "" #. TRANS: Field label for background color selector. #. TRANS: Label on profile design page for setting a profile page background colour. #: actions/designadminpanel.php:525 actions/designadminpanel.php:609 -#: lib/designform.php:238 +#: lib/designform.php:233 msgid "Background" msgstr "" @@ -2365,13 +2372,13 @@ msgstr "" #. TRANS: Form guide for turning background image on or off on theme designer page. #. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable #. TRANS: use of the uploaded profile image. -#: actions/designadminpanel.php:577 lib/designform.php:214 +#: actions/designadminpanel.php:577 lib/designform.php:209 msgid "Turn background image on or off." msgstr "" #. TRANS: Checkbox label to title background image on theme designer page. #. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -#: actions/designadminpanel.php:583 lib/designform.php:220 +#: actions/designadminpanel.php:583 lib/designform.php:215 msgid "Tile background image" msgstr "" @@ -2382,25 +2389,25 @@ msgstr "" #. TRANS: Field label for content color selector. #. TRANS: Label on profile design page for setting a profile page content colour. -#: actions/designadminpanel.php:623 lib/designform.php:252 +#: actions/designadminpanel.php:623 lib/designform.php:247 msgid "Content" msgstr "" #. TRANS: Field label for sidebar color selector. #. TRANS: Label on profile design page for setting a profile page sidebar colour. -#: actions/designadminpanel.php:637 lib/designform.php:266 +#: actions/designadminpanel.php:637 lib/designform.php:261 msgid "Sidebar" msgstr "" #. TRANS: Field label for text color selector. #. TRANS: Label on profile design page for setting a profile page text colour. -#: actions/designadminpanel.php:651 lib/designform.php:280 +#: actions/designadminpanel.php:651 lib/designform.php:275 msgid "Text" msgstr "" #. TRANS: Field label for link color selector. #. TRANS: Label on profile design page for setting a profile page links colour. -#: actions/designadminpanel.php:665 lib/designform.php:294 +#: actions/designadminpanel.php:665 lib/designform.php:289 msgid "Links" msgstr "" @@ -2421,17 +2428,20 @@ msgid "Use defaults" msgstr "" #. TRANS: Title for button for resetting theme settings. -#: actions/designadminpanel.php:720 +#. TRANS: Title for button on profile design page to reset all colour settings to default. +#: actions/designadminpanel.php:720 lib/designform.php:135 msgid "Restore default designs." msgstr "" #. TRANS: Title for button for resetting theme settings. -#: actions/designadminpanel.php:728 +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. +#: actions/designadminpanel.php:728 lib/designform.php:143 msgid "Reset back to default." msgstr "" #. TRANS: Title for button for saving theme settings. -#: actions/designadminpanel.php:736 +#. TRANS: Title for button on profile design page to save settings. +#: actions/designadminpanel.php:736 lib/designform.php:317 msgid "Save design." msgstr "" @@ -2825,8 +2835,9 @@ msgstr "" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. #: actions/favorited.php:65 lib/popularnoticesection.php:62 -#: lib/publicgroupnav.php:79 +#: lib/publicgroupnav.php:87 msgid "Popular notices" msgstr "" @@ -2867,8 +2878,10 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #: actions/favoritesrss.php:111 actions/showfavorites.php:76 -#: lib/personalgroupnav.php:91 +#: lib/personalgroupnav.php:102 #, php-format msgid "%s's favorite notices" msgstr "" @@ -2882,8 +2895,9 @@ msgstr "" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. #: actions/featured.php:69 lib/featureduserssection.php:87 -#: lib/publicgroupnav.php:75 +#: lib/publicgroupnav.php:81 msgid "Featured users" msgstr "" @@ -3749,7 +3763,7 @@ msgid "Error setting user. You are probably not authorized." msgstr "" #. TRANS: Page title for login page. -#: actions/login.php:189 lib/primarynav.php:75 +#: actions/login.php:189 msgid "Login" msgstr "" @@ -4281,8 +4295,7 @@ msgid "Password saved." msgstr "" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:58 lib/adminpanelnav.php:118 +#: actions/pathsadminpanel.php:58 msgid "Paths" msgstr "" @@ -4891,6 +4904,7 @@ msgid "Public timeline, page %d" msgstr "" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. #: actions/public.php:137 lib/publicgroupnav.php:65 msgid "Public timeline" msgstr "" @@ -5101,7 +5115,7 @@ msgstr "" #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. -#: actions/recoverpassword.php:268 lib/designform.php:145 +#: actions/recoverpassword.php:268 lib/designform.php:140 msgctxt "BUTTON" msgid "Reset" msgstr "" @@ -5402,8 +5416,10 @@ msgstr "" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #: actions/replies.php:126 actions/repliesrss.php:68 -#: lib/personalgroupnav.php:86 +#: lib/personalgroupnav.php:93 #, php-format msgid "Replies to %s" msgstr "" @@ -5526,7 +5542,8 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. -#: actions/restoreaccount.php:207 +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. +#: actions/restoreaccount.php:207 lib/feedimporter.php:74 msgid "Not an Atom feed." msgstr "" @@ -6075,7 +6092,7 @@ msgid "URL used for credits link in footer of each page." msgstr "" #. TRANS: Field label on site settings panel. -#: actions/siteadminpanel.php:247 lib/settingsnav.php:98 +#: actions/siteadminpanel.php:247 msgid "Email" msgstr "" @@ -6553,12 +6570,12 @@ msgid "Subscription feed for %s (Atom)" msgstr "" #. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list. -#: actions/subscriptions.php:241 lib/settingsnav.php:116 +#: actions/subscriptions.php:241 msgid "IM" msgstr "" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. -#: actions/subscriptions.php:256 lib/settingsnav.php:123 +#: actions/subscriptions.php:256 msgid "SMS" msgstr "" @@ -6750,7 +6767,7 @@ msgstr "" msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. #: actions/useradminpanel.php:58 msgctxt "TITLE" msgid "User" @@ -6778,63 +6795,64 @@ msgstr "" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" -#: actions/useradminpanel.php:215 lib/personalgroupnav.php:79 -#: lib/settingsnav.php:83 +#. TRANS: Fieldset legend in user administration panel. +#: actions/useradminpanel.php:217 +msgctxt "LEGEND" msgid "Profile" msgstr "" #. TRANS: Field label in user admin panel for setting the character limit for the bio field. -#: actions/useradminpanel.php:220 +#: actions/useradminpanel.php:222 msgid "Bio Limit" msgstr "" #. TRANS: Tooltip in user admin panel for setting the character limit for the bio field. -#: actions/useradminpanel.php:222 +#: actions/useradminpanel.php:224 msgid "Maximum length of a profile bio in characters." msgstr "" #. TRANS: Form legend in user admin panel. -#: actions/useradminpanel.php:231 +#: actions/useradminpanel.php:233 msgid "New users" msgstr "" #. TRANS: Field label in user admin panel for setting new user welcome text. -#: actions/useradminpanel.php:236 +#: actions/useradminpanel.php:238 msgid "New user welcome" msgstr "" #. TRANS: Tooltip in user admin panel for setting new user welcome text. -#: actions/useradminpanel.php:238 +#: actions/useradminpanel.php:240 msgid "Welcome text for new users (maximum 255 characters)." msgstr "" #. TRANS: Field label in user admin panel for setting default subscription for new users. -#: actions/useradminpanel.php:244 +#: actions/useradminpanel.php:246 msgid "Default subscription" msgstr "" #. TRANS: Tooltip in user admin panel for setting default subscription for new users. -#: actions/useradminpanel.php:246 +#: actions/useradminpanel.php:248 msgid "Automatically subscribe new users to this user." msgstr "" #. TRANS: Form legend in user admin panel. -#: actions/useradminpanel.php:256 +#: actions/useradminpanel.php:258 msgid "Invitations" msgstr "" #. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail. -#: actions/useradminpanel.php:262 +#: actions/useradminpanel.php:264 msgid "Invitations enabled" msgstr "" #. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail. -#: actions/useradminpanel.php:265 +#: actions/useradminpanel.php:267 msgid "Whether to allow users to invite new users." msgstr "" #. TRANS: Title for button to save user settings in user admin panel. -#: actions/useradminpanel.php:302 +#: actions/useradminpanel.php:304 msgid "Save user settings." msgstr "" @@ -7056,8 +7074,7 @@ msgid "Contributors" msgstr "" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration -#: actions/version.php:166 lib/adminpanelnav.php:150 +#: actions/version.php:166 msgid "License" msgstr "" @@ -7089,8 +7106,7 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration -#: actions/version.php:195 lib/adminpanelnav.php:158 +#: actions/version.php:195 msgid "Plugins" msgstr "" @@ -7576,7 +7592,9 @@ msgstr "" msgid "Write a reply..." msgstr "" -#: lib/action.php:612 +#. TRANS: Tab on the notice form. +#: lib/action.php:613 +msgctxt "TAB" msgid "Status" msgstr "" @@ -7584,7 +7602,7 @@ msgstr "" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:992 +#: lib/action.php:990 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -7592,7 +7610,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:995 +#: lib/action.php:993 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -7601,7 +7619,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:1002 +#: lib/action.php:1000 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -7611,39 +7629,39 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:1020 +#: lib/action.php:1018 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:1027 +#: lib/action.php:1025 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:1031 +#: lib/action.php:1029 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:1063 +#: lib/action.php:1061 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1406 +#: lib/action.php:1404 msgid "After" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1416 +#: lib/action.php:1414 msgid "Before" msgstr "" @@ -7707,9 +7725,10 @@ msgstr "" msgid "No content for notice %s." msgstr "" -#: lib/activitymover.php:84 +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#: lib/activitymover.php:85 #, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -7765,99 +7784,141 @@ msgstr "" msgid "Unable to delete design setting." msgstr "" -#: lib/adminpanelnav.php:65 lib/adminpanelnav.php:69 -#: lib/defaultlocalnav.php:58 lib/personalgroupnav.php:74 -#: lib/settingsnav.php:66 lib/settingsnav.php:70 +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#: lib/adminpanelnav.php:65 lib/settingsnav.php:65 +msgctxt "HEADER" msgid "Home" msgstr "" -#: lib/adminpanelnav.php:77 lib/primarynav.php:63 +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#: lib/adminpanelnav.php:70 lib/defaultlocalnav.php:58 +#: lib/personalgroupnav.php:74 lib/settingsnav.php:70 +msgctxt "MENU" +msgid "Home" +msgstr "" + +#. TRANS: Header in administrator navigation panel. +#: lib/adminpanelnav.php:81 +msgctxt "HEADER" msgid "Admin" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:84 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:88 msgid "Basic site configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelnav.php:86 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:90 msgctxt "MENU" msgid "Site" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:92 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:96 msgid "Design configuration" msgstr "" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/adminpanelnav.php:94 lib/groupnav.php:143 +#. TRANS: Menu item in settings navigation panel. +#: lib/adminpanelnav.php:98 lib/groupnav.php:143 lib/settingsnav.php:115 msgctxt "MENU" msgid "Design" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:100 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:104 msgid "User configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelnav.php:102 lib/personalgroupnav.php:91 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:106 +msgctxt "MENU" msgid "User" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:108 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:112 msgid "Access configuration" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:116 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:114 +msgctxt "MENU" +msgid "Access" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:120 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:124 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:122 +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:128 msgid "Sessions configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelnav.php:126 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:130 +msgctxt "MENU" msgid "Sessions" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:132 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:136 msgid "Edit site notice" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelnav.php:134 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:138 +msgctxt "MENU" msgid "Site notice" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:140 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:144 msgid "Snapshots configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelnav.php:142 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:146 +msgctxt "MENU" msgid "Snapshots" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:148 +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:152 msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelnav.php:156 +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:154 +msgctxt "MENU" +msgid "License" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +#: lib/adminpanelnav.php:160 msgid "Plugins configuration" msgstr "" +#. TRANS: Menu item in administrator navigation panel. +#: lib/adminpanelnav.php:162 +msgctxt "MENU" +msgid "Plugins" +msgstr "" + #. TRANS: Client error 401. #: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." @@ -7868,62 +7929,65 @@ msgstr "" msgid "No application for that consumer key." msgstr "" -#: lib/apiauth.php:202 lib/apiauth.php:284 +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. +#: lib/apiauth.php:203 lib/apiauth.php:286 msgid "Not allowed to use API." msgstr "" #. TRANS: OAuth exception given when an incorrect access token was given for a user. -#: lib/apiauth.php:225 +#: lib/apiauth.php:226 msgid "Bad access token." msgstr "" #. TRANS: OAuth exception given when no user was found for a given token (no token was found). -#: lib/apiauth.php:230 +#: lib/apiauth.php:231 msgid "No user for that token." msgstr "" #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. -#: lib/apiauth.php:272 lib/apiauth.php:302 +#: lib/apiauth.php:273 lib/apiauth.php:304 msgid "Could not authenticate you." msgstr "" #. TRANS: Server error displayed when trying to create an anynymous OAuth consumer. -#: lib/apioauthstore.php:45 +#: lib/apioauthstore.php:46 msgid "Could not create anonymous consumer." msgstr "" #. TRANS: Server error displayed when trying to create an anynymous OAuth application. -#: lib/apioauthstore.php:69 +#: lib/apioauthstore.php:70 msgid "Could not create anonymous OAuth application." msgstr "" #. TRANS: Exception thrown when no token association could be found. -#: lib/apioauthstore.php:151 +#: lib/apioauthstore.php:152 msgid "" "Could not find a profile and application associated with the request token." msgstr "" #. TRANS: Exception thrown when no access token can be issued. -#: lib/apioauthstore.php:209 +#: lib/apioauthstore.php:210 msgid "Could not issue access token." msgstr "" -#: lib/apioauthstore.php:317 +#. TRANS: Exception thrown when a database error occurs. +#: lib/apioauthstore.php:318 msgid "Database error inserting OAuth application user." msgstr "" -#: lib/apioauthstore.php:345 +#. TRANS: Exception thrown when a database error occurs. +#: lib/apioauthstore.php:346 msgid "Database error updating OAuth application user." msgstr "" #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:371 +#: lib/apioauthstore.php:372 msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:376 +#: lib/apioauthstore.php:377 msgid "Failed to delete revoked token." msgstr "" @@ -8032,39 +8096,47 @@ msgstr "" msgid "Save" msgstr "" -#: lib/applicationlist.php:247 +#. TRANS: Name for an anonymous application in application list. +#: lib/applicationlist.php:241 +msgid "Unknown application" +msgstr "" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. +#: lib/applicationlist.php:250 msgid " by " msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:260 +#: lib/applicationlist.php:263 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:262 +#: lib/applicationlist.php:265 msgid "read-only" msgstr "" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") -#: lib/applicationlist.php:268 +#: lib/applicationlist.php:271 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Access token in the application list. #. TRANS: %s are the first 7 characters of the access token. -#: lib/applicationlist.php:282 +#: lib/applicationlist.php:286 #, php-format msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label -#: lib/applicationlist.php:298 +#. TRANS: Button label in application list to revoke access to user data. +#: lib/applicationlist.php:302 msgctxt "BUTTON" msgid "Revoke" msgstr "" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. #: lib/atom10feed.php:113 msgid "Author element must contain a name element." msgstr "" @@ -8261,7 +8333,9 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:494 lib/implugin.php:486 +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). +#: lib/command.php:494 lib/implugin.php:492 #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -8632,11 +8706,15 @@ msgstr "" msgid "Go to the installer." msgstr "" -#: lib/dberroraction.php:59 +#. TRANS: Page title for when a database error occurs. +#: lib/dberroraction.php:60 msgid "Database error" msgstr "" -#: lib/defaultlocalnav.php:62 lib/publicgroupnav.php:64 +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#: lib/defaultlocalnav.php:63 lib/publicgroupnav.php:63 +msgctxt "MENU" msgid "Public" msgstr "" @@ -8651,59 +8729,45 @@ msgstr "" msgid "Delete this user" msgstr "" -#: lib/designform.php:114 +#. TRANS: Form legend of form for changing the page design. +#: lib/designform.php:110 msgid "Change design" msgstr "" #. TRANS: Fieldset legend on profile design page to change profile page colours. -#: lib/designform.php:131 +#: lib/designform.php:126 msgid "Change colours" msgstr "" #. TRANS: Button text on profile design page to immediately reset all colour settings to default. -#: lib/designform.php:138 +#: lib/designform.php:133 msgid "Use defaults" msgstr "" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: lib/designform.php:140 -msgid "Restore default designs" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: lib/designform.php:148 -msgid "Reset back to default" -msgstr "" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -#: lib/designform.php:158 +#: lib/designform.php:153 msgid "Upload file" msgstr "" #. TRANS: Instructions for form on profile design page. -#: lib/designform.php:163 +#: lib/designform.php:158 msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#: lib/designform.php:194 +#: lib/designform.php:189 msgctxt "RADIO" msgid "On" msgstr "" #. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#: lib/designform.php:211 +#: lib/designform.php:206 msgctxt "RADIO" msgid "Off" msgstr "" -#. TRANS: Title for button on profile design page to save settings. -#: lib/designform.php:322 -msgid "Save design" -msgstr "" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: lib/designsettings.php:216 lib/designsettings.php:238 @@ -8745,32 +8809,35 @@ msgctxt "BUTTON" msgid "Favor" msgstr "" -#: lib/feed.php:84 +#. TRANS: Feed type name. +#: lib/feed.php:85 msgid "RSS 1.0" msgstr "" -#: lib/feed.php:86 +#. TRANS: Feed type name. +#: lib/feed.php:88 msgid "RSS 2.0" msgstr "" -#: lib/feed.php:88 +#. TRANS: Feed type name. +#: lib/feed.php:91 msgid "Atom" msgstr "" -#: lib/feed.php:90 +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. +#: lib/feed.php:94 msgid "FOAF" msgstr "" -#: lib/feedimporter.php:75 -msgid "Not an atom feed." -msgstr "" - +#. TRANS: Client exception thrown when an imported feed does not have an author. #: lib/feedimporter.php:82 msgid "No author in the feed." msgstr "" -#: lib/feedimporter.php:89 -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#: lib/feedimporter.php:91 +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). @@ -8778,27 +8845,35 @@ msgstr "" msgid "Feeds" msgstr "" -#: lib/galleryaction.php:128 +#. TRANS: List element on gallery action page to show all tags. +#: lib/galleryaction.php:132 +msgctxt "TAGS" msgid "All" msgstr "" -#: lib/galleryaction.php:136 +#. TRANS: Fieldset legend on gallery action page. +#: lib/galleryaction.php:141 msgid "Select tag to filter" msgstr "" -#: lib/galleryaction.php:137 +#. TRANS: Dropdown field label on gallery action page for a list containing tags. +#: lib/galleryaction.php:143 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#: lib/galleryaction.php:145 +msgid "Choose a tag to narrow list." msgstr "" -#: lib/galleryaction.php:140 +#. TRANS: Submit button text on gallery action page. +#: lib/galleryaction.php:148 +msgctxt "BUTTON" msgid "Go" msgstr "" -#: lib/grantroleform.php:91 +#. TRANS: Description on form for granting a role. +#: lib/grantroleform.php:88 #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -8863,16 +8938,18 @@ msgstr[1] "" msgid "Membership policy" msgstr "" -#: lib/groupeditform.php:208 +#. TRANS: Group membership policy option. +#: lib/groupeditform.php:209 msgid "Open to all" msgstr "" -#: lib/groupeditform.php:209 +#. TRANS: Group membership policy option. +#: lib/groupeditform.php:211 msgid "Admin must approve all members" msgstr "" #. TRANS: Dropdown field title on group edit form. -#: lib/groupeditform.php:211 +#: lib/groupeditform.php:213 msgid "Whether admin approval is required to join this group." msgstr "" @@ -8943,7 +9020,8 @@ msgid "%s blocked users" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/groupnav.php:125 +#. TRANS: Menu item in primary navigation panel. +#: lib/groupnav.php:125 lib/primarynav.php:66 msgctxt "MENU" msgid "Admin" msgstr "" @@ -9062,27 +9140,45 @@ msgid_plural "%dB" msgstr[0] "" msgstr[1] "" -#: lib/implugin.php:262 +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#: lib/implugin.php:265 #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" -#: lib/implugin.php:349 +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). +#: lib/implugin.php:353 #, php-format msgid "Unknown inbox source %d." msgstr "" -#: lib/leaveform.php:114 +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +#: lib/implugin.php:629 +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +#: lib/implugin.php:634 +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#: lib/leaveform.php:109 +msgctxt "BUTTON" msgid "Leave" msgstr "" #. TRANS: Menu item for logging in to the StatusNet site. -#: lib/logingroupnav.php:64 +#. TRANS: Menu item in primary navigation panel. +#: lib/logingroupnav.php:64 lib/primarynav.php:81 msgctxt "MENU" msgid "Login" msgstr "" @@ -9392,7 +9488,8 @@ msgstr "" msgid "Inbox" msgstr "" -#: lib/mailboxmenu.php:60 lib/personalgroupnav.php:102 +#. TRANS: Menu item title in personal group navigation menu. +#: lib/mailboxmenu.php:60 lib/personalgroupnav.php:117 msgid "Your incoming messages" msgstr "" @@ -9504,7 +9601,7 @@ msgctxt "Send button for sending notice" msgid "Send" msgstr "" -#: lib/messagelist.php:77 lib/personalgroupnav.php:101 +#: lib/messagelist.php:77 msgid "Messages" msgstr "" @@ -9674,18 +9771,43 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "" -#: lib/personalgroupnav.php:80 +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#: lib/personalgroupnav.php:82 lib/settingsnav.php:87 lib/subgroupnav.php:77 +msgctxt "MENU" +msgid "Profile" +msgstr "" + +#. TRANS: Menu item title in personal group navigation menu. +#: lib/personalgroupnav.php:84 msgid "Your profile" msgstr "" -#: lib/personalgroupnav.php:85 +#. TRANS: Menu item in personal group navigation menu. +#: lib/personalgroupnav.php:90 +msgctxt "MENU" msgid "Replies" msgstr "" -#: lib/personalgroupnav.php:90 +#. TRANS: Menu item in personal group navigation menu. +#: lib/personalgroupnav.php:98 +msgctxt "MENU" msgid "Favorites" msgstr "" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#: lib/personalgroupnav.php:104 +msgctxt "FIXME" +msgid "User" +msgstr "" + +#. TRANS: Menu item in personal group navigation menu. +#: lib/personalgroupnav.php:115 +msgctxt "MENU" +msgid "Messages" +msgstr "" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #: lib/personaltagcloudsection.php:56 #, php-format @@ -9714,35 +9836,45 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" -#: lib/primarynav.php:57 lib/settingsnav.php:78 +#. TRANS: Menu item in primary navigation panel. +#: lib/primarynav.php:58 +msgctxt "MENU" msgid "Settings" msgstr "" -#: lib/primarynav.php:58 +#. TRANS: Menu item title in primary navigation panel. +#: lib/primarynav.php:60 msgid "Change your personal settings" msgstr "" -#: lib/primarynav.php:64 +#. TRANS: Menu item title in primary navigation panel. +#: lib/primarynav.php:68 msgid "Site configuration" msgstr "" -#: lib/primarynav.php:69 +#. TRANS: Menu item in primary navigation panel. +#: lib/primarynav.php:74 +msgctxt "MENU" msgid "Logout" msgstr "" -#: lib/primarynav.php:70 +#: lib/primarynav.php:75 msgid "Logout from the site" msgstr "" -#: lib/primarynav.php:76 +#. TRANS: Menu item title in primary navigation panel. +#: lib/primarynav.php:83 msgid "Login to the site" msgstr "" -#: lib/primarynav.php:83 +#. TRANS: Menu item in primary navigation panel. +#: lib/primarynav.php:91 +msgctxt "MENU" msgid "Search" msgstr "" -#: lib/primarynav.php:84 +#. TRANS: Menu item title in primary navigation panel. +#: lib/primarynav.php:93 msgid "Search the site" msgstr "" @@ -9781,7 +9913,6 @@ msgstr "" #. TRANS: Label for user statistics. #. TRANS: H2 text for user group membership statistics. #: lib/profileaction.php:239 lib/profileaction.php:290 -#: lib/publicgroupnav.php:67 lib/searchgroupnav.php:80 msgid "Groups" msgstr "" @@ -9801,19 +9932,38 @@ msgstr "" msgid "Unimplemented method." msgstr "" -#: lib/publicgroupnav.php:68 +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#: lib/publicgroupnav.php:68 lib/searchgroupnav.php:82 lib/subgroupnav.php:124 +msgctxt "MENU" +msgid "Groups" +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. +#: lib/publicgroupnav.php:70 msgid "User groups" msgstr "" -#: lib/publicgroupnav.php:70 lib/publicgroupnav.php:71 +#. TRANS: Menu item in search group navigation panel. +#: lib/publicgroupnav.php:73 +msgctxt "MENU" msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:74 +#. TRANS: Menu item title in search group navigation panel. +#: lib/publicgroupnav.php:75 +msgid "Recent tags" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +#: lib/publicgroupnav.php:79 +msgctxt "MENU" msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:78 +#. TRANS: Menu item in search group navigation panel. +#: lib/publicgroupnav.php:85 +msgctxt "MENU" msgid "Popular" msgstr "" @@ -9868,65 +10018,85 @@ msgctxt "BUTTON" msgid "Search" msgstr "" -#: lib/searchgroupnav.php:76 +#. TRANS: Menu item in search group navigation panel. +#: lib/searchgroupnav.php:74 +msgctxt "MENU" msgid "People" msgstr "" -#: lib/searchgroupnav.php:77 +#. TRANS: Menu item title in search group navigation panel. +#: lib/searchgroupnav.php:76 msgid "Find people on this site" msgstr "" -#: lib/searchgroupnav.php:79 +#. TRANS: Menu item in search group navigation panel. +#: lib/searchgroupnav.php:78 +msgctxt "MENU" +msgid "Notices" +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. +#: lib/searchgroupnav.php:80 msgid "Find content of notices" msgstr "" -#: lib/searchgroupnav.php:81 +#. TRANS: Menu item title in search group navigation panel. +#: lib/searchgroupnav.php:84 msgid "Find groups on this site" msgstr "" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/secondarynav.php:57 +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#: lib/secondarynav.php:56 +msgctxt "MENU" msgid "Help" msgstr "" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/secondarynav.php:60 +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#: lib/secondarynav.php:59 +msgctxt "MENU" msgid "About" msgstr "" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/secondarynav.php:63 +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#: lib/secondarynav.php:62 +msgctxt "MENU" msgid "FAQ" msgstr "" -#. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/secondarynav.php:68 +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#: lib/secondarynav.php:67 +msgctxt "MENU" msgid "TOS" msgstr "" -#. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/secondarynav.php:72 +#. TRANS: Secondary navigation menu item leading to privacy policy. +#: lib/secondarynav.php:71 +msgctxt "MENU" msgid "Privacy" msgstr "" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. -#: lib/secondarynav.php:75 +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#: lib/secondarynav.php:74 +msgctxt "MENU" msgid "Source" msgstr "" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: lib/secondarynav.php:78 +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#: lib/secondarynav.php:77 +msgctxt "MENU" msgid "Version" msgstr "" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... -#: lib/secondarynav.php:82 +#: lib/secondarynav.php:81 +msgctxt "MENU" msgid "Contact" msgstr "" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. -#: lib/secondarynav.php:85 +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#: lib/secondarynav.php:84 +msgctxt "MENU" msgid "Badge" msgstr "" @@ -9938,47 +10108,96 @@ msgstr "" msgid "More..." msgstr "" -#: lib/settingsnav.php:84 +#. TRANS: Header in settings navigation panel. +#: lib/settingsnav.php:81 +msgctxt "HEADER" +msgid "Settings" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:89 msgid "Change your profile settings" msgstr "" -#: lib/settingsnav.php:89 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:94 +msgctxt "MENU" +msgid "Avatar" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:96 msgid "Upload an avatar" msgstr "" -#: lib/settingsnav.php:94 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:101 +msgctxt "MENU" +msgid "Password" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:103 msgid "Change your password" msgstr "" -#: lib/settingsnav.php:99 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:108 +msgctxt "MENU" +msgid "Email" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:110 msgid "Change email handling" msgstr "" -#: lib/settingsnav.php:104 +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:117 msgid "Design your profile" msgstr "" -#: lib/settingsnav.php:108 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:122 +msgctxt "MENU" msgid "URL" msgstr "" -#: lib/settingsnav.php:109 +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:124 msgid "URL shorteners" msgstr "" -#: lib/settingsnav.php:117 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:132 +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:134 msgid "Updates by instant messenger (IM)" msgstr "" -#: lib/settingsnav.php:124 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:141 +msgctxt "MENU" +msgid "SMS" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:143 msgid "Updates by SMS" msgstr "" -#: lib/settingsnav.php:129 +#. TRANS: Menu item in settings navigation panel. +#: lib/settingsnav.php:149 +msgctxt "MENU" msgid "Connections" msgstr "" -#: lib/settingsnav.php:130 +#. TRANS: Menu item title in settings navigation panel. +#: lib/settingsnav.php:151 msgid "Authorized connected applications" msgstr "" @@ -9990,12 +10209,6 @@ msgstr "" msgid "Silence this user" msgstr "" -#. TRANS: Menu item in local navigation menu. -#: lib/subgroupnav.php:77 -msgctxt "MENU" -msgid "Profile" -msgstr "" - #. TRANS: Menu item in local navigation menu. #: lib/subgroupnav.php:85 msgctxt "MENU" @@ -10023,40 +10236,35 @@ msgid "People subscribed to %s." msgstr "" #. TRANS: Menu item in local navigation menu. -#: lib/subgroupnav.php:111 +#. TRANS: %d is the number of pending subscription requests. +#: lib/subgroupnav.php:112 #, php-format msgctxt "MENU" msgid "Pending (%d)" msgstr "" #. TRANS: Menu item title in local navigation menu. -#: lib/subgroupnav.php:113 +#: lib/subgroupnav.php:114 #, php-format msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#: lib/subgroupnav.php:123 -msgctxt "MENU" -msgid "Groups" -msgstr "" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#: lib/subgroupnav.php:126 +#: lib/subgroupnav.php:127 #, php-format msgid "Groups %s is a member of." msgstr "" #. TRANS: Menu item in local navigation menu. -#: lib/subgroupnav.php:133 +#: lib/subgroupnav.php:134 msgctxt "MENU" msgid "Invite" msgstr "" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#: lib/subgroupnav.php:136 +#: lib/subgroupnav.php:137 #, php-format msgid "Invite friends and colleagues to join you on %s." msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index e9513eed77..a50ddf81ee 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -13,20 +13,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:15+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Åtkomst" @@ -138,6 +137,7 @@ msgstr "Ingen sådan sida" #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Ingen sådan användare." @@ -151,6 +151,12 @@ msgstr "%1$s och vänner, sida %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s och vänner" @@ -275,6 +281,7 @@ msgstr "Kunde inte uppdatera användare." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Användaren har ingen profil." @@ -1990,16 +1997,19 @@ msgid "Use defaults" msgstr "Använd standardvärden" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "Återställ standardutseende" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "Återställ till standardvärde" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "Spara utseende" @@ -2333,6 +2343,7 @@ msgstr "Ta bort märkning som favorit" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Populära notiser" @@ -2374,6 +2385,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%ss favoritnotiser" @@ -2386,6 +2399,7 @@ msgstr "Uppdateringar markerade som favorit av %1$s på %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Profilerade användare" @@ -3660,7 +3674,6 @@ msgid "Password saved." msgstr "Lösenord sparat." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Sökvägar" @@ -4194,6 +4207,7 @@ msgid "Public timeline, page %d" msgstr "Publik tidslinje, sida %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Publik tidslinje" @@ -4686,6 +4700,8 @@ msgstr "Upprepad!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Svarat till %s" @@ -4800,6 +4816,7 @@ msgid "System error uploading file." msgstr "Systemfel vid uppladdning av fil." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. #, fuzzy msgid "Not an Atom feed." msgstr "Alla medlemmar" @@ -5915,7 +5932,7 @@ msgstr "Ogiltigt notisinnehåll." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Användare" @@ -5939,6 +5956,9 @@ msgstr "Ogiltig välkomsttext. Maximal längd är 255 tecken." msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6040,7 +6060,6 @@ msgid "Subscription authorized" msgstr "Prenumeration godkänd" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6055,7 +6074,6 @@ msgid "Subscription rejected" msgstr "Prenumeration avvisad" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6194,7 +6212,6 @@ msgid "Contributors" msgstr "Medarbetare" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Licens" @@ -6233,7 +6250,6 @@ msgstr "" "detta program. Om inte, se %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Insticksmoduler" @@ -6662,7 +6678,9 @@ msgstr "Svara" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6782,8 +6800,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Hitta innehåll i notiser" +#. TRANS: Exception thrown if no user is provided. %s is a user ID. #, fuzzy, php-format -msgid "No such user %s." +msgid "No such user \"%s\"." msgstr "Ingen sådan användare." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6830,80 +6849,129 @@ msgstr "saveSetting() är inte implementerat." msgid "Unable to delete design setting." msgstr "Kunde inte ta bort utseendeinställning." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Hemsida" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Hemsida" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Administratör" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Grundläggande webbplatskonfiguration" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Webbplats" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Konfiguration av utseende" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Utseende" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Konfiguration av användare" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Användare" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Konfiguration av åtkomst" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Åtkomst" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Konfiguration av sökvägar" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Sökvägar" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Konfiguration av sessioner" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessioner" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Redigera webbplatsnotis" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Webbplatsnotis" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Konfiguration av ögonblicksbilder" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Ögonblicksbilder" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Ange webbplatslicens" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Licens" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "Konfiguration av sökvägar" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Insticksmoduler" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6913,6 +6981,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6949,9 +7018,11 @@ msgstr "" msgid "Could not issue access token." msgstr "Kunde inte infoga meddelande." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Databasfel vid infogning av OAuth-applikationsanvändare." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "Databasfel vid infogning av OAuth-applikationsanvändare." @@ -7050,6 +7121,13 @@ msgstr "Avbryt" msgid "Save" msgstr "Spara" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Okänd funktion" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -7072,11 +7150,12 @@ msgstr "Godkänd %1$s - \"%2$s\" åtkomst." msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Återkalla" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7249,6 +7328,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, fuzzy, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7574,9 +7655,14 @@ msgstr "Du kanske vill köra installeraren för att åtgärda detta." msgid "Go to the installer." msgstr "Gå till installeraren." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Databasfel" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Publikt" @@ -7588,6 +7674,7 @@ msgstr "Ta bort" msgid "Delete this user" msgstr "Ta bort denna användare" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "Spara utseende" @@ -7600,14 +7687,6 @@ msgstr "Byt färger" msgid "Use defaults" msgstr "Använd standardvärden" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Återställ standardutseende" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Återställ till standardvärde" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7616,7 +7695,7 @@ msgstr "Ladda upp fil" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Du kan ladda upp din personliga bakgrundbild. Den maximala filstorleken är " "2MB." @@ -7631,10 +7710,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Av" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Spara utseende" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7671,47 +7746,61 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Markera som favorit" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -#, fuzzy -msgid "Not an atom feed." -msgstr "Alla medlemmar" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Flöden" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Alla" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Välj tagg att filtrera" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Tagg" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Välj en tagg för att begränsa lista" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Gå" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Bevilja denna användare \"%s\"-rollen" @@ -7773,9 +7862,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "Medlem sedan" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7842,6 +7933,7 @@ msgid "%s blocked users" msgstr "%s blockerade användare" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Administratör" @@ -7942,23 +8034,40 @@ msgid_plural "%dB" msgstr[0] "%dB" msgstr[1] "%dB" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Okänd källa för inkorg %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Lämna" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Logga in" @@ -8338,6 +8447,7 @@ msgstr "" msgid "Inbox" msgstr "Inkorg" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Dina inkommande meddelanden" @@ -8573,15 +8683,42 @@ msgstr "Duplicera notis." msgid "Couldn't insert new subscription." msgstr "Kunde inte infoga ny prenumeration." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "Profil" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Grupprofil" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Svar" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Favoriter" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Användare" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Meddelande" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8605,29 +8742,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Inställningar för SMS" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "Ändra dina profilinställningar" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "Konfiguration av användare" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Logga ut" msgid "Logout from the site" msgstr "Logga ut från webbplatsen" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Logga in på webbplatsen" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Sök" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "Sök webbplats" @@ -8676,15 +8826,36 @@ msgstr "Alla grupper" msgid "Unimplemented method." msgstr "Inte implementerad metod." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Grupper" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Användargrupper" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Senaste taggar" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Senaste taggar" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Profilerade" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Populärt" @@ -8729,52 +8900,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Sök" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Personer" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Hitta personer på denna webbplats" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Notiser" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Hitta innehåll i notiser" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Hitta grupper på denna webbplats" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Hjälp" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Om" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "Frågor & svar" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Användarvillkor" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Sekretess" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Källa" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Kontakt" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Emblem" @@ -8784,36 +8985,87 @@ msgstr "Namnlös sektion" msgid "More..." msgstr "Mer..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Inställningar för SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Ändra dina profilinställningar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Avatar" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Ladda upp en avatar" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Lösenord" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Ändra ditt lösenord" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "E-post" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Ändra e-posthantering" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Designa din profil" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "Snabbmeddelande" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Uppdateringar via snabbmeddelande (IM)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Uppdateringar via SMS" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "Anslutningar" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Tillåt anslutna applikationer" @@ -8823,12 +9075,6 @@ msgstr "Tysta ned" msgid "Silence this user" msgstr "Tysta ned denna användare" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Profil" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8854,6 +9100,7 @@ msgid "People subscribed to %s." msgstr "Personer som prenumererar på %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8864,12 +9111,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Grupper" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8877,7 +9118,6 @@ msgid "Groups %s is a member of." msgstr "Grupper %s är en medlem i" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Bjud in" @@ -9148,29 +9388,15 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "Redan upprepat denna notis." +#~ msgid "Restore default designs" +#~ msgstr "Återställ standardutseende" + +#~ msgid "Reset back to default" +#~ msgstr "Återställ till standardvärde" + +#~ msgid "Save design" +#~ msgstr "Spara utseende" #, fuzzy -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Beskriv dig själv och dina intressen med högst 140 tecken" -#~ msgstr[1] "Beskriv dig själv och dina intressen med högst 140 tecken" - -#~ msgid "Describe yourself and your interests" -#~ msgstr "Beskriv dig själv och dina intressen" - -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Var du håller till, såsom \"Stad, Län, Land\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, sida %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "" -#~ "Licensen för lyssnarströmmen '%1$s' är inte förenlig med " -#~ "webbplatslicensen '%2$s'." - -#~ msgid "Error repeating notice." -#~ msgstr "Fel vid upprepning av notis." +#~ msgid "Not an atom feed." +#~ msgstr "Alla medlemmar" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 1c6cae8252..eb788cf6d6 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,20 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:16+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "అందుబాటు" @@ -134,6 +133,7 @@ msgstr "అటువంటి పేజీ లేదు." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." @@ -147,6 +147,12 @@ msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s మరియు మిత్రులు" @@ -268,6 +274,7 @@ msgstr "వాడుకరిని తాజాకరించలేకున #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." @@ -1954,16 +1961,19 @@ msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. #, fuzzy msgid "Restore default designs." msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. #, fuzzy msgid "Reset back to default." msgstr "అప్రమేయాలని ఉపయోగించు" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. #, fuzzy msgid "Save design." msgstr "రూపురేఖలని భద్రపరచు" @@ -2303,6 +2313,7 @@ msgstr "ఇష్టాంశాలకు చేర్చు" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "ప్రాచుర్య నోటీసులు" @@ -2340,6 +2351,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%sకి ఇష్టమైన నోటీసులు" @@ -2352,6 +2365,7 @@ msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నో #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "విశేష వాడుకరులు" @@ -3579,7 +3593,6 @@ msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "త్రోవలు" @@ -4099,6 +4112,7 @@ msgid "Public timeline, page %d" msgstr "ప్రజా కాలరేఖ, పేజీ %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "ప్రజా కాలరేఖ" @@ -4564,6 +4578,8 @@ msgstr "పునరావృతించారు!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "%sకి స్పందనలు" @@ -4674,6 +4690,7 @@ msgid "System error uploading file." msgstr "" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "అది ఆటమ్ ఫీడు కాదు." @@ -5751,7 +5768,7 @@ msgstr "తప్పుడు దస్త్రపుపేరు.." msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "వాడుకరి" @@ -5774,6 +5791,9 @@ msgstr "చెల్లని స్వాగత పాఠ్యం. గరి msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "ప్రొఫైలు" @@ -6009,7 +6029,6 @@ msgid "Contributors" msgstr "అనుసంధానాలు" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "లైసెన్సు" @@ -6038,7 +6057,6 @@ msgid "" msgstr "" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "ప్లగిన్లు" @@ -6457,6 +6475,9 @@ msgstr "స్పందించండి" msgid "Write a reply..." msgstr "మీ స్పందనని వ్రాయండి..." +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "స్థితి" @@ -6573,8 +6594,9 @@ msgstr "" msgid "No content for notice %s." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "%s అనే వాడుకరి లేరు." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6623,82 +6645,129 @@ msgstr "" msgid "Unable to delete design setting." msgstr "మీ రూపురేఖల అమరికలని భద్రపరచలేకున్నాం." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "ముంగిలి" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ముంగిలి" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "నిర్వాహకులు" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "ప్రాథమిక సైటు స్వరూపణం" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "సైటు" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "రూపకల్పన స్వరూపణం" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "రూపురేఖలు" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "వాడుకరి స్వరూపణం" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "వాడుకరి" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "రూపకల్పన స్వరూపణం" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "అందుబాటు" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "వాడుకరి స్వరూపణం" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "త్రోవలు" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Sessions configuration" msgstr "రూపకల్పన స్వరూపణం" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "సంచిక" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "సైటు గమనికని భద్రపరచు" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "సైటు గమనిక" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "వాడుకరి స్వరూపణం" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "Snapshots" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "లైసెన్సు" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "వాడుకరి స్వరూపణం" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "ప్లగిన్లు" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6707,6 +6776,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6743,10 +6813,12 @@ msgstr "" msgid "Could not issue access token." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error inserting OAuth application user." msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" +#. TRANS: Exception thrown when a database error occurs. #, fuzzy msgid "Database error updating OAuth application user." msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" @@ -6845,6 +6917,13 @@ msgstr "రద్దుచేయి" msgid "Save" msgstr "భద్రపరచు" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "తెలియని చర్య" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" @@ -6867,12 +6946,13 @@ msgstr "" msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. #, fuzzy msgctxt "BUTTON" msgid "Revoke" msgstr "తొలగించు" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" @@ -7046,6 +7126,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7368,9 +7450,14 @@ msgstr "" msgid "Go to the installer." msgstr "సైటు లోనికి ప్రవేశించండి" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "ప్రజా" @@ -7382,6 +7469,7 @@ msgstr "తొలగించు" msgid "Delete this user" msgstr "ఈ వాడుకరిని తొలగించు" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "రూపురేఖలని భద్రపరచు" @@ -7394,24 +7482,15 @@ msgstr "రంగులను మార్చు" msgid "Use defaults" msgstr "అప్రమేయాలని ఉపయోగించు" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs" -msgstr "అప్రమేయాలని ఉపయోగించు" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default" -msgstr "అప్రమేయాలని ఉపయోగించు" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "ఫైలుని ఎక్కించు" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7424,10 +7503,6 @@ msgctxt "RADIO" msgid "Off" msgstr "ఆఫ్" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "రూపురేఖలని భద్రపరచు" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7464,47 +7539,60 @@ msgctxt "BUTTON" msgid "Favor" msgstr "ఇష్టపడండి" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "ఆటమ్" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -#, fuzzy -msgid "Not an atom feed." -msgstr "అందరు సభ్యులూ" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "ఫీడులు" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "అన్నీ" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "ట్యాగు" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "వెళ్ళు" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" @@ -7561,9 +7649,11 @@ msgstr[1] "" msgid "Membership policy" msgstr "సభ్యత్వ విధానం" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "అందరికీ ప్రవేశం" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "సభ్యులందరినీ నిర్వాహకులు అనుమతించాలి" @@ -7630,6 +7720,7 @@ msgid "%s blocked users" msgstr "%s నుండి నిరోధించిన వాడుకరులు" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "నిర్వాహకులు" @@ -7730,23 +7821,40 @@ msgid_plural "%dB" msgstr[0] "%dబైటు" msgstr[1] "%dబైట్లు" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "గుర్తు తెలియని భాష \"%s\"." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "వైదొలగు" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "ప్రవేశించు" @@ -8114,6 +8222,7 @@ msgstr "" msgid "Inbox" msgstr "వచ్చినవి" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "మీకు వచ్చిన సందేశాలు" @@ -8350,15 +8459,42 @@ msgstr "" msgid "Couldn't insert new subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Profile" +msgstr "ప్రొఫైలు" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "గుంపు ప్రొఫైలు" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "స్పందనలు" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "ఇష్టాంశాలు" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "వాడుకరి" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "సందేశం" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8383,28 +8519,41 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS అమరికలు" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "ఫ్రొఫైలు అమరికలని మార్చు" +#. TRANS: Menu item title in primary navigation panel. msgid "Site configuration" msgstr "సైటు స్వరూపణం" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "నిష్క్రమించు" msgid "Logout from the site" msgstr "సైటు నుండి నిష్క్రమించు" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "సైటులోని ప్రవేశించు" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "వెతుకు" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "సైటుని వెతుకు" @@ -8453,15 +8602,36 @@ msgstr "అన్ని గుంపులు" msgid "Unimplemented method." msgstr "" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "గుంపులు" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "వాడుకరి గుంపులు" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "ఇటీవలి ట్యాగులు" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "ఇటీవలి ట్యాగులు" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "విశేషం" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "ప్రాచుర్యం" @@ -8507,52 +8677,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "వెతుకు" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "ప్రజలు" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "ఈ సైటులోని వ్యక్తులని కనుగొనండి" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "సందేశాలు" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "ఈ సైటులోని గుంపులని కనుగొనండి" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "సహాయం" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "గురించి" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "ప్రశ్నలు" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "సేవా నియమాలు" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "అంతరంగికత" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "మూలము" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "సంచిక" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "సంప్రదించు" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "బాడ్జి" @@ -8562,37 +8762,86 @@ msgstr "శీర్షికలేని విభాగం" msgid "More..." msgstr "మరింత..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS అమరికలు" + +#. TRANS: Menu item title in settings navigation panel. #, fuzzy msgid "Change your profile settings" msgstr "ఫ్రొఫైలు అమరికలని మార్చు" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "అవతారం" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "ఒక అవతారాన్ని ఎక్కించండి" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "సంకేతపదం" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "మీ సంకేతపదాన్ని మార్చుకోండి" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "ఈమెయిల్" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "వాడుకరి ప్రొఫైలు" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" msgid "URL" msgstr "" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SSL" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "అనుసంధానాలు" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "అధీకృత అనుసంధాన ఉపకరణాలు" @@ -8602,12 +8851,6 @@ msgstr "సైటు గమనిక" msgid "Silence this user" msgstr "ఈ వాడుకరిని తొలగించు" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "ప్రొఫైలు" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8633,6 +8876,7 @@ msgid "People subscribed to %s." msgstr "%sకి చందాచేరిన వ్యక్తులు" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8643,12 +8887,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "గుంపులు" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8656,7 +8894,6 @@ msgid "Groups %s is a member of." msgstr "%s సభ్యులుగా ఉన్న గుంపులు" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ఆహ్వానించు" @@ -8917,22 +9154,17 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Already repeated that notice." -#~ msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." +#, fuzzy +#~ msgid "Restore default designs" +#~ msgstr "అప్రమేయాలని ఉపయోగించు" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" -#~ msgstr[1] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి" +#, fuzzy +#~ msgid "Reset back to default" +#~ msgstr "అప్రమేయాలని ఉపయోగించు" -#~ msgid "Describe yourself and your interests" -#~ msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి" +#~ msgid "Save design" +#~ msgstr "రూపురేఖలని భద్రపరచు" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, %2$dవ పేజీ" - -#~ msgid "Error repeating notice." -#~ msgstr "నోటీసుని పునరావృతించడంలో పొరపాటు." +#, fuzzy +#~ msgid "Not an atom feed." +#~ msgstr "అందరు సభ్యులూ" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 33c5fac6d8..454c62da25 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,21 +12,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "Погодитись" @@ -139,6 +138,7 @@ msgstr "Немає такої сторінки." #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Такого користувача немає." @@ -152,6 +152,12 @@ msgstr "%1$s та друзі, сторінка %2$d" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s з друзями" @@ -277,6 +283,7 @@ msgstr "Не вдалося оновити користувача." #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "Користувач не має профілю." @@ -1994,14 +2001,17 @@ msgid "Use defaults" msgstr "За замовч." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "Відновити стандартні установки." #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "Повернутись до стандартних налаштувань." #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "Зберегти дизайн." @@ -2330,6 +2340,7 @@ msgstr "Видалити з обраних." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "Популярні дописи" @@ -2369,6 +2380,8 @@ msgstr "" #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "Обрані дописи %s" @@ -2381,6 +2394,7 @@ msgstr "Оновлення обраних дописів %1$s на %2$s!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "Користувачі варті уваги" @@ -3636,7 +3650,6 @@ msgid "Password saved." msgstr "Пароль збережено." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "Шлях" @@ -4149,6 +4162,7 @@ msgid "Public timeline, page %d" msgstr "Загальна стрічка, сторінка %d" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "Загальна стрічка" @@ -4618,6 +4632,8 @@ msgstr "Повторено!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "Відповіді до %s" @@ -4731,6 +4747,7 @@ msgid "System error uploading file." msgstr "Система відповіла помилкою при завантаженні цього файла." #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "Ця стрічка не у форматі Atom." @@ -5832,7 +5849,7 @@ msgstr "Невірне значення параметру максимальн msgid "Error saving user URL shortening preferences." msgstr "Помилка при збереженні налаштувань сервісу скорочення URL-адрес." -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "Користувач" @@ -5855,6 +5872,9 @@ msgstr "Помилковий текст привітання. Максималь msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Помилкова підписка за замовчуванням: «%1$s» не є користувачем." +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "Профіль" @@ -5948,7 +5968,6 @@ msgid "Subscription authorized" msgstr "Підписку авторизовано" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -5963,7 +5982,6 @@ msgid "Subscription rejected" msgstr "Підписку скинуто" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6102,7 +6120,6 @@ msgid "Contributors" msgstr "Розробники" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "Ліцензія" @@ -6141,7 +6158,6 @@ msgstr "" "General Public License. Якщо ні, перейдіть на %s." #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "Додатки" @@ -6567,6 +6583,9 @@ msgstr "Відповісти" msgid "Write a reply..." msgstr "Пише відповідь..." +#. TRANS: Tab on the notice form. +#, fuzzy +msgctxt "TAB" msgid "Status" msgstr "Статус" @@ -6685,8 +6704,9 @@ msgstr "" msgid "No content for notice %s." msgstr "Допис %s не має змісту." -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "Користувача %s немає." #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6733,79 +6753,128 @@ msgstr "saveSettings() не виконано." msgid "Unable to delete design setting." msgstr "Немає можливості видалити налаштування дизайну." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "Веб-сторінка" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Веб-сторінка" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "Адмін" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "Основна конфігурація сайту" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "Сайт" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "Конфігурація дизайну" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "Дизайн" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Конфігурація користувача" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "Користувач" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Прийняти конфігурацію" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "Погодитись" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "Конфігурація шляху" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "Шлях" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "Конфігурація сесій" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Сесії" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "Редагувати повідомлення сайту" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "Об’яви на сайті" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "Конфігурація знімків" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "Снепшоти" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Зазначте ліцензію сайту" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "Ліцензія" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" msgstr "Налаштування додатків" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "Додатки" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" @@ -6816,6 +6885,7 @@ msgstr "" msgid "No application for that consumer key." msgstr "Немає додатків для даного споживчого ключа." +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "Не дозволяється використовувати API." @@ -6849,9 +6919,11 @@ msgstr "Не вдалося знайти профіль і додаток, по msgid "Could not issue access token." msgstr "Не вдалося видати токен доступу." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "Помилка бази даних при додаванні користувача OAuth-додатку." +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "Помилка бази даних при додаванні користувача OAuth-додатку." @@ -6950,6 +7022,13 @@ msgstr "Скасувати" msgid "Save" msgstr "Зберегти" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "Дія невідома" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " від " @@ -6972,11 +7051,12 @@ msgstr "Підтверджено доступ %1$s — «%2$s»." msgid "Access token starting with: %s" msgstr "Токен доступу починається з: %s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "Відкликати" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "Елемент author повинен містити елемент name." @@ -7147,6 +7227,8 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7472,9 +7554,14 @@ msgstr "Запустіть файл інсталяції, аби полагод msgid "Go to the installer." msgstr "Іти до файлу інсталяції." +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "Помилка бази даних" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "Загал" @@ -7486,6 +7573,7 @@ msgstr "Видалити" msgid "Delete this user" msgstr "Видалити цього користувача" +#. TRANS: Form legend of form for changing the page design. msgid "Change design" msgstr "Змінити дизайн" @@ -7497,22 +7585,15 @@ msgstr "Змінити кольори" msgid "Use defaults" msgstr "За замовч." -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "Оновити налаштування за замовчуванням" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "Повернутись до початкових налаштувань" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" msgstr "Завантажити файл" #. TRANS: Instructions for form on profile design page. +#, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Ви можете завантажити власне фонове зображення. Максимум становить 2Мб." @@ -7526,10 +7607,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Вимк." -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "Зберегти дизайн" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7564,46 +7641,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Обрати" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "Не є стрічкою у форматі Atom." - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "Немає автора в цій стрічці." -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "Неможливо імпортувати без користувача." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Веб-стрічки" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "Всі" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "Оберіть фільтр теґів" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "Теґ" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "Оберіть теґ до звуженого списку" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "Вперед" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "Надати цьому користувачеві роль «%s»" @@ -7668,9 +7761,11 @@ msgstr[2] "" msgid "Membership policy" msgstr "Політика щодо членства" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "Відкрито для всіх" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "Адміністратор має схвалити кандидатури всіх членів" @@ -7739,6 +7834,7 @@ msgid "%s blocked users" msgstr "Заблоковані користувачі %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "Адмін" @@ -7842,13 +7938,16 @@ msgstr[0] "%d б" msgstr[1] "%d б" msgstr[2] "%d б" -#, php-format +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#, fuzzy, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" "Користувач «%s» на сайті %s повідомив, що псевдонім %s належить йому. Якщо це " "дійсно так, ви можете підтвердити це просто перейшовши за наступною ланкою: %" @@ -7856,14 +7955,28 @@ msgstr "" "адресного рядка вашого веб-оглядача.) Якщо ви не є згаданим користувачем, не " "підтверджуйте нічого, просто проігноруйте це повідомлення." +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "Невідоме джерело вхідного повідомлення %d." +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "Залишити" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "Увійти" @@ -8229,6 +8342,7 @@ msgstr "" msgid "Inbox" msgstr "Вхідні" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Ваші вхідні повідомлення" @@ -8459,15 +8573,41 @@ msgstr "Дублікат допису." msgid "Couldn't insert new subscription." msgstr "Не вдалося додати нову підписку." +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Профіль" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "Профіль спільноти" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "Відповіді" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "Обрані" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "Користувач" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "Повідомлення" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8491,27 +8631,40 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Опис додатку недоступний, якщо даний додаток вимкнутий.)" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "Налаштування СМС" +#. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" msgstr "Змінити персональні налаштування" +#. TRANS: Menu item title in primary navigation panel. msgid "Site configuration" msgstr "Конфігурація сайту" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "Вийти" msgid "Logout from the site" msgstr "Вийти з сайту" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "Увійти на сайт" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "Пошук" +#. TRANS: Menu item title in primary navigation panel. msgid "Search the site" msgstr "Пошук на сайті" @@ -8559,15 +8712,36 @@ msgstr "Всі спільноти" msgid "Unimplemented method." msgstr "Метод не виконується." +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "Спільноти" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "Спільноти" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "Нові теґи" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Нові теґи" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "Постаті" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "Популярне" @@ -8611,52 +8785,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "Пошук" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "Люди" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "Пошук людей на цьому сайті" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "Дописи" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "Пошук дописів за змістом" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "Пошук спільнот на цьому сайті" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "Допомога" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "Про" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "ЧаП" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "Умови" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "Приватність" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "Джерело" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "Версія" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "Контакт" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "Бедж" @@ -8666,36 +8870,87 @@ msgstr "Розділ без заголовку" msgid "More..." msgstr "Ще..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "Налаштування СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Змінити налаштування профілю" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "Аватара" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "Завантаження аватари" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "Пароль" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "Змінити пароль" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "Пошта" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Змінити електронну адресу" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "Дизайн вашого профілю" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "Скорочення URL" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "ІМ" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "Оновлення за допомогою служби миттєвих повідомлень (ІМ)" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "СМС" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Оновлення через СМС" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "З’єднання" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Авторизовані під’єднані додатки" @@ -8705,12 +8960,6 @@ msgstr "Нічичирк!" msgid "Silence this user" msgstr "Змусити користувача замовкнути, відправити у забуття" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "Профіль" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8736,6 +8985,7 @@ msgid "People subscribed to %s." msgstr "Люди підписані до %s" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, fuzzy, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8746,12 +8996,6 @@ msgstr "В очікуванні учасників (%d)" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "Спільноти" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8759,7 +9003,6 @@ msgid "Groups %s is a member of." msgstr "Спільноти, до яких залучений %s" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Запросити" @@ -9036,30 +9279,14 @@ msgstr "Неправильний XML, корінь XRD відсутній." msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." -#~ msgid "Already repeated that notice." -#~ msgstr "Цей допис вже повторено." +#~ msgid "Restore default designs" +#~ msgstr "Оновити налаштування за замовчуванням" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "Опишіть себе та свої інтереси вкладаючись у %d символ" -#~ msgstr[1] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" -#~ msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів" +#~ msgid "Reset back to default" +#~ msgstr "Повернутись до початкових налаштувань" -#~ msgid "Describe yourself and your interests" -#~ msgstr "Опишіть себе та свої інтереси" +#~ msgid "Save design" +#~ msgstr "Зберегти дизайн" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s, сторінка %2$d" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "Ліцензія «%1$s» не відповідає ліцензії сайту «%2$s»." - -#~ msgid "Invalid group join approval: not pending." -#~ msgstr "Невірне підтвердження приєднання до спільноти: не очікується." - -#~ msgid "Error repeating notice." -#~ msgstr "Помилка при повторенні допису." +#~ msgid "Not an atom feed." +#~ msgstr "Не є стрічкою у форматі Atom." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 4251185477..4d55223919 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -15,21 +15,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:19+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-26 11:23:47+0000\n" +"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration msgid "Access" msgstr "访问" @@ -140,6 +139,7 @@ msgstr "没有这个页面。" #. TRANS: Client error displayed requesting groups for a non-existing user. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "没有这个用户。" @@ -153,6 +153,12 @@ msgstr "%1$s 和好友,第%2$d页" #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s 和好友们" @@ -276,6 +282,7 @@ msgstr "无法更新用户。" #. TRANS: Server error displayed when trying to get a user hCard for a user without a profile. #. TRANS: Server error displayed when trying to reply to a user without a profile. #. TRANS: Server error displayed requesting groups for a user without a profile. +#. TRANS: Server error displayed when trying to perform a gallery action with a user without a profile. #. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile. msgid "User has no profile." msgstr "用户没有个人信息。" @@ -1933,14 +1940,17 @@ msgid "Use defaults" msgstr "使用默认值" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default. msgid "Restore default designs." msgstr "还原默认设计。" #. TRANS: Title for button for resetting theme settings. +#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. msgid "Reset back to default." msgstr "重置回默认值。" #. TRANS: Title for button for saving theme settings. +#. TRANS: Title for button on profile design page to save settings. msgid "Save design." msgstr "保存设计。" @@ -2267,6 +2277,7 @@ msgstr "不是赞成的最爱。" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" msgstr "最新被收藏的消息" @@ -2302,6 +2313,8 @@ msgstr "现在就[注册一个账户](%%action.register%%)并成为第一个添 #. TRANS: %s is a user's nickname. #. TRANS: Title for first page of favourite notices of a user. #. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "%s收藏的消息" @@ -2314,6 +2327,7 @@ msgstr "%2$s 上被 %1$s 收藏的消息!" #. TRANS: Page title for first page of featured users. #. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "推荐用户" @@ -3541,7 +3555,6 @@ msgid "Password saved." msgstr "密码已保存。" #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration msgid "Paths" msgstr "路径" @@ -4049,6 +4062,7 @@ msgid "Public timeline, page %d" msgstr "公共时间线,第%d页" #. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "公共时间线" @@ -4505,6 +4519,8 @@ msgstr "已转发!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. #. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "对 %s 的回复" @@ -4612,6 +4628,7 @@ msgid "System error uploading file." msgstr "上传文件时出错。" #. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "不是一个Atom源" @@ -5694,7 +5711,7 @@ msgstr "无效的消息内容。" msgid "Error saving user URL shortening preferences." msgstr "" -#. TRANS: User admin panel title +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "用户" @@ -5717,6 +5734,9 @@ msgstr "无效的欢迎文字。最大长度255个字符。" msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "无效的默认关注:“%1$s”不是一个用户。" +#. TRANS: Fieldset legend in user administration panel. +#, fuzzy +msgctxt "LEGEND" msgid "Profile" msgstr "个人信息" @@ -5808,7 +5828,6 @@ msgid "Subscription authorized" msgstr "已授权关注" #. TRANS: Accept message text from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -5822,7 +5841,6 @@ msgid "Subscription rejected" msgstr "关注已拒绝" #. TRANS: Reject message from Authorise subscription page. -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -5955,7 +5973,6 @@ msgid "Contributors" msgstr "贡献者" #. TRANS: Header for StatusNet license section on the version page. -#. TRANS: Menu item for site administration msgid "License" msgstr "许可协议" @@ -5988,7 +6005,6 @@ msgid "" msgstr "你应该在本程序中收到了一份 GNU Affero GPL 的副本,如果没有收到请看%s。" #. TRANS: Header for StatusNet plugins section on the version page. -#. TRANS: Menu item for site administration msgid "Plugins" msgstr "插件" @@ -6402,7 +6418,9 @@ msgstr "回复" msgid "Write a reply..." msgstr "" +#. TRANS: Tab on the notice form. #, fuzzy +msgctxt "TAB" msgid "Status" msgstr "StatusNet" @@ -6517,8 +6535,9 @@ msgstr "不受信任的用户的信息不被重写。" msgid "No content for notice %s." msgstr "通知 %s 没有内容。" -#, php-format -msgid "No such user %s." +#. TRANS: Exception thrown if no user is provided. %s is a user ID. +#, fuzzy, php-format +msgid "No such user \"%s\"." msgstr "没有这样的用户 %s。" #. TRANS: Client exception thrown when post to collection fails with a 400 status. @@ -6565,80 +6584,129 @@ msgstr "saveSettings() 尚未实现。" msgid "Unable to delete design setting." msgstr "无法删除外观设置。" +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Home" msgstr "主页" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "主页" + +#. TRANS: Header in administrator navigation panel. +#, fuzzy +msgctxt "HEADER" msgid "Admin" msgstr "管理" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" msgstr "基本网站配置" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" msgstr "网站" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" msgstr "外观配置" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" msgstr "外观" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "用户配置" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "User" msgstr "用户" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "访问配置" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Access" +msgstr "访问" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "路径配置" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Paths" +msgstr "路径" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "会话配置" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Sessions" msgstr "Sessions" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" msgstr "编辑网站消息" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Site notice" msgstr "网站消息" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" msgstr "更改站点配置" -#. TRANS: Menu item for site administration +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Snapshots" msgstr "快照" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "设置网站许可协议" -#. TRANS: Menu item title/tooltip +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "License" +msgstr "许可协议" + +#. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "Plugins configuration" msgstr "路径配置" +#. TRANS: Menu item in administrator navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Plugins" +msgstr "插件" + #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "API 资源需要读写的访问权限,但是你只有只读的权限。" @@ -6647,6 +6715,7 @@ msgstr "API 资源需要读写的访问权限,但是你只有只读的权限 msgid "No application for that consumer key." msgstr "没有应用使用这个 consumer key。" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." msgstr "" @@ -6680,9 +6749,11 @@ msgstr "无法找到请求 token 对应的用户和应用。" msgid "Could not issue access token." msgstr "无法发行 access token。" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "插入 OAuth 应用用户时数据库出错。" +#. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "插入 OAuth 应用用户时数据库出错。" @@ -6778,6 +6849,13 @@ msgstr "取消" msgid "Save" msgstr "保存" +#. TRANS: Name for an anonymous application in application list. +#, fuzzy +msgid "Unknown application" +msgstr "未知动作" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr " by " @@ -6800,11 +6878,12 @@ msgstr "通过了%1$s - \"%2$s\"的访问权限。" msgid "Access token starting with: %s" msgstr "Access token 的开始:%s" -#. TRANS: Button label +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "取消" +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "作者元素必须包含一个名称元素。" @@ -6974,6 +7053,8 @@ msgstr "%s是一个远程的用户;你只能给同一个服务器上的用户 #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." @@ -7291,9 +7372,14 @@ msgstr "或许你想运行安装程序来解决这个问题。" msgid "Go to the installer." msgstr "去安装程序。" +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "数据库错误" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Public" msgstr "公共" @@ -7305,6 +7391,7 @@ msgstr "删除" msgid "Delete this user" msgstr "删除这个用户" +#. TRANS: Form legend of form for changing the page design. #, fuzzy msgid "Change design" msgstr "保存外观" @@ -7317,14 +7404,6 @@ msgstr "改变颜色" msgid "Use defaults" msgstr "使用默认值" -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs" -msgstr "恢复默认外观" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default" -msgstr "重置到默认" - #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" @@ -7333,7 +7412,7 @@ msgstr "上传文件" #. TRANS: Instructions for form on profile design page. #, fuzzy msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +"You can upload your personal background image. The maximum file size is 2MB." msgstr "你可以上传你的个人页面背景。文件最大 2MB。" #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -7346,10 +7425,6 @@ msgctxt "RADIO" msgid "Off" msgstr "关闭" -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design" -msgstr "保存外观" - #. TRANS: Error message displayed if design settings could not be saved. #. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Couldn't update your design." @@ -7384,46 +7459,62 @@ msgctxt "BUTTON" msgid "Favor" msgstr "请" +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "RSS 2.0" +#. TRANS: Feed type name. msgid "Atom" msgstr "Atom" +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "FOAF" -msgid "Not an atom feed." -msgstr "不是一个Atom源" - +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "没有在源中的作者。" -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +#, fuzzy +msgid "Cannot import without a user." msgstr "没有用户无法导入。" #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Feeds" +#. TRANS: List element on gallery action page to show all tags. +#, fuzzy +msgctxt "TAGS" msgid "All" msgstr "全部" +#. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" msgstr "选择要过滤的标签" +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "标签" -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +#, fuzzy +msgid "Choose a tag to narrow list." msgstr "选择标签缩小清单" +#. TRANS: Submit button text on gallery action page. +#, fuzzy +msgctxt "BUTTON" msgid "Go" msgstr "执行" +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "给这个用户添加\\\"%s\\\"权限" @@ -7479,9 +7570,11 @@ msgstr[0] "该小组额外的昵称,用逗号或者空格分隔开,最多%d msgid "Membership policy" msgstr "注册时间" +#. TRANS: Group membership policy option. msgid "Open to all" msgstr "" +#. TRANS: Group membership policy option. msgid "Admin must approve all members" msgstr "" @@ -7547,6 +7640,7 @@ msgid "%s blocked users" msgstr "%s 屏蔽的用户" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" msgstr "管理" @@ -7644,23 +7738,40 @@ msgid "%dB" msgid_plural "%dB" msgstr[0] "%dB" +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%s\" on %s has said that your %s screenname belongs to them. If " -"that's true, you can confirm by clicking on this URL: %s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " -"user isn't you, or if you didn't request this confirmation, just ignore this " -"message." +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "未知的收件箱来源%d。" +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Button text on form to leave a group. +#, fuzzy +msgctxt "BUTTON" msgid "Leave" msgstr "离开" #. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" msgstr "登录" @@ -8038,6 +8149,7 @@ msgstr "" msgid "Inbox" msgstr "收件箱" +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "你收到的私信" @@ -8264,15 +8376,41 @@ msgstr "复制消息。" msgid "Couldn't insert new subscription." msgstr "无法添加新的关注。" +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "配置文件" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" msgstr "小组资料" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Replies" msgstr "答复" +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" msgid "Favorites" msgstr "收藏夹" +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +#, fuzzy +msgctxt "FIXME" +msgid "User" +msgstr "用户" + +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Messages" +msgstr "消息" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8296,29 +8434,42 @@ msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" msgstr "" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Settings" msgstr "SMS 设置" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Change your personal settings" msgstr "修改你的个人信息" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Site configuration" msgstr "用户配置" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Logout" msgstr "登出" msgid "Logout from the site" msgstr "从网站登出" +#. TRANS: Menu item title in primary navigation panel. msgid "Login to the site" msgstr "登录这个网站" +#. TRANS: Menu item in primary navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Search" msgstr "搜索" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy msgid "Search the site" msgstr "搜索帮助" @@ -8367,15 +8518,36 @@ msgstr "所有小组" msgid "Unimplemented method." msgstr "未使用的方法。" +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Groups" +msgstr "小组" + +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "用户小组" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Recent tags" msgstr "最近标签" +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "最近标签" + +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Featured" msgstr "推荐用户" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Popular" msgstr "热门收藏" @@ -8419,52 +8591,82 @@ msgctxt "BUTTON" msgid "Search" msgstr "搜索" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" msgid "People" msgstr "用户" +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "搜索本站用户" +#. TRANS: Menu item in search group navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Notices" +msgstr "消息" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "搜索消息内容" +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "搜索本站小组" -#. TRANS: Secondary navigation menu option leading to help on StatusNet. +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" msgid "Help" msgstr "帮助" -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "About" msgstr "关于" -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" msgid "FAQ" msgstr "FAQ" -#. TRANS: Secondary navigation menu option leading to Terms of Service. +#. TRANS: Secondary navigation menu item leading to Terms of Service. +#, fuzzy +msgctxt "MENU" msgid "TOS" msgstr "条款" -#. TRANS: Secondary navigation menu option leading to privacy policy. +#. TRANS: Secondary navigation menu item leading to privacy policy. +#, fuzzy +msgctxt "MENU" msgid "Privacy" msgstr "隐私" -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +#, fuzzy +msgctxt "MENU" msgid "Source" msgstr "源码" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +#, fuzzy +msgctxt "MENU" msgid "Version" msgstr "版本" -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" msgid "Contact" msgstr "联系" -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +#, fuzzy +msgctxt "MENU" msgid "Badge" msgstr "挂件" @@ -8474,36 +8676,87 @@ msgstr "无标题章节" msgid "More..." msgstr "更多..." +#. TRANS: Header in settings navigation panel. +#, fuzzy +msgctxt "HEADER" +msgid "Settings" +msgstr "SMS 设置" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "修改你的个人信息" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Avatar" +msgstr "头像" + +#. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" msgstr "上传一个头像。" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Password" +msgstr "密码" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change your password" msgstr "修改密码" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "Email" +msgstr "电子邮件" + +#. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "修改电子邮件" +#. TRANS: Menu item title in settings navigation panel. msgid "Design your profile" msgstr "设计你的个人页面外观" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "URL" msgstr "URL 互联网地址" +#. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" msgstr "" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "IM" +msgstr "即时通讯IM" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" msgstr "使用即时通讯工具(IM)更新" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" +msgid "SMS" +msgstr "SMS" + +#. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "使用 SMS 更新" +#. TRANS: Menu item in settings navigation panel. +#, fuzzy +msgctxt "MENU" msgid "Connections" msgstr "关联" +#. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "被授权已连接的应用" @@ -8513,12 +8766,6 @@ msgstr "禁言" msgid "Silence this user" msgstr "将此用户禁言" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Profile" -msgstr "个人信息" - #. TRANS: Menu item in local navigation menu. #, fuzzy msgctxt "MENU" @@ -8544,6 +8791,7 @@ msgid "People subscribed to %s." msgstr "关注了%s的用户" #. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" @@ -8554,12 +8802,6 @@ msgstr "" msgid "Approve pending subscription requests." msgstr "" -#. TRANS: Menu item in local navigation menu. -#, fuzzy -msgctxt "MENU" -msgid "Groups" -msgstr "小组" - #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. #, fuzzy, php-format @@ -8567,7 +8809,6 @@ msgid "Groups %s is a member of." msgstr "%s 组是成员组成了" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Invite" msgstr "邀请" @@ -8824,25 +9065,14 @@ msgstr "不合法的XML, 缺少XRD根" msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" -#~ msgid "Already repeated that notice." -#~ msgstr "已转发了该消息。" +#~ msgid "Restore default designs" +#~ msgstr "恢复默认外观" -#~ msgid "Describe yourself and your interests in %d character" -#~ msgid_plural "Describe yourself and your interests in %d characters" -#~ msgstr[0] "用不超过%d个字符描述你自己和你的兴趣" +#~ msgid "Reset back to default" +#~ msgstr "重置到默认" -#~ msgid "Describe yourself and your interests" -#~ msgstr "描述你自己和你的兴趣" +#~ msgid "Save design" +#~ msgstr "保存外观" -#~ msgid "Where you are, like \"City, State (or Region), Country\"" -#~ msgstr "你的地理位置,格式类似\"城市,省份,国家\"" - -#~ msgid "%1$s, page %2$d" -#~ msgstr "%1$s,第%2$d页" - -#~ msgid "" -#~ "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." -#~ msgstr "Listenee stream 许可证“‘%1$s” 与本网站的许可证 “%2$s”不兼容。" - -#~ msgid "Error repeating notice." -#~ msgstr "转发消息时出错。" +#~ msgid "Not an atom feed." +#~ msgstr "不是一个Atom源" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index b987e8a6b5..a533aa454c 100644 --- a/plugins/APC/locale/APC.pot +++ b/plugins/APC/locale/APC.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po index 1fc40bf2cc..ea577b311f 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index c172c7a488..6609e3a7f4 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po index ae58038b55..4df1a93b3d 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index 1c7e8dff92..8ab00c2268 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index 19e2ccc30b..74342e8a6b 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index 97736a1e35..5968c64ab9 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po index 89591422a9..d85ae60392 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index a7c27d0e34..c133b05e93 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index 0f0935ff20..2577b4c35e 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index c11b7dd1ff..00c2472e10 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index ce705f0d4a..793aea6307 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index 4e1dca8684..1147b398b3 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index d2856a8c2e..dacbedb420 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index 895f54117d..c7a2ed1dee 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po index b56f2dccbf..292f6dc79b 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index d23b9e9d66..778a8accae 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index 5d16e6be06..0d59d29a85 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index 3abbe0f819..29f9c3a893 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po index d9fcdbe8d0..ccc610f0c5 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/AccountManager/locale/AccountManager.pot b/plugins/AccountManager/locale/AccountManager.pot index a4af2f738f..826a2a210c 100644 --- a/plugins/AccountManager/locale/AccountManager.pot +++ b/plugins/AccountManager/locale/AccountManager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po index 20a724bae4..6fc5415635 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po index 7bc72708e9..252cd48f10 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index 5705651127..0c7589036e 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po index ca205eebc6..63c812e890 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po index ccb2c7f9cb..0647c97d7f 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po index 436ba84466..7790cff7e0 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po index 0d47fde763..58d5067c74 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po index a475a905a7..8c61de0284 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po index 891b3f03d5..d0e21e9df7 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po index b5f9dd1d7c..fdeff3e996 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index b9fca0f07c..e7a3ee4523 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po index 42edb14b1c..b0eb9fed5e 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:21+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index 69d0a987d2..56222b3d21 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:21+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index 2a3068b9d9..050ad17637 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index 122c165054..6f9ede700a 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index e86ec357ec..2b784f48a9 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index 9366c66530..4388d0aa34 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index a214de8f5b..153ac5a90a 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index 4810bac90b..a3f4f8c80e 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 8dd1185a4c..1b55029a3c 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po index e8064a5462..f14eef3c43 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index 912d9410fc..dff5a616bd 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po index 83adad0eda..e7f44dd22a 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index a43f0ae665..f4fd833083 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index 6ff75b1ea3..cf35de86d9 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index 019736d3b9..4a52e08680 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index fbc26d4aa2..d0c6c70f0c 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 55d6d2e21e..7d5148ef60 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index 2622bdf2a9..5b73cc56ca 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:22+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Aim/locale/Aim.pot b/plugins/Aim/locale/Aim.pot index 12a498e7a7..5264517fa5 100644 --- a/plugins/Aim/locale/Aim.pot +++ b/plugins/Aim/locale/Aim.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po index bf5f962ec7..d4d10da503 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po index 774d26fefd..cacf453467 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po index 61d634c899..bb354f9467 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po index 064b5a844a..1b085723b0 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po index 30619fc730..815cd464af 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po index 6bd0ee8690..1521074def 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po index 7980536363..d86ff6734e 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po index 7200911035..58de2dc76e 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index 75f0f173e7..adf35b1f77 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po index a9748d6d56..66cc40cba9 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index a1e210e127..72d907db8d 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index 646f5a3c5a..b9d9a74652 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index 573826a872..06ec0b3c0b 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index 9248ed5e95..b53382767d 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index 4fa91e5210..2ab8567878 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index 788f724da2..8f0c34a40d 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index 1af49d153b..e20f501e90 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index 82aa5db5a9..222c33cf85 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po index 53e00eb2cc..4b86692758 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po index 9ec2142777..b457a0769a 100644 --- a/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index e154380868..60587123b2 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 1a528c556b..f34487840e 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:05:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index b525cd5fe5..13e0b36836 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po index 3833e95e03..459b5c4916 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po index 4fb062eb4b..5f7cf9166e 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index 2940e96e19..77c52148e3 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index 363803e4cf..e2ac061cf5 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index be8a982bb5..b8a5901ecc 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index e3d02e028c..c2e6aef7f9 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index 98334215e2..03b0926473 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index a9f4bf1dc3..70c0838542 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index 78c867a61a..b425b99a5e 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 1534a4204b..8809d7c8ac 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index e185dddfa7..13c67c697a 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po index 38d2ff6658..4fb609f9d7 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:28+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index a9fc9e329f..2912f6426e 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po index 6ef4d75f49..5906e63952 100644 --- a/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/be-tarask/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po index bf715deaac..106d146243 100644 --- a/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/br/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index d80ac88e9b..ac05b27a95 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index 3e43082b68..1c4b4b3544 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po index 0f40e35cc7..9f344c8935 100644 --- a/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fi/LC_MESSAGES/Autocomplete.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 14a17fed31..ab46e77cab 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index edc5621a47..66955d2f28 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 712ef07b9e..e7a6101a64 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po index ad8f985fae..08cf3200f4 100644 --- a/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/id/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po index b7b5544f9c..0af48d1c9d 100644 --- a/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ja/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index d24390c48a..f87f940a22 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index 33d9d84c63..b23cda5c2d 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po index ebc38e2696..b0bfeddbb8 100644 --- a/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pt/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po index aac1e66a03..e1af9c0e51 100644 --- a/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/pt_BR/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po index 670a421abe..7c0b62fc48 100644 --- a/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ru/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index 191754348c..3a0f38c296 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 7701b50637..3fd8a04e75 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po index 9898055ed0..0264875201 100644 --- a/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/zh_CN/LC_MESSAGES/Autocomplete.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Awesomeness/locale/Awesomeness.pot b/plugins/Awesomeness/locale/Awesomeness.pot index d7c118dc5e..79214e2107 100644 --- a/plugins/Awesomeness/locale/Awesomeness.pot +++ b/plugins/Awesomeness/locale/Awesomeness.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po index fef1c846a9..a0d8a6de5f 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po index 7c5069e9c8..7993210b00 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po index de7e30993b..9e294f6a47 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po index 44c6ec8a75..f9a86b2b73 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po index e37ca29d6d..e622154546 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po index f26e112d18..c58b712d23 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po index f3f9bd277b..2d5cfc7452 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po index c32c5621c6..3e6d4b19a2 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po index 74a3a9aef8..8012c9532a 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index e3e2201ab0..147df16a17 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index db507c3bba..00da4aa4db 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po index 08bc86c61a..b6f90c1c35 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:30+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po index ebc328c4a3..93e9441ac5 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:30+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index a586f3a100..66978dd00b 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index f124346bd3..b0e685358c 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po index e39f680cd8..4280ca2057 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 0f62020064..f122e4f568 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 04eb1c0752..413265dbba 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index 10808521cb..1b38c1ae7e 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index e17c2489b4..a357556c47 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -57,7 +57,7 @@ msgstr "API-sleutel" msgctxt "BUTTON" msgid "Save" -msgstr "" +msgstr "Opslaan" msgid "Save bit.ly settings" msgstr "bit.ly-instellingen opslaan" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index 259d4733f0..893d59cea7 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index 2d4a407565..2fc52ef57d 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 16dbe5dc32..89f3854d5f 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po index 4370278e1f..45ce575127 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po index 14d9f5fc1a..833ff1c4df 100644 --- a/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/br/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index fe768c3bdb..789df6af7b 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po index 67aa1d0ff5..e595a51b0b 100644 --- a/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/es/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index b999401c29..da12a39175 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index 809a0b83dd..488fe503ad 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index 748d254f29..8702fd75dd 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index bcaada9d56..c63b6b7de8 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po index 8eb0770cb4..a1dc935e00 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index 48af1ec663..23d56b4565 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index 4ffea9ddd7..e109d3d8d0 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:57+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index 591d0dca04..75f2e45a4b 100644 --- a/plugins/BlankAd/locale/BlankAd.pot +++ b/plugins/BlankAd/locale/BlankAd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po index b0288f6db6..4113c77a09 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index 100cdfb430..83b71cc10a 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po index 3babcf8532..3bf555dfeb 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index 8d4d720e5f..cab05cca48 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po index 5cbf275a6b..056c7a7de2 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index 1157313dd9..9942896b19 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index 63c3266380..a6e4bb1ebc 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index ed864303a2..a2957654e1 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index b447cff7d9..dbd9f77a16 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index 9e35ffb44b..15cf032e80 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index 3c41bdb06a..d8a55bb0af 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index e8b718dbde..bbe394c633 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index 3e76d8bb60..874991a7aa 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index 31638775d7..2e25792aea 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index f3b9a5b7d3..ef6d4450ba 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po index 267051f0df..053fce9787 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index d3c08f7e1b..bb77ea9da5 100644 --- a/plugins/BlogspamNet/locale/BlogspamNet.pot +++ b/plugins/BlogspamNet/locale/BlogspamNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po index ac10ad7947..71aed3b615 100644 --- a/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/be-tarask/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po index c980eab579..c7202ed28a 100644 --- a/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/br/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index 7bbbc9615c..6aac113fcc 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po index 729b0619d8..5df7b49d70 100644 --- a/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/es/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po index 9dcec91d04..9a3ce4d5d1 100644 --- a/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fi/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index aa97ead503..6690bd6c8b 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po index 54b0c7c80b..0dd922f062 100644 --- a/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/he/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 209d4f0b7b..0fd91a58d0 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index 618c189276..4ce8e0cfa4 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 4acca76050..441a042b03 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index 1d2cf5a46a..5e9fef7956 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" @@ -23,7 +23,7 @@ msgstr "" #, php-format msgid "Spam checker results: %s" -msgstr "" +msgstr "Spamcontroleresultaten: %s" msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plug-in om mededelingen te controleren tegen blogspam.net." diff --git a/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po index c1708d2ad8..a9a89dc37f 100644 --- a/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/pt/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index d7936b570d..9a404fbeee 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index f9675c4584..a086348f57 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index 429343e847..6756f6666f 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po index 2e12b94d36..6a51cdc25f 100644 --- a/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/zh_CN/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:08:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 37e57dfc64..568c8ecba6 100644 --- a/plugins/Bookmark/locale/Bookmark.pot +++ b/plugins/Bookmark/locale/Bookmark.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index f45b945ba6..2ed1e17167 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,64 +9,65 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Bad import file." -msgstr "" +msgstr "Ongeldig importbestand." msgid "No tag in a
." -msgstr "" +msgstr "Geen label in een
." msgid "Skipping private bookmark." -msgstr "" +msgstr "Privébladwijzer wordt overgeslagen." #. TRANS: Client exception thrown when referring to a non-existing bookmark. msgid "No such bookmark." -msgstr "" +msgstr "De bladwijzer bestaat niet." #. TRANS: Title for bookmark. #. TRANS: %1$s is a user nickname, %2$s is a bookmark title. #, php-format msgid "%1$s's bookmark for \"%2$s\"" -msgstr "" +msgstr "Bladwijzer van %1$s voor \"%2$s\"" msgid "Simple extension for supporting bookmarks." msgstr "Eenvoudige extensie voor de ondersteuning van bladwijzers." msgid "Import del.icio.us bookmarks" -msgstr "" +msgstr "Bladwijzers van del.icio.us importeren" msgid "Expected exactly 1 link rel=related in a Bookmark." msgstr "" +"Er wordt precies 1 verwijzing \"rel=related\" verwacht in een bladwijzer." msgid "Bookmark notice with the wrong number of attachments." -msgstr "" +msgstr "Bladwijzermededeling met het verkeerde aantal bijlagen." msgid "Bookmark" msgstr "Bladwijzer" -#, fuzzy, php-format +#, php-format msgid "Bookmark on %s" -msgstr "Bladwijzer" +msgstr "Bladwijzer op %s" msgid "Bookmark already exists." -msgstr "" +msgstr "De bladwijzer bestaat al." #. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, #. TRANS: %4$s is space separated list of hash tags. #, php-format msgid "\"%1$s\" %2$s %3$s %4$s" -msgstr "" +msgstr "\"%1$s\" %2$s %3$s %4$s" #, php-format msgid "" @@ -74,126 +75,136 @@ msgid "" "%3$s %4$s" msgstr "" +"%2$s " +"%3$s %4$s" msgid "Unknown URL" -msgstr "" +msgstr "Onbekende URL" #, php-format msgid "Notices linking to %s" -msgstr "" +msgstr "Mededeling die verwijzen naar %s" msgid "Only logged-in users can import del.icio.us backups." msgstr "" +"Alleen aangemelde gebruikers kunnen back-ups van del-icio.us importeren." msgid "You may not restore your account." -msgstr "" +msgstr "U mag uw gebruiker niet terugladen van back-up." msgid "No uploaded file." -msgstr "" +msgstr "Er is geen geüpload bestand." #. TRANS: Client exception thrown when an uploaded file is too large. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"Het te uploaden bestand is groter dan de ingestelde upload_max_filesize in " +"php.ini." #. TRANS: Client exception. msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Het te uploaden bestand is groter dan de ingestelde MAX_FILE_SIZE in het " +"HTML-formulier." #. TRANS: Client exception. msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "De upload is slechts gedeeltelijk voltooid." #. TRANS: Client exception thrown when a temporary folder is not present msgid "Missing a temporary folder." -msgstr "" +msgstr "De tijdelijke map is niet aanwezig." #. TRANS: Client exception thrown when writing to disk is not possible msgid "Failed to write file to disk." -msgstr "" +msgstr "Het was niet mogelijk naar schijf te schrijven." #. TRANS: Client exception thrown when a file upload has been stopped msgid "File upload stopped by extension." -msgstr "" +msgstr "Het uploaden van het bestand is tegengehouden door een uitbreiding." #. TRANS: Client exception thrown when a file upload operation has failed msgid "System error uploading file." -msgstr "" +msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." #, php-format msgid "Getting backup from file '%s'." -msgstr "" +msgstr "De back-up wordt uit het bestand \"%s\" geladen." msgid "" "Bookmarks have been imported. Your bookmarks should now appear in search and " "your profile page." msgstr "" +"De bladwijzers zijn geïmporteerd. Uw bladwijzers horen nu te verschijnen in " +"zoekopdrachten en op uw profielpagina." msgid "Bookmarks are being imported. Please wait a few minutes for results." msgstr "" +"De bladwijzers worden geïmporteerd. Wacht een aantal minuten tot dit is " +"afgerond." msgid "You can upload a backed-up delicious.com bookmarks file." -msgstr "" +msgstr "U kunt een back-upbestand met bladwijzers van delicious.com uploaden." msgctxt "BUTTON" msgid "Upload" msgstr "Uploaden" msgid "Upload the file" -msgstr "" +msgstr "Bestand uploaden" msgctxt "LABEL" msgid "Title" -msgstr "" +msgstr "Naam" msgid "Title of the bookmark" -msgstr "" +msgstr "Naam van de bladwijzer" msgctxt "LABEL" msgid "URL" -msgstr "" +msgstr "URL" -#, fuzzy msgid "URL to bookmark" -msgstr "Bladwijzer" +msgstr "URL voor bladwijzer" msgctxt "LABEL" msgid "Tags" -msgstr "" +msgstr "Labels" msgid "Comma- or space-separated list of tags" -msgstr "" +msgstr "Lijst met labels door komma's of spaties gescheiden" msgctxt "LABEL" msgid "Description" -msgstr "" +msgstr "Beschrijving" msgid "Description of the URL" -msgstr "" +msgstr "Beschrijving van de URL" msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" -#, fuzzy msgid "New bookmark" -msgstr "Bladwijzer" +msgstr "Nieuwe bladwijzer" msgid "Must be logged in to post a bookmark." -msgstr "" +msgstr "U moet aangemeld zijn om een bladwijzer te kunnen toevoegen." msgid "Bookmark must have a title." -msgstr "" +msgstr "Een bladwijzer moet een naam hebben." msgid "Bookmark must have an URL." -msgstr "" +msgstr "Een bladwijzer moet een URL hebben." #. TRANS: Page title after sending a notice. msgid "Notice posted" -msgstr "" +msgstr "De mededeling is verzonden" #. TRANS: %s is the filename that contains a backup for a user. #, php-format msgid "Getting backup from file \"%s\"." -msgstr "" +msgstr "De back-up wordt uit het bestand \"%s\" geladen." diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 975f45892a..8dcb6fbc7e 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po index 6a30328856..0b6c62c963 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po index c6e4efd3a8..46c1483345 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index ec17a72986..2f2267db25 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index 05430c6941..34f0c4ec1c 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index 23e2569529..d889370f4e 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index 44aafa5a51..846ec125fb 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index 77acecd3bc..b738d9faa7 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index 33be8c843a..bbc42de2f2 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index 3bbf3d1409..b0265d5c55 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index 440829d48f..7ec26f2941 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index bd2adb9559..43ea0585c0 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index da5d1b11cd..3122c79827 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index 91b6057a62..7b39fe229c 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index 22be492e57..cb0068c9d0 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:38+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index 6c45e2d956..3213485e27 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po index e2a51ea7b0..bcf1de70c4 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po index 547b673e25..425afa0b6d 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index 7b5a94c6b2..7486d29213 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index 69f64152a7..fb3b690663 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 2586fbc61b..ec55f0c4e0 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index db4d8bb652..deba36eb25 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:39+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index 6ac34183c5..9ee484c004 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index 3484092d05..dd9912a216 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po index 75dbb481dc..aaf3483b83 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po index 77facd6e8c..76c9893d3a 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 21626b8fd0..01c8a89f1f 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po index f30b169530..290e056bdf 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 5f61b81a4c..dbf84b6f3b 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po index 3f05a1d843..abf5428b54 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po index a2d5592fa9..e6c1e6f21c 100644 --- a/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/br/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index 8691327ff3..0ef0ba70b0 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index 924303b542..fe0636a165 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index 98fbf9aa1e..ca1209b6df 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index c37f2ce1be..013c54a1b7 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:40+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index 11553c01d4..6bbb012e22 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index 10542ff902..b4474ab59c 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index d9e353e2cf..9f5011d264 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index 64e711b3de..6552b84567 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index ba4da899fe..cd62009372 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po index f3a71ea0de..da95328cf7 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index ba206b4e87..a85fd6da23 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index 07861a5ad3..2c859cd4af 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po index d8c91f5135..024578064e 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index e05c894348..47bc73a9f2 100644 --- a/plugins/Comet/locale/Comet.pot +++ b/plugins/Comet/locale/Comet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index 4bf8902bb6..58dcc3d5ab 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" @@ -23,6 +23,5 @@ msgstr "" #. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages #. TRANS: and Comet is a web application model. -#, fuzzy msgid "Plugin to make updates using Comet and Bayeux." -msgstr "Plug-in om \"real time\" updates te brengen via Comet/Bayeux." +msgstr "Plug-in om updates te maken via Comet en Bayeux." diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 64153dd65f..271b7c77cc 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po index 2f38d08199..8e47d2ec47 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po index 1dd3b0ee6f..42f5872bdc 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index 21565f2fd5..695fae3bf9 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index 233a31e037..750195988c 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po index ecc1ebd40c..b38c3644c0 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index 2929f0f05e..6cc23092a5 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index b41e424897..06779d2603 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 6dfec7ab1a..5c87b3f8ba 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index 0a22975ef6..5c843b824d 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index 73c01a7182..dca9284db9 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index bfd165ab3a..ad3d6bd819 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 2e6b22491e..73d06bdf39 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index 2fc117e173..42fb7fcefa 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index 9f17ad389c..aa1015cdf9 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po index 2ecfa23810..e9c43d97b0 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index 2b8e198081..098204fa70 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 9883b35bfe..c938162a6c 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index a83959d935..de441531d3 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index e67e9a33c8..9e93cc5cf8 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:42+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/Directory/locale/Directory.pot b/plugins/Directory/locale/Directory.pot index 8e0ba493e8..ece5c2ef32 100644 --- a/plugins/Directory/locale/Directory.pot +++ b/plugins/Directory/locale/Directory.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index 617f3cfc4f..b40b105705 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index d602f290b3..ce0af5df98 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index 370fa0d84c..22646fe7e3 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -42,13 +42,15 @@ msgid "" "Search for people on %%site.name%% by their name, location, or interests. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"Zoeken naar gebruikers op %%site.name%% op basis van hun naam, locatie of " +"interesses. Scheid de zoektermen met spaties. Zoektermen moeten uit drie of " +"meer tekens bestaan." -#, fuzzy msgid "Search site" -msgstr "Zoeken" +msgstr "Site doorzoeken" msgid "Keyword(s)" -msgstr "" +msgstr "Trefwoord(en)" msgctxt "BUTTON" msgid "Search" @@ -59,13 +61,11 @@ msgid "No users starting with %s" msgstr "Er zijn geen gebruikers wiens naam begint met \"%s\"" msgid "No results." -msgstr "" +msgstr "Geen resultaten." -#, fuzzy msgid "Directory" msgstr "Gebruikerslijst" -#, fuzzy msgid "User Directory" msgstr "Gebruikerslijst" diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index 4719a8a191..d07a4e5705 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index a9f9aa31b5..1636163dce 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:24:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 6e827e90c6..38c3ab3563 100644 --- a/plugins/DiskCache/locale/DiskCache.pot +++ b/plugins/DiskCache/locale/DiskCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po index a0d2ed45e3..d920b83d44 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index 0d7d8a3cf2..c2fea17aae 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:07+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index f3d795b16b..103da6bc1c 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index 572925aa18..3a4b483249 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index 5a10654475..4138574dac 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index c24d5e59d5..6d63b15990 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 04b4bb7ad3..137178d66c 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index 4852ee1072..255476e60a 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index 53d8afdd82..23a3f2e86b 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index dc4b390b6d..9bc57e9d39 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index ca89a67f39..a3f0860a6b 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index 49182c49b1..d54af6ba56 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index d2f4b1fb3f..1e5684efa8 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index ec85a70174..75eb09294c 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index 015bfbad68..9bb5f3afd8 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index a4407b71cf..bd64bbae56 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index 35ed6eadb8..b1533433fd 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index efe9724ba3..f34b34f186 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:08+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 6871082dfa..5bdfdbc484 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po index 77a1e35fde..6e64175249 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index 94a679e913..a66995aa76 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index fb36def0f5..d00cf38fea 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index 9dd9cd5aaf..74ecb1cebb 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index 821be0b694..dae86e6ee8 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index b150be519c..9661c6fb83 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index 158c8a2f89..b374dbeba6 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index 451865c122..f64b54e31c 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index 64d19c3077..963d076eb2 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index 8b27d1feef..b3d05631b1 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index 797ba33777..b2898aaf47 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index a77eebb927..cd27654527 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index bf14b0ad4d..6645fd19eb 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index d13606aa8b..fb59dc7d90 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:09+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index c5dd170f9d..03b137adf1 100644 --- a/plugins/Echo/locale/Echo.pot +++ b/plugins/Echo/locale/Echo.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po index a5f84b7f62..0c14b2b63e 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index a6c7d00737..1e72192e39 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index ee96417593..3a4c3b3f62 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index 80eec9103a..a88e64f826 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index 60b0942e31..2633f97438 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index c27d5f9410..e7a2b4ad8d 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index 2bc896611d..cd9e47e5b3 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 75d244a7ea..eec8e4e7a9 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index 7cdb884d28..33a3ae9edd 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 4fb728bea9..490548c29a 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index dc0b7db1d6..a33888faf0 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index 793043a326..a36a5f6d5b 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index b0da925b3c..65d8fff6bc 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index fb01f6bb78..2c334e01a9 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index 1bedaf11a4..c345548884 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index 0d46ce1d82..006dcf3540 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index d173073815..593203f69d 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index 26f480dae6..a5036a524f 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index 28ffec85d3..cf78573b8c 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:10+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index 11a81091f8..25aad2b6f6 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index 2860c76495..b45a464f55 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po index 826bf376e5..35865705c6 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index 3c4e5711be..6d8d5be491 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index 2d83218bc8..83514053b7 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index ad22e2119b..27c94f9d54 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index 6334a0b255..dfd051d52f 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index c933faf856..2d14c0c60e 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index b6e9a92b69..1993fc3855 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index 03d9e87df6..cf595694f9 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index 70c4ca9f21..bf539229cd 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index 07a071d3d2..477bb85000 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index 87ce65e844..715fda3920 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index 3816bcaa4f..372b810d4c 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:11+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index 0119600768..d74b04bdec 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index dc44531380..a4910f8789 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index 76c97e8cea..66cf6fab59 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index 738740f0e2..c9e06331b9 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index 0bb722b111..3102e5abbf 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index a6517cc7b0..966c029e08 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index a87b52a945..7b61f6d4fa 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index 1f8c75c166..95a0d24452 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:12+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailSummary/locale/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index 8b0759860c..f0167835b0 100644 --- a/plugins/EmailSummary/locale/EmailSummary.pot +++ b/plugins/EmailSummary/locale/EmailSummary.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index 18e1bf2c78..31c76e8da0 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" @@ -23,22 +23,21 @@ msgstr "" #, php-format msgid "Recent updates from %1s for %2s:" -msgstr "" +msgstr "Recente updates van %1s voor %2s:" msgid "in context" -msgstr "" +msgstr "in context" #, php-format msgid "

change your email settings for %2s

" -msgstr "" +msgstr "

wijzig uw e-mailinstellingen voor %2s

" msgid "Updates from your network" -msgstr "" +msgstr "Updates uit uw netwerk" msgid "Send an email summary of the inbox to users." msgstr "E-mailsamenvatting verzenden naar het Postvak IN van gebruikers." #. TRANS: Checkbox label in e-mail preferences form. -#, fuzzy msgid "Send me a periodic summary of updates from my network." -msgstr "E-mailsamenvatting verzenden naar het Postvak IN van gebruikers." +msgstr "Stuur mij periodiek een samenvatting van de updates in mijn netwerk." diff --git a/plugins/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index 26d974d316..3e444d8854 100644 --- a/plugins/Event/locale/Event.pot +++ b/plugins/Event/locale/Event.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -43,8 +43,9 @@ msgid "No such RSVP." msgstr "" #. TRANS: Client exception thrown when referring to a non-existing event. -#: showrsvp.php:68 -msgid "No such Event." +#: showrsvp.php:68 newrsvp.php:82 newrsvp.php:88 cancelrsvp.php:94 +#: showevent.php:60 showevent.php:68 +msgid "No such event." msgstr "" #. TRANS: Title for event. @@ -75,12 +76,6 @@ msgstr "" msgid "New RSVP" msgstr "" -#. TRANS: Client exception thrown when referring to a non-existing event. -#: newrsvp.php:82 newrsvp.php:88 cancelrsvp.php:94 showevent.php:60 -#: showevent.php:68 -msgid "No such event." -msgstr "" - #: newrsvp.php:94 cancelrsvp.php:100 msgid "You must be logged in to RSVP for an event." msgstr "" @@ -119,7 +114,7 @@ msgid "Title" msgstr "" #: eventform.php:98 -msgid "Title of the event" +msgid "Title of the event." msgstr "" #: eventform.php:103 @@ -128,7 +123,7 @@ msgid "Start date" msgstr "" #: eventform.php:105 -msgid "Date the event starts" +msgid "Date the event starts." msgstr "" #: eventform.php:110 @@ -137,7 +132,7 @@ msgid "Start time" msgstr "" #: eventform.php:112 -msgid "Time the event starts" +msgid "Time the event starts." msgstr "" #: eventform.php:117 @@ -146,7 +141,7 @@ msgid "End date" msgstr "" #: eventform.php:119 -msgid "Date the event ends" +msgid "Date the event ends." msgstr "" #: eventform.php:124 @@ -155,7 +150,7 @@ msgid "End time" msgstr "" #: eventform.php:126 -msgid "Time the event ends" +msgid "Time the event ends." msgstr "" #: eventform.php:131 @@ -164,7 +159,7 @@ msgid "Location" msgstr "" #: eventform.php:133 -msgid "Event location" +msgid "Event location." msgstr "" #: eventform.php:138 @@ -173,7 +168,7 @@ msgid "URL" msgstr "" #: eventform.php:140 -msgid "URL for more information" +msgid "URL for more information." msgstr "" #: eventform.php:145 @@ -182,7 +177,7 @@ msgid "Description" msgstr "" #: eventform.php:147 -msgid "Description of the event" +msgid "Description of the event." msgstr "" #: eventform.php:162 @@ -198,6 +193,26 @@ msgstr "" msgid "Event" msgstr "" +#: EventPlugin.php:171 +msgid "Wrong type for object." +msgstr "" + +#: EventPlugin.php:192 +msgid "RSVP for unknown event." +msgstr "" + +#: EventPlugin.php:197 +msgid "Unknown verb for events" +msgstr "" + +#: EventPlugin.php:228 +msgid "Unknown object type." +msgstr "" + +#: EventPlugin.php:234 +msgid "Unknown event notice." +msgstr "" + #: EventPlugin.php:368 msgid "Time:" msgstr "" @@ -225,25 +240,55 @@ msgstr "" msgid "RSVP already exists." msgstr "" +#: RSVP.php:222 +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "" + +#: RSVP.php:239 +#, php-format +msgid "Unknown code \"%s\"." +msgstr "" + +#: RSVP.php:247 +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "" + +#: RSVP.php:281 +#, php-format +msgid "No profile with ID %s." +msgstr "" + +#: RSVP.php:290 +#, php-format +msgid "No event with ID %s." +msgstr "" + #: RSVP.php:319 #, php-format msgid "" -"%2s is attending %4s." +"%2$s is attending %4$s." msgstr "" #: RSVP.php:322 #, php-format msgid "" -"%2s is not attending %4s." +"%2$s is not attending " +"%4$s." msgstr "" #: RSVP.php:325 #, php-format msgid "" -"%2s might attend %4s." +"%2$s might attend %4$s." +msgstr "" + +#: RSVP.php:328 RSVP.php:363 +#, php-format +msgid "Unknown response code %s." msgstr "" #: RSVP.php:334 RSVP.php:368 @@ -252,17 +297,17 @@ msgstr "" #: RSVP.php:354 #, php-format -msgid "%1s is attending %2s." +msgid "%1$s is attending %2$s." msgstr "" #: RSVP.php:357 #, php-format -msgid "%1s is not attending %2s." +msgid "%1$s is not attending %2$s." msgstr "" #: RSVP.php:360 #, php-format -msgid "%1s might attend %2s.>" +msgid "%1$s might attend %2$s." msgstr "" #: newevent.php:66 @@ -287,7 +332,7 @@ msgstr "" #: newevent.php:138 newevent.php:144 #, php-format -msgid "Could not parse date \"%s\"" +msgid "Could not parse date \"%s\"." msgstr "" #: newevent.php:182 diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po new file mode 100644 index 0000000000..ce6687efbf --- /dev/null +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -0,0 +1,296 @@ +# Translation of StatusNet - Event to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Event\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:53+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-31 21:37:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-event\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "RSVP ini tidak wujud." + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "Acara ini tidak wujud." + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "RSVP %1$s untuk \"%2$s\"" + +msgid "You will attend this event." +msgstr "Anda akan menghadiri acara ini." + +msgid "You will not attend this event." +msgstr "Anda tidak akan menghadiri acara ini." + +msgid "You might attend this event." +msgstr "Anda mungkin menghadiri acara ini." + +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Batalkan" + +msgid "New RSVP" +msgstr "RSVP baru" + +msgid "You must be logged in to RSVP for an event." +msgstr "Anda mesti log masuk untuk membuat RSVP untuk acara." + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "Acara disimpan" + +msgid "Cancel RSVP" +msgstr "Batalkan RSVP" + +msgid "RSVP:" +msgstr "RSVP:" + +msgctxt "BUTTON" +msgid "Yes" +msgstr "Ya" + +msgctxt "BUTTON" +msgid "No" +msgstr "Tidak" + +msgctxt "BUTTON" +msgid "Maybe" +msgstr "Mungkin" + +msgctxt "LABEL" +msgid "Title" +msgstr "Tajuk" + +#, fuzzy +msgid "Title of the event." +msgstr "Nama acara" + +msgctxt "LABEL" +msgid "Start date" +msgstr "Tarikh mula" + +#, fuzzy +msgid "Date the event starts." +msgstr "Tarikh acara bermula" + +msgctxt "LABEL" +msgid "Start time" +msgstr "Waktu bermula" + +#, fuzzy +msgid "Time the event starts." +msgstr "Waktu acara bermula" + +msgctxt "LABEL" +msgid "End date" +msgstr "Tarikh tamat" + +#, fuzzy +msgid "Date the event ends." +msgstr "Tarikh acara berakhir" + +msgctxt "LABEL" +msgid "End time" +msgstr "Waktu tamat" + +#, fuzzy +msgid "Time the event ends." +msgstr "Waktu acara berakhir" + +msgctxt "LABEL" +msgid "Location" +msgstr "Lokasi" + +#, fuzzy +msgid "Event location." +msgstr "Lokasi acara" + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +#, fuzzy +msgid "URL for more information." +msgstr "URL untuk keterangan lanjut" + +msgctxt "LABEL" +msgid "Description" +msgstr "Keterangan" + +#, fuzzy +msgid "Description of the event." +msgstr "Keterangan acara" + +msgctxt "BUTTON" +msgid "Save" +msgstr "Simpan" + +msgid "Event invitations and RSVPs." +msgstr "Jemputan dan RSVP acara." + +msgid "Event" +msgstr "Acara" + +msgid "Wrong type for object." +msgstr "" + +#, fuzzy +msgid "RSVP for unknown event." +msgstr "acara yang tidak dikenali" + +#, fuzzy +msgid "Unknown verb for events" +msgstr "acara yang tidak dikenali" + +msgid "Unknown object type." +msgstr "" + +#, fuzzy +msgid "Unknown event notice." +msgstr "acara yang tidak dikenali" + +msgid "Time:" +msgstr "Waktu:" + +msgid "Location:" +msgstr "Lokasi:" + +msgid "Description:" +msgstr "Keterangan:" + +msgid "Attending:" +msgstr "Hadir:" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "Ya: %1$d Tidak: %2$d Mungkin: %3$d" + +msgid "RSVP already exists." +msgstr "RSVP sudah ada." + +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "" + +#, php-format +msgid "Unknown code \"%s\"." +msgstr "" + +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "" + +#, php-format +msgid "No profile with ID %s." +msgstr "" + +#, php-format +msgid "No event with ID %s." +msgstr "" + +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" + +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" + +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" + +#, php-format +msgid "Unknown response code %s." +msgstr "" + +msgid "an unknown event" +msgstr "acara yang tidak dikenali" + +#, php-format +msgid "%1$s is attending %2$s." +msgstr "" + +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "" + +#, fuzzy, php-format +msgid "%1$s might attend %2$s." +msgstr "Anda mungkin menghadiri acara ini." + +msgid "New event" +msgstr "" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "" + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "" + +msgid "Event must have a title." +msgstr "" + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" + +#~ msgid "No such Event." +#~ msgstr "Acara ini tidak wujud." diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index 9d823450a4..a8766392bd 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -9,26 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Event already exists." -msgstr "" +msgstr "Evenement bestaat al." #. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, #. TRANS: %4$s is location, %5$s is a description. #, php-format msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" -msgstr "" +msgstr "\"%1$s\" %2$s - %3$s (%4$s): %5$s" #, php-format msgid "" @@ -37,56 +37,55 @@ msgid "" "$s (%6$s): %7" "$s " msgstr "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". msgid "No such RSVP." -msgstr "" +msgstr "Geen dergelijk verzoek tot antwoorden." #. TRANS: Client exception thrown when referring to a non-existing event. -msgid "No such Event." -msgstr "" +msgid "No such event." +msgstr "Dat evenement bestaat niet." #. TRANS: Title for event. #. TRANS: %1$s is a user nickname, %2$s is an event title. #, php-format msgid "%1$s's RSVP for \"%2$s\"" -msgstr "" +msgstr "Antwoord van %1$s voor \"%2$s\"" msgid "You will attend this event." -msgstr "" +msgstr "U neemt deel aan dit evenement." msgid "You will not attend this event." -msgstr "" +msgstr "U neemt geen deel aan dit evenement." msgid "You might attend this event." -msgstr "" +msgstr "U meent misschien deel aan dit evenement." msgctxt "BUTTON" msgid "Cancel" msgstr "Annuleren" msgid "New RSVP" -msgstr "" - -#. TRANS: Client exception thrown when referring to a non-existing event. -msgid "No such event." -msgstr "" +msgstr "Nieuw verzoek tot antwoorden" msgid "You must be logged in to RSVP for an event." msgstr "" +"U moet zijn aangemeld zijn om te reageren op een verzoek tot antwoorden." #. TRANS: Page title after sending a notice. -#, fuzzy msgid "Event saved" -msgstr "Gebeurtenis" +msgstr "Het evenement is opgeslagen" -#, fuzzy msgid "Cancel RSVP" -msgstr "Annuleren" +msgstr "Verzoek tot antwoorden annuleren" msgid "RSVP:" -msgstr "" +msgstr "Verzoek tot antwoorden:" msgctxt "BUTTON" msgid "Yes" @@ -102,59 +101,67 @@ msgstr "Misschien" msgctxt "LABEL" msgid "Title" -msgstr "" +msgstr "Naam" -msgid "Title of the event" -msgstr "" +#, fuzzy +msgid "Title of the event." +msgstr "Naam van het evenement" msgctxt "LABEL" msgid "Start date" -msgstr "" +msgstr "Begindatum" -msgid "Date the event starts" -msgstr "" +#, fuzzy +msgid "Date the event starts." +msgstr "Datum waarop het evenement begint" msgctxt "LABEL" msgid "Start time" -msgstr "" +msgstr "Starttijd" -msgid "Time the event starts" -msgstr "" +#, fuzzy +msgid "Time the event starts." +msgstr "Tijd waarop het evenement start" msgctxt "LABEL" msgid "End date" -msgstr "" +msgstr "Einddatum" -msgid "Date the event ends" -msgstr "" +#, fuzzy +msgid "Date the event ends." +msgstr "Datum waarop het evenement eindigt" msgctxt "LABEL" msgid "End time" -msgstr "" +msgstr "Eindtijd" -msgid "Time the event ends" -msgstr "" +#, fuzzy +msgid "Time the event ends." +msgstr "Tijd waarop het evenement eindigt" msgctxt "LABEL" msgid "Location" -msgstr "" +msgstr "Locatie" -msgid "Event location" -msgstr "" +#, fuzzy +msgid "Event location." +msgstr "Locatie waar het evenement plaatsvindt" msgctxt "LABEL" msgid "URL" -msgstr "" +msgstr "URL" -msgid "URL for more information" -msgstr "" +#, fuzzy +msgid "URL for more information." +msgstr "URL met meer gegevens" msgctxt "LABEL" msgid "Description" -msgstr "" +msgstr "Beschrijving" -msgid "Description of the event" -msgstr "" +#, fuzzy +msgid "Description of the event." +msgstr "Beschrijving van het evenement" msgctxt "BUTTON" msgid "Save" @@ -164,86 +171,137 @@ msgid "Event invitations and RSVPs." msgstr "Uitnodigingen en RVSP's." msgid "Event" -msgstr "Gebeurtenis" +msgstr "Evenement" + +msgid "Wrong type for object." +msgstr "" + +#, fuzzy +msgid "RSVP for unknown event." +msgstr "een onbekend evenement" + +#, fuzzy +msgid "Unknown verb for events" +msgstr "een onbekend evenement" + +msgid "Unknown object type." +msgstr "" + +#, fuzzy +msgid "Unknown event notice." +msgstr "een onbekend evenement" msgid "Time:" -msgstr "" +msgstr "Tijd:" msgid "Location:" -msgstr "" +msgstr "Locatie:" msgid "Description:" -msgstr "" +msgstr "Beschrijving:" msgid "Attending:" -msgstr "" +msgstr "Aanwezig:" #. TRANS: RSVP counts. #. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "" +msgstr "Ja: %1$d Nee: %2$d Misschien: %3$d" msgid "RSVP already exists." +msgstr "Het verzoek tot antwoorden bestaat al." + +#, php-format +msgid "Unknown verb \"%s\"" msgstr "" #, php-format -msgid "" -"%2s is attending %4s." +msgid "Unknown code \"%s\"." msgstr "" #, php-format -msgid "" -"%2s is not attending %4s." +msgid "RSVP %s does not correspond to a notice in the database." msgstr "" #, php-format +msgid "No profile with ID %s." +msgstr "" + +#, php-format +msgid "No event with ID %s." +msgstr "" + +#, fuzzy, php-format msgid "" -"%2s might attend %2$s is attending %4$s." +msgstr "" +"%2s is aanwezig bij %4s." + +#, fuzzy, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" +"%2s is niet aanwezig " +"bij %4s." + +#, fuzzy, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" +"%2s is misschien " +"aanwezig bij %4s." + +#, php-format +msgid "Unknown response code %s." msgstr "" msgid "an unknown event" -msgstr "" +msgstr "een onbekend evenement" -#, php-format -msgid "%1s is attending %2s." -msgstr "" +#, fuzzy, php-format +msgid "%1$s is attending %2$s." +msgstr "%1s is aanwezig bij %2s." -#, php-format -msgid "%1s is not attending %2s." -msgstr "" +#, fuzzy, php-format +msgid "%1$s is not attending %2$s." +msgstr "%1s is niet aanwezig bij %2s." -#, php-format -msgid "%1s might attend %2s.>" -msgstr "" +#, fuzzy, php-format +msgid "%1$s might attend %2$s." +msgstr "%1s is misschien aanwezig bij %2s.>" msgid "New event" -msgstr "" +msgstr "Nieuw evenement" msgid "Must be logged in to post a event." -msgstr "" +msgstr "U moet aangemeld zijn om een evenement te kunnen plaatsen." msgid "Title required." -msgstr "" +msgstr "Naam is verplicht." msgid "Start date required." -msgstr "" +msgstr "De begindatum is vereist." msgid "End date required." -msgstr "" +msgstr "De einddatum is vereist." -#, php-format -msgid "Could not parse date \"%s\"" -msgstr "" +#, fuzzy, php-format +msgid "Could not parse date \"%s\"." +msgstr "Het was niet mogelijk de datum \"%s\" te verwerken." msgid "Event must have a title." -msgstr "" +msgstr "Een evenement moet een naam hebben." msgid "Event must have a start time." -msgstr "" +msgstr "Een evenement moet een begintijd hebben." msgid "Event must have an end time." -msgstr "" +msgstr "Een evenement moet een eindtijd hebben." + +#~ msgid "No such Event." +#~ msgstr "Dat evenement bestaat niet." diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index 1d6d7983f3..919198cad7 100644 --- a/plugins/ExtendedProfile/locale/ExtendedProfile.pot +++ b/plugins/ExtendedProfile/locale/ExtendedProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index 41313b6cc2..d89f96c029 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:55+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -113,9 +113,8 @@ msgctxt "BUTTON" msgid "Save" msgstr "" -#, fuzzy msgid "Save details" -msgstr "Muoic'h a vunudoù..." +msgstr "" msgid "Phone" msgstr "Pellgomz" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index 743c9a641a..3b721112d0 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -115,9 +115,8 @@ msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" -#, fuzzy msgid "Save details" -msgstr "Plus detalios..." +msgstr "" msgid "Phone" msgstr "Telephono" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index 2640786492..796bb73ab9 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -115,9 +115,8 @@ msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" -#, fuzzy msgid "Save details" -msgstr "Поподробно..." +msgstr "" msgid "Phone" msgstr "Телефон" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index 14dcd6af8c..82a8424148 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -117,9 +117,8 @@ msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" -#, fuzzy msgid "Save details" -msgstr "Meer details..." +msgstr "" msgid "Phone" msgstr "Telefoonnummer" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index 7f2475ad53..f830dd246f 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:56+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -113,9 +113,8 @@ msgctxt "BUTTON" msgid "Save" msgstr "" -#, fuzzy msgid "Save details" -msgstr "Mer detaljer..." +msgstr "" msgid "Phone" msgstr "Telefon" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index ccec7aa0a0..283ba57750 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:56+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -116,9 +116,8 @@ msgctxt "BUTTON" msgid "Save" msgstr "Sagipin" -#, fuzzy msgid "Save details" -msgstr "Marami pang mga detalye..." +msgstr "" msgid "Phone" msgstr "Telepono" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index eb9bc25ed5..72e2ff5a9d 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:56+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:23:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -116,9 +116,8 @@ msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" -#, fuzzy msgid "Save details" -msgstr "Детальніше..." +msgstr "" msgid "Phone" msgstr "Телефон" diff --git a/plugins/FacebookBridge/locale/FacebookBridge.pot b/plugins/FacebookBridge/locale/FacebookBridge.pot index 4e47e3f487..45351b4b91 100644 --- a/plugins/FacebookBridge/locale/FacebookBridge.pot +++ b/plugins/FacebookBridge/locale/FacebookBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -39,11 +39,11 @@ msgid "Facebook integration settings" msgstr "" #: actions/facebookadminpanel.php:123 -msgid "Invalid Facebook ID. Max length is 255 characters." +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "" #: actions/facebookadminpanel.php:129 -msgid "Invalid Facebook secret. Max length is 255 characters." +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "" #: actions/facebookadminpanel.php:178 @@ -55,7 +55,7 @@ msgid "Application ID" msgstr "" #: actions/facebookadminpanel.php:185 -msgid "ID of your Facebook application" +msgid "ID of your Facebook application." msgstr "" #: actions/facebookadminpanel.php:193 @@ -63,15 +63,17 @@ msgid "Secret" msgstr "" #: actions/facebookadminpanel.php:194 -msgid "Application secret" +msgid "Application secret." msgstr "" -#: actions/facebookadminpanel.php:210 +#. TRANS: Submit button to save synchronisation settings. +#: actions/facebookadminpanel.php:210 actions/facebooksettings.php:183 +msgctxt "BUTTON" msgid "Save" msgstr "" #: actions/facebookadminpanel.php:210 -msgid "Save Facebook settings" +msgid "Save Facebook settings." msgstr "" #: actions/facebooksettings.php:86 actions/facebookfinishlogin.php:141 @@ -97,12 +99,6 @@ msgstr "" msgid "Send \"@\" replies to Facebook." msgstr "" -#. TRANS: Submit button to save synchronisation settings. -#: actions/facebooksettings.php:183 -msgctxt "BUTTON" -msgid "Save" -msgstr "" - #. TRANS: Legend. #: actions/facebooksettings.php:192 msgid "Disconnect my account from Facebook" @@ -138,7 +134,7 @@ msgid "Sync preferences saved." msgstr "" #: actions/facebooksettings.php:260 -msgid "Couldn't delete link to Facebook." +msgid "Could not delete link to Facebook." msgstr "" #: actions/facebooksettings.php:264 @@ -155,7 +151,7 @@ msgid "There is already a local account linked with that Facebook account." msgstr "" #: actions/facebookfinishlogin.php:150 -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" #: actions/facebookfinishlogin.php:167 @@ -165,7 +161,7 @@ msgstr "" #: actions/facebookfinishlogin.php:185 #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -203,7 +199,7 @@ msgid "New nickname" msgstr "" #: actions/facebookfinishlogin.php:268 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Submit button. diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index 7b9f6f9f29..a81f78fe58 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -40,10 +40,10 @@ msgstr "" msgid "Facebook integration settings" msgstr "" -msgid "Invalid Facebook ID. Max length is 255 characters." +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "" -msgid "Invalid Facebook secret. Max length is 255 characters." +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "" msgid "Facebook application settings" @@ -52,19 +52,22 @@ msgstr "" msgid "Application ID" msgstr "" -msgid "ID of your Facebook application" +msgid "ID of your Facebook application." msgstr "" msgid "Secret" msgstr "" -msgid "Application secret" +msgid "Application secret." msgstr "" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "احفظ" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "احفظ إعدادات فيسبك" msgid "There was a problem with your session token. Try again, please." @@ -84,11 +87,6 @@ msgstr "انشر إشعاراتي على فيسبك." msgid "Send \"@\" replies to Facebook." msgstr "أرسل الردود \"@\" إلى فيسبك." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "احفظ" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "اقطع اتصال حسابي بفيسبك." @@ -120,7 +118,8 @@ msgstr "" msgid "Sync preferences saved." msgstr "حُفظت تفضيلات المزامنة." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "تعذر حذف وصلة فيسبك." msgid "You have disconnected from Facebook." @@ -133,7 +132,7 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "" -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" msgid "An unknown error has occured." @@ -141,7 +140,7 @@ msgstr "" #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -174,7 +173,7 @@ msgstr "" msgid "New nickname" msgstr "الاسم المستعار الجديد" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Submit button. @@ -246,3 +245,6 @@ msgstr "" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "" + +#~ msgid "Save" +#~ msgstr "احفظ" diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 95cc73febe..6f1750c5b1 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,10 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Arventennoù enframmañ Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "" -msgid "Invalid Facebook secret. Max length is 255 characters." +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "" msgid "Facebook application settings" @@ -50,19 +50,24 @@ msgstr "Arventennoù poellad Facebook" msgid "Application ID" msgstr "ID ar poellad" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "ID ho poellad Facebook" msgid "Secret" msgstr "Kuzh" -msgid "Application secret" -msgstr "" +#, fuzzy +msgid "Application secret." +msgstr "ID ar poellad" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Enrollañ arventennoù Facebook" msgid "There was a problem with your session token. Try again, please." @@ -82,11 +87,6 @@ msgstr "" msgid "Send \"@\" replies to Facebook." msgstr "Kas respontoù \"@\" da Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Enrollañ" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Digevreañ ma c'hont deus Facebook" @@ -115,7 +115,8 @@ msgstr "" msgid "Sync preferences saved." msgstr "" -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "N'eus ket bet gallet diverkañ al liamm war-du Facebook." msgid "You have disconnected from Facebook." @@ -128,7 +129,8 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Un implijer lec'hel liammet d'ar gont Facebook-se a zo dija." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "" "Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " "gont." @@ -138,7 +140,7 @@ msgstr "Ur gudenn dizanv a zo bet." #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -169,7 +171,8 @@ msgstr "Krouiñ un implijer nevez gant al lesanv-se." msgid "New nickname" msgstr "Lesanv nevez" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" #. TRANS: Submit button. @@ -241,3 +244,6 @@ msgstr "" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "" + +#~ msgid "Save" +#~ msgstr "Enrollañ" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index dc98f6399f..6b810116ec 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,12 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Paràmetres d'integració del Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "L'ID del Facebook no és vàlid. La longitud màxima són 255 caràcters." -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "" "La clau secreta del Facebook no és vàlida. La longitud màxima són 255 " "caràcters." @@ -52,19 +54,24 @@ msgstr "Paràmetres d'aplicació del Facebook" msgid "Application ID" msgstr "ID de l'aplicació" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "ID de la vostra aplicació de Facebook" msgid "Secret" msgstr "Clau secreta" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "Clau secreta de l'aplicació" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Desa" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Desa els paràmetres del Facebook" msgid "There was a problem with your session token. Try again, please." @@ -84,11 +91,6 @@ msgstr "Publica els meus avisos al Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Envia respostes amb «@» al Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Desa" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Desconnecta el meu compte del Facebook" @@ -121,7 +123,8 @@ msgstr "S'ha produït un problema en desar les preferències de sincronització. msgid "Sync preferences saved." msgstr "S'han desat les preferències de sincronització." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "No s'ha pogut eliminar l'enllaç al Facebook." msgid "You have disconnected from Facebook." @@ -136,15 +139,16 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Ja hi ha un compte local enllaçat amb aquest compte del Facebook." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "No podeu registrar-vos-hi si no accepteu la llicència." msgid "An unknown error has occured." msgstr "S'ha produït un error desconegut." -#, php-format +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -181,7 +185,8 @@ msgstr "Crea un usuari nou amb aquest sobrenom" msgid "New nickname" msgstr "Nou sobrenom" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 lletres en minúscules o nombres, sense puntuacions o espais" #. TRANS: Submit button. @@ -255,3 +260,6 @@ msgstr "S'ha eliminat la connexió amb el Facebook" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Contacteu amb l'administrador de %s per recuperar el vostre compte" + +#~ msgid "Save" +#~ msgstr "Desa" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index 1e2c728124..ebea702470 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,12 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Einstellungen der Facebook-Integration" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "Ungültige Facebook-ID. Die maximale Länge beträgt 255 Zeichen." -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Ungültiges Facebook-Geheimnis. Die maximale Länge beträgt 255 Zeichen." msgid "Facebook application settings" @@ -50,19 +52,24 @@ msgstr "Einstellungen der Facebook-Anwendung" msgid "Application ID" msgstr "Anwendungs-ID" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "ID ihrer Facebook-Anwendung" msgid "Secret" msgstr "Geheimnis" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "Anwendungs-Geheimnis" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Speichern" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Facebook-Einstellungen speichern" msgid "There was a problem with your session token. Try again, please." @@ -82,11 +89,6 @@ msgstr "Meine Nachrichten auf Facebook veröffentlichen." msgid "Send \"@\" replies to Facebook." msgstr "\"@\"-Antworten zu Facebook senden." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Speichern" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Mein Konto von Facebook trennen" @@ -121,7 +123,8 @@ msgstr "" msgid "Sync preferences saved." msgstr "Synchronisations-Einstellungen gespeichert." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "Konnte die Verbindung zu Facebook nicht löschen." msgid "You have disconnected from Facebook." @@ -138,16 +141,17 @@ msgstr "" "Es gibt bereits ein lokales Konto, das mit diesem Facebook-Konto verbunden " "ist." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "" "Du kannst dich nicht registrieren, falls du die Lizenz nicht akzeptierst." msgid "An unknown error has occured." msgstr "Ein unbekannter Fehler ist aufgetreten." -#, php-format +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -183,7 +187,8 @@ msgstr "Einen neuen Benutzer mit diesem Spitznamen erstellen." msgid "New nickname" msgstr "Neuer Spitzname" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1–64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen" #. TRANS: Submit button. @@ -257,3 +262,6 @@ msgstr "Ihre Facebook-Verbindung wurde entfernt" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Kontaktiere den %s-Administrator um dein Konto zurück zu bekommen" + +#~ msgid "Save" +#~ msgstr "Speichern" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index 3aaf22a604..f4fd82dabe 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,12 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Configurationes de integration de Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "ID de Facebook invalide. Longitude maximal es 255 characteres." -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Secreto de Facebook invalide. Longitude maximal es 255 characteres." msgid "Facebook application settings" @@ -50,19 +52,24 @@ msgstr "Configurationes del application de Facebook" msgid "Application ID" msgstr "ID de application" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "Le ID de tu application Facebook" msgid "Secret" msgstr "Secreto" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "Secreto de application" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Salveguardar configuration Facebook" msgid "There was a problem with your session token. Try again, please." @@ -82,11 +89,6 @@ msgstr "Publicar mi notas in Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Inviar responsas \"@\" a Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Salveguardar" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Disconnecter mi conto ab Facebook" @@ -121,7 +123,8 @@ msgstr "" msgid "Sync preferences saved." msgstr "Preferentias de synchronisation salveguardate." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "Non poteva deler le ligamine a Facebook." msgid "You have disconnected from Facebook." @@ -136,15 +139,16 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Il ha jam un conto local ligate a iste conto de Facebook." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." msgid "An unknown error has occured." msgstr "Un error incognite ha occurrite." -#, php-format +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -181,7 +185,8 @@ msgstr "Crear un nove usator con iste pseudonymo." msgid "New nickname" msgstr "Nove pseudonymo" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusculas o numeros, sin punctuation o spatios" #. TRANS: Submit button. @@ -255,3 +260,6 @@ msgstr "Tu connexion a Facebook ha essite removite" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Contacta le administrator de %s pro recuperar tu conto" + +#~ msgid "Save" +#~ msgstr "Salveguardar" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index 6f41583b61..9818483fb1 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,12 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Поставки за обединување со Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "Неважечка назнака (ID) за Facebook. Дозволени се највеќе 255 знаци." -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Неважечка тајна за Facebook. Дозволени се највеќе 255 знаци." msgid "Facebook application settings" @@ -50,19 +52,24 @@ msgstr "Поставки за програм за Facebook" msgid "Application ID" msgstr "Назнака (ID) на програмот" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "Назнака (ID) на Вашиот програм за Facebook" msgid "Secret" msgstr "Тајна" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "Тајна за програмот" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Зачувај поставки за Facebook" msgid "There was a problem with your session token. Try again, please." @@ -82,11 +89,6 @@ msgstr "Објавувај ми ги забелешките на Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Испраќај „@“-одговори на Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Зачувај" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Исклучи ми ја сметката од Facebook" @@ -119,7 +121,8 @@ msgstr "Се појави проблем при зачувувањето на н msgid "Sync preferences saved." msgstr "Нагодувањата за усогласување се зачувани." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "Не можев да ја избришам врската со Facebook." msgid "You have disconnected from Facebook." @@ -134,15 +137,16 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Веќе постои локална сметка поврзана со тааа сметка на Facebook." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." msgid "An unknown error has occured." msgstr "Се појави непозната грешка." -#, php-format +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -178,7 +182,8 @@ msgstr "Создај нов корисник со овој прекар." msgid "New nickname" msgstr "Нов прекар" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 мали букви и бројки, без интерпункциски знаци и празни места" #. TRANS: Submit button. @@ -252,3 +257,6 @@ msgstr "Вашата врска со Facebook е отстранета" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Контактирајте го администраторот на %s за да си ја повртатите сметката" + +#~ msgid "Save" +#~ msgstr "Зачувај" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index 6ac5288a70..7c1873487a 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,10 +38,12 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Instellingen voor Facebookkoppeling" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "Ongeldig Facebook-ID. De maximale lengte is 255 tekens." -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Ongeldig Facebookgeheim. De maximale lengte is 255 tekens." msgid "Facebook application settings" @@ -50,19 +52,24 @@ msgstr "Applicatieinstellingen voor Facebook" msgid "Application ID" msgstr "Applicatie-ID" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "ID van uw Facebookapplicatie" msgid "Secret" msgstr "Geheim" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "Applicatiegeheim" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Facebookinstellingen opslaan" msgid "There was a problem with your session token. Try again, please." @@ -84,11 +91,6 @@ msgstr "Mijn mededelingen publiceren op Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Antwoorden met \"@\" naar Facebook verzenden." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Opslaan" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Mijn gebruiker loskoppelen van Facebook" @@ -123,7 +125,8 @@ msgstr "" msgid "Sync preferences saved." msgstr "Uw synchronisatievoorkeuren zijn opgeslagen." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "Het was niet mogelijk de verwijzing naar Facebook te verwijderen." msgid "You have disconnected from Facebook." @@ -138,15 +141,16 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Er is al een lokale gebruiker verbonden met deze Facebookgebruiker." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." msgid "An unknown error has occured." msgstr "Er is een onbekende fout opgetreden." -#, php-format +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -182,7 +186,8 @@ msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." msgid "New nickname" msgstr "Nieuwe gebruikersnaam" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" #. TRANS: Submit button. @@ -259,3 +264,6 @@ msgid "Contact the %s administrator to retrieve your account" msgstr "" "Neem contact op met de beheerder van %s om uw gebruikersgegevens te " "verkrijgen" + +#~ msgid "Save" +#~ msgstr "Opslaan" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index 502e0e360d..d090143654 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -39,11 +39,13 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Налаштування інтеграції з Facebook" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "" "Неприпустимий ідентифікатор Facebook. Максимальна довжина — 255 символів." -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Помилковий секретний код Facebook. Максимальна довжина — 255 символів." msgid "Facebook application settings" @@ -52,19 +54,24 @@ msgstr "Налаштування додатку для Facebook" msgid "Application ID" msgstr "Ідентифікатор додатку" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "Ідентифікатор вашого додатку Facebook" msgid "Secret" msgstr "Секретний код" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "Секретний код додатку" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "Зберегти налаштування Facebook" msgid "There was a problem with your session token. Try again, please." @@ -84,11 +91,6 @@ msgstr "Публікувати мої дописи у Facebook." msgid "Send \"@\" replies to Facebook." msgstr "Надсилати «@» відповіді до Facebook." -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "Зберегти" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "Від’єднати мій акаунт від Facebook" @@ -121,7 +123,8 @@ msgstr "Виникла проблема при збереженні параме msgid "Sync preferences saved." msgstr "Параметри синхронізації збережено." -msgid "Couldn't delete link to Facebook." +#, fuzzy +msgid "Could not delete link to Facebook." msgstr "Не можу видалити посилання на Facebook." msgid "You have disconnected from Facebook." @@ -136,15 +139,16 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Один з тутешніх акаунтів вже прив’язаний до цього профілю у Facebook." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." msgid "An unknown error has occured." msgstr "Сталася невідома помилка." -#, php-format +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -180,7 +184,8 @@ msgstr "Створити нового користувача з цим нікн msgid "New nickname" msgstr "Новий псевдонім" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" @@ -255,3 +260,6 @@ msgstr "З’єднання з Facebook було видалено" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Зверніться до адміністратора %s, аби відновити свій обліковий запис" + +#~ msgid "Save" +#~ msgstr "Зберегти" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index dd0f67a61d..9467cb2991 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -39,10 +39,12 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Facebook 集成设置" -msgid "Invalid Facebook ID. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "无效的 Facebook ID。最大长度为 255 个字符。" -msgid "Invalid Facebook secret. Max length is 255 characters." +#, fuzzy +msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "无效的 Facebook 秘密。最大长度为 255 个字符。" msgid "Facebook application settings" @@ -51,19 +53,24 @@ msgstr "Facebook 应用程序设置" msgid "Application ID" msgstr "应用程序 ID" -msgid "ID of your Facebook application" +#, fuzzy +msgid "ID of your Facebook application." msgstr "Facebook 应用程序的 ID" msgid "Secret" msgstr "秘密" -msgid "Application secret" +#, fuzzy +msgid "Application secret." msgstr "应用程序的秘密" +#. TRANS: Submit button to save synchronisation settings. +msgctxt "BUTTON" msgid "Save" msgstr "保存" -msgid "Save Facebook settings" +#, fuzzy +msgid "Save Facebook settings." msgstr "保存的 Facebook 设置" msgid "There was a problem with your session token. Try again, please." @@ -83,11 +90,6 @@ msgstr "将我的通知发布到 Facebook。" msgid "Send \"@\" replies to Facebook." msgstr "发送 \"@\" Facebook 的答复。" -#. TRANS: Submit button to save synchronisation settings. -msgctxt "BUTTON" -msgid "Save" -msgstr "保存" - #. TRANS: Legend. msgid "Disconnect my account from Facebook" msgstr "从 Facebook 拔下我的账户" @@ -116,8 +118,9 @@ msgstr "" msgid "Sync preferences saved." msgstr "" -msgid "Couldn't delete link to Facebook." -msgstr "" +#, fuzzy +msgid "Could not delete link to Facebook." +msgstr "将我的通知发布到 Facebook。" msgid "You have disconnected from Facebook." msgstr "" @@ -129,7 +132,8 @@ msgstr "您必须登录到 Facebook 注册使用 Facebook 的本地帐户。" msgid "There is already a local account linked with that Facebook account." msgstr "已存在与该 Facebook 帐户相关的本地帐户。" -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "如果您不同意该许可,您不能注册。" msgid "An unknown error has occured." @@ -137,7 +141,7 @@ msgstr "出现了一个未知的错误。" #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your " +"This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" @@ -168,7 +172,8 @@ msgstr "此别名与创建新用户。" msgid "New nickname" msgstr "新的昵称" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 个小写字母或没有标点符号或空格的数字" #. TRANS: Submit button. @@ -240,3 +245,6 @@ msgstr "Facebook 的连接已被删除" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "与 %s 管理员联系,以检索您的帐户" + +#~ msgid "Save" +#~ msgstr "保存" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index b00eb92357..cfaca16805 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index b85141661a..42a67cf02c 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index 880e29e2c7..9826a9eaee 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index 5ed06cdf17..54699701e6 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index 7e04dcc25d..f0dbf27926 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index 6370ffa102..b5b734aa54 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index b26c677956..334ef14a25 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index 810fde0e73..9db97b91a8 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index e268ebdb51..684429ee12 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index 37462594d2..a7609ca951 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 51e95d7d1a..1ce6b94636 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index 407ed6bdd6..922ed76dc8 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index 51a2d13de6..65010a89ee 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index 813b9c2039..8d916adda8 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index 0376176c27..e446572b69 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index 03ce601ab6..74f472b176 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index e0e0fa9539..cf99e3fa21 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FollowEveryone/locale/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot index a046bf9267..ddc0760fbf 100644 --- a/plugins/FollowEveryone/locale/FollowEveryone.pot +++ b/plugins/FollowEveryone/locale/FollowEveryone.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index b55eff2c9d..1f43184283 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index 06973d0082..22dbb906d4 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index a339a3a443..844a79713c 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index 75e4df1193..3058137788 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index 592c95fb07..9754d7b81b 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index 8981547f90..d6b9d39ea9 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Checkbox label in form for profile settings. msgid "Follow everyone" -msgstr "" +msgstr "Iedereen volgen" msgid "New users follow everyone at registration and are followed in return." msgstr "" diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index 14aecb98d3..0600a971f9 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index 494003e022..b17c04ab6c 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index e198cb1a6c..4b38e4b15a 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index 07f9b1201d..5269316f2a 100644 --- a/plugins/ForceGroup/locale/ForceGroup.pot +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po index 99be3a7e7f..6b025fb245 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index 4479ffb31b..d28f5d2a12 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 40c4a9a301..7be70a950c 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index 74c4470b41..29590c6754 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index c6d37a882c..22037f61e2 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index b2508782c6..cac52d2077 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 8da50c96ad..06b61e6f57 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index 673817a310..50950ae40a 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index 7471b03b14..06a38690f7 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index 3b356107e8..a1bbd1917c 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index 31509ff058..4a1307a145 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index 69f9234ed8..cc103cee1b 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index 5475096b6b..1ae54ecfb2 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index c62b2d6669..2e06c1c0d5 100644 --- a/plugins/GeoURL/locale/GeoURL.pot +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po index 3f39795ac9..3d39a19f34 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index 52dfc7c4e9..b4336b29ae 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index 8c2b410cf7..0f3713d057 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index 80dbca15e1..f7d2b58cdb 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index 562164d9cd..fc73cf073d 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 191047847d..a18b956596 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index 18886e1936..1e0ca4b8d7 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index f29806616a..3a08e71ff2 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index 575015fde8..06fcbc6dc9 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 901af003a7..837b6bbc1e 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index cace04e041..b9de6015c9 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index 788d83f8f4..11417b53be 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index 6d1d3f57c0..e0266e9e97 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index 262dbbe76f..3f0cb3c4e9 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index 5a974748b1..272df915ec 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index f7e576ce7d..c57c15681f 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index 7e4abac9af..588e8c7fdb 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index cbdd0e0769..f6b6c874d7 100644 --- a/plugins/Geonames/locale/Geonames.pot +++ b/plugins/Geonames/locale/Geonames.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po index 0a706529c2..04ed64d630 100644 --- a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po index 1077e55af6..7d6b146bae 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index d86efa6a84..819ed600ed 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po index 80835f9cbd..77f48224e6 100644 --- a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po index 97c844e72c..cf769efc51 100644 --- a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 780154ab07..7c88a1d976 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index 7ab382a52f..881c5a0e89 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po index 10119631ee..d642893824 100644 --- a/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index 5be5efaee7..11235c3f38 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po index 298e62cb21..979df9a3c0 100644 --- a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index f6aeeea7a8..827daec594 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po index da0abb7ffc..286705503c 100644 --- a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index 190f8196ef..9f54825bdf 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po index b7781c2fe6..432ed8a0db 100644 --- a/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po index de3398efe7..fa17b98d16 100644 --- a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po index 5acff5e9e8..cd795ca73b 100644 --- a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 0d25b79b39..3642078234 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index 26bc7f78e5..368d90f12f 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po index 285fd82a99..281d7eb288 100644 --- a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index 6beb2bf187..49f994b6cf 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po index 1fa2e242fb..87f4439b86 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index b6d36e5377..d78a9131b3 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index 89141f30ba..2ddb115582 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index f1f8c665be..bc5dedb570 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index 75765744d2..8eb360b492 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 49fb663a10..9bafa429da 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index 5bb0df6ca2..68053cc076 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 39d52668a9..34f0229707 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index e27638fc51..00aad66d5c 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index c79ee7893c..d41c08f1de 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index 30613b449e..f516317b86 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index 1b965e182f..cbb72956f6 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index 99009f463e..f40df05776 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index 63ff8c409b..13c95a66d2 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index 4608e20b0a..45135daf9f 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index 8704c89a97..b47bf7bb0e 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index 4fdec76327..1409dbbe68 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index 4cbb350f85..86957de6fd 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po index b31fc53035..78573dcd8f 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:07+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index 3899ec6f64..6eed044028 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index 4e4be4a0a8..4916e09205 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:07+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index 657abce7ff..b181d03599 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index ae31ac57ea..e223c08867 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:28+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 9babd0f7d5..7ad80962e1 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index 06b52887c6..c647c8c528 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 707286856d..24ab551a00 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index 2250de1e60..ce0b6fd9e2 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 66ae4ab42c..1d4515a793 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index 231dd38002..e14429839b 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index e706822e66..3b6f7e4b9a 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index 0ea262e2c6..45ce9c1e30 100644 --- a/plugins/GroupFavorited/locale/GroupFavorited.pot +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index c97a7c600f..941e3c3c00 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index ffb5ae88ac..f13c852aa5 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index 46327d74f0..05cc9f8799 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index 235e179729..963eb5cb0f 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 7db0bb1846..1d357926bf 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index 0fdcbdd820..72fb781d26 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index 3cc20b3829..bd6add8131 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index f388c0e0c9..9dd4bcaf1a 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index ed93e6722b..1e3c98f42d 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index 9ef1628301..8f19a632f8 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index 0e6641ce30..1d65732012 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index 1b899b9eca..9c39cc5b8c 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot index 4998d4ab0f..3026297d4f 100644 --- a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot +++ b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,9 +21,9 @@ msgstr "" msgid "Must be logged in." msgstr "" -#: newgroupmessage.php:73 +#: newgroupmessage.php:73 Group_message.php:126 #, php-format -msgid "User %s not allowed to send private messages." +msgid "User %s is not allowed to send private messages." msgstr "" #: newgroupmessage.php:90 newgroupmessage.php:96 groupinbox.php:82 @@ -46,7 +46,7 @@ msgid "New message to group %s" msgstr "" #. TRANS: Subject for direct-message notification email. -#. TRANS: %s is the sending user's nickname. +#. TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. #: Group_message_profile.php:159 #, php-format msgid "New private message from %1$s to group %2$s" @@ -76,11 +76,12 @@ msgid "" msgstr "" #: GroupPrivateMessagePlugin.php:210 +msgctxt "MENU" msgid "Inbox" msgstr "" #: GroupPrivateMessagePlugin.php:211 -msgid "Private messages for this group" +msgid "Private messages for this group." msgstr "" #: GroupPrivateMessagePlugin.php:258 @@ -100,11 +101,11 @@ msgid "Never" msgstr "" #: GroupPrivateMessagePlugin.php:262 -msgid "Whether to allow private messages to this group" +msgid "Whether to allow private messages to this group." msgstr "" #: GroupPrivateMessagePlugin.php:268 -msgid "Private sender" +msgid "Private senders" msgstr "" #: GroupPrivateMessagePlugin.php:269 @@ -120,11 +121,11 @@ msgid "Admin" msgstr "" #: GroupPrivateMessagePlugin.php:272 -msgid "Who can send private messages to the group" +msgid "Who can send private messages to the group." msgstr "" #: GroupPrivateMessagePlugin.php:373 -msgid "Send a direct message to this group" +msgid "Send a direct message to this group." msgstr "" #: GroupPrivateMessagePlugin.php:374 @@ -140,7 +141,7 @@ msgid "Private" msgstr "" #: GroupPrivateMessagePlugin.php:504 -msgid "Allow posting DMs to a group." +msgid "Allow posting private messages to groups." msgstr "" #: groupinbox.php:66 @@ -218,11 +219,6 @@ msgstr "" msgid "Unknown privacy settings for group %s." msgstr "" -#: Group_message.php:126 -#, php-format -msgid "User %s is not allowed to send private messages." -msgstr "" - #: Group_message.php:137 #, php-format msgid "That's too long. Maximum message size is %d character." @@ -231,11 +227,11 @@ msgstr[0] "" msgstr[1] "" #: Group_message.php:180 -msgid "No group for group message" +msgid "No group for group message." msgstr "" #: Group_message.php:189 -msgid "No sender for group message" +msgid "No sender for group message." msgstr "" #: showgroupmessage.php:70 diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index 26d9e8aa5c..151b6861b8 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Siebrand +# Author: TBloemink # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,44 +10,44 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Must be logged in." -msgstr "" +msgstr "U moet aangemeld zijn." -#, fuzzy, php-format -msgid "User %s not allowed to send private messages." -msgstr "Deze groep heeft geen privéberichten ontvangen." +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "Gebruiker %s mag geen privéberichten verzenden." msgid "No such group." -msgstr "" +msgstr "Geen dergelijke groep." msgid "Message sent" -msgstr "" +msgstr "Bericht verzonden" #, php-format msgid "Direct message to %s sent." -msgstr "" +msgstr "Direct bericht naar %s verzonden." -#, fuzzy, php-format +#, php-format msgid "New message to group %s" -msgstr "Privéberichten voor deze groep" +msgstr "Nieuw bericht voor de groep %s" #. TRANS: Subject for direct-message notification email. -#. TRANS: %s is the sending user's nickname. -#, fuzzy, php-format +#. TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. +#, php-format msgid "New private message from %1$s to group %2$s" -msgstr "Privéberichten voor deze groep" +msgstr "Nieuwe privéberichten van %1$s voor de groep %2$s" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, @@ -69,80 +70,98 @@ msgid "" "With kind regards,\n" "%6$s" msgstr "" +"%1$s (%2$s) heeft een privébericht gezonden aan de groep %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"U kunt hier op het bericht antwoorden:\n" +"\n" +"%5$s\n" +"\n" +"Antwoord niet op deze e-mail. Dit komt niet aan.\n" +"\n" +"Met vriendelijke groet,\n" +"%6$s" +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Postvak IN" -msgid "Private messages for this group" +#, fuzzy +msgid "Private messages for this group." msgstr "Privéberichten voor deze groep" -#, fuzzy msgid "Private messages" -msgstr "Privéberichten voor deze groep" +msgstr "Privéberichten" msgid "Sometimes" -msgstr "" +msgstr "Soms" msgid "Always" -msgstr "" +msgstr "Altijd" msgid "Never" -msgstr "" +msgstr "Nooit" #, fuzzy -msgid "Whether to allow private messages to this group" -msgstr "Privéberichten voor deze groep" +msgid "Whether to allow private messages to this group." +msgstr "Of privéberichten voor deze groep zijn toegestaan" -msgid "Private sender" -msgstr "" +#, fuzzy +msgid "Private senders" +msgstr "Gebruikers die privéberichten mogen verzenden" msgid "Everyone" -msgstr "" +msgstr "Iedereen" msgid "Member" -msgstr "" +msgstr "Lid" msgid "Admin" -msgstr "" +msgstr "Admin" #, fuzzy -msgid "Who can send private messages to the group" -msgstr "Privéberichten voor deze groep" +msgid "Who can send private messages to the group." +msgstr "Wie kan privéberichten verzenden aan de groep." #, fuzzy -msgid "Send a direct message to this group" -msgstr "Privéberichten voor deze groep" +msgid "Send a direct message to this group." +msgstr "Privéberichten naar deze groep verzenden" msgid "Message" -msgstr "" +msgstr "Bericht" msgid "Forced notice to private group message." -msgstr "" +msgstr "Van mededelingen in deze groep privéberichten aan de groep maken." msgid "Private" -msgstr "" +msgstr "Privé" -msgid "Allow posting DMs to a group." -msgstr "Verzenden van Directe berichten naar een groep toestaan." +#, fuzzy +msgid "Allow posting private messages to groups." +msgstr "Wie kan privéberichten verzenden aan de groep." msgid "Only for logged-in users." -msgstr "" +msgstr "Alleen voor ingelogde gebruikers." msgid "Only for members." -msgstr "" +msgstr "Alleen voor leden." msgid "This group has not received any private messages." msgstr "Deze groep heeft geen privéberichten ontvangen." #, php-format msgid "%s group inbox" -msgstr "" +msgstr "%s groep inbox" #. TRANS: Page title for any but first group page. #. TRANS: %1$s is a group name, $2$s is a page number. #, php-format msgid "%1$s group inbox, page %2$d" -msgstr "" +msgstr "%1$s groep inbox, pagina %2$d" #. TRANS: Instructions for user inbox page. msgid "" @@ -154,42 +173,38 @@ msgstr "" #, php-format msgid "Message to %s" -msgstr "" +msgstr "Bericht aan %s" #, php-format msgid "Direct message to %s" -msgstr "" +msgstr "Direct bericht aan %s" msgid "Available characters" -msgstr "" +msgstr "Beschikbare tekens" msgctxt "Send button for sending notice" msgid "Send" msgstr "Verzenden" -#, fuzzy, php-format +#, php-format msgid "Group %s does not allow private messages." -msgstr "Deze groep heeft geen privéberichten ontvangen." +msgstr "De groep %s staat geen privéberichten toe." #, php-format msgid "User %1$s is blocked from group %2$s." -msgstr "" +msgstr "Gebruiker %1$s is verbannen uit groep %2$s." #, php-format msgid "User %1$s is not a member of group %2$s." -msgstr "" +msgstr "Gebruiker %1$s is geen lid van groep %2$s ." #, php-format msgid "User %1$s is not an administrator of group %2$s." -msgstr "" +msgstr "Gebruiker %1$s is geen beheerder van groep %2$s ." #, php-format msgid "Unknown privacy settings for group %s." -msgstr "" - -#, fuzzy, php-format -msgid "User %s is not allowed to send private messages." -msgstr "Deze groep heeft geen privéberichten ontvangen." +msgstr "Onbekende privacyinstellingen voor de groep %s." #, php-format msgid "That's too long. Maximum message size is %d character." @@ -197,31 +212,39 @@ msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "Dat is te lang. De maximale berichtlengte is %d teken." msgstr[1] "Dat is te lang. De maximale berichtlengte is %d tekens." -msgid "No group for group message" -msgstr "" +#, fuzzy +msgid "No group for group message." +msgstr "Er is geen groep voor het groepsbericht." -msgid "No sender for group message" -msgstr "" +#, fuzzy +msgid "No sender for group message." +msgstr "Er is geen afzender voor het groepsbericht." msgid "Only logged-in users can view private messages." -msgstr "" +msgstr "Alleen aangemelde gebruikers kunnen privéberichten zien." msgid "No such message." -msgstr "" +msgstr "Dat bericht bestaat niet." msgid "Group not found." -msgstr "" +msgstr "De groep is niet aangetroffen." msgid "Cannot read message." -msgstr "" +msgstr "Kan het bericht niet lezen." msgid "No sender found." -msgstr "" +msgstr "Geen afzender gevonden." #, php-format msgid "Message from %1$s to group %2$s on %3$s" -msgstr "" +msgstr "Bericht van %1$s aan groep %2$s op %3$s" #, php-format msgid "Direct message to group %s sent." -msgstr "" +msgstr "Privébericht aan groep %s verzonden." + +#~ msgid "User %s not allowed to send private messages." +#~ msgstr "De gebruiker %s mag geen privéberichten verzenden." + +#~ msgid "Allow posting DMs to a group." +#~ msgstr "Verzenden van Directe berichten naar een groep toestaan." diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 674450808c..4c0609b3c7 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po index 10fb984291..68e4aac104 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index c89ad508f3..29dc024870 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 22a9654604..fb34fda792 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index dd138566a1..262c34523f 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index e5fd44fc27..05e1e981da 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index e5eb3c3ef4..3bfef13f48 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index a8d1c8f3e2..498144d7ca 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index c59c56bf65..e5e7f02791 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index 93c2d76462..19688cdf66 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index 12b12ba030..83bfb11857 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index b564d7840d..c62e0919ae 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/InProcessCache/locale/InProcessCache.pot b/plugins/InProcessCache/locale/InProcessCache.pot index e87cd292eb..dbb3a5e5f0 100644 --- a/plugins/InProcessCache/locale/InProcessCache.pot +++ b/plugins/InProcessCache/locale/InProcessCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po index 9690784b68..36c6908bf2 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index 015827c349..63bff9a882 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index 367ec3d06b..0251f542a6 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index 609913d9e5..1fe04f9fad 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index 4f67299459..02e0a0c61d 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index 7fe257a81e..034cd6bde7 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index 57f07d71ec..3ce956dc10 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index cd04e91783..07afed865f 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index b36a0cf2ca..35f4f486dc 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index ef880b070c..ebfbbb9aee 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po index 0d4b4ff002..b5b683bb1c 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index 6bd7886368..9156d4ebdd 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index a9216c2ae6..c290c2f3d0 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index 71b1afc864..8314161cb1 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 329f103916..8d15c71431 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index e49b6dcf06..c2afeac92a 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 9c49a7cfc0..e914fc479f 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index 0938d010d6..94c960cf3d 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index 5cb8d31cf3..a24efb194a 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index ee53fc9b8a..d015cf81e6 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index 082b29d216..40e60fe2e5 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 1e81da0204..8a7d181409 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index c12aa47b2d..3c9d37449e 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index bc791ec3bf..2a91abc870 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index 87ed02046f..5fdb969d23 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/Irc/locale/Irc.pot b/plugins/Irc/locale/Irc.pot index b0b276bbae..b005839fa5 100644 --- a/plugins/Irc/locale/Irc.pot +++ b/plugins/Irc/locale/Irc.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po index d120af0278..1c4d608e96 100644 --- a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index 6892762328..bb43986594 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index 265a721bc7..481254f958 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index 22296c039c..60c8ba1def 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index 477b26f626..9796fe141e 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -32,6 +32,11 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" +"Gebruiker \"%1$s\" op de site %2$s heeft aangegeven dat de schermnaam %3$s " +"van hem is. Als dat klopt, dan kunt u dit bevestigen door op deze verwijzing " +"te klikken: %4$s. Als u hier niet op kunt klikken, kopieer en plak deze " +"verwijzing naar in de adresbalk van uw webbrowser. Als u deze gebruiker niet " +"bent, of u hebt niet om deze bevestiging gevraagd, negeer dit bericht dan." msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." @@ -50,4 +55,4 @@ msgstr "" #. TRANS: Server error thrown on database error canceling IM address confirmation. msgid "Could not delete confirmation." -msgstr "" +msgstr "De bevestiging kon niet verwijderd worden." diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index 21060376e5..e9d3326860 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index c238c99916..1480ce7f31 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index 5203b3efa0..ffc637238e 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 1a0b13f6ee..075db5eb67 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po index fe3c7a73d3..d64301d386 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po index d297d86400..ceabae18b1 100644 --- a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po index 91ae5ec06f..1208debb83 100644 --- a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index 67fcb28852..2d91180e1d 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po index d3bfb993a7..ea84b19130 100644 --- a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index d816bb42b0..813a40ebf3 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po index 280f150ef0..3d29b32f3d 100644 --- a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po index 7539236808..9aa53750a3 100644 --- a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index b63ec0909d..29108c6ebc 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po index 1026f9230d..097bc5625b 100644 --- a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index 07b7efbdf6..ce2a644def 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po index 63aafd8bea..175230df5c 100644 --- a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po index 54754a8d55..ffbceca023 100644 --- a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po index a924e0857f..8da8bc20b5 100644 --- a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index f47516f43b..58596bf6e7 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index 0e4331be13..7a5ff80323 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po index f18f398dd1..4272366f8a 100644 --- a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 0d4725d31e..fef240103c 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po index 2bd41f2b9b..bae36bdc9d 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po index c96f9abeaf..1122dac45c 100644 --- a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 2ff9d82303..cd582fdcb9 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po index 09a3445a60..3cdb121617 100644 --- a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index 92e74734a9..7f73a7d16d 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po index ee40439657..e2d3eb3b5b 100644 --- a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:36+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 4ce425ad66..51e3a1e6dc 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po index 0728128949..1147c4ed0d 100644 --- a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index 92d95aa848..79e10845aa 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po index 1277668dd3..3eb64a44ec 100644 --- a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po index 8662586685..83f2c98cb8 100644 --- a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po index 2c7b9fed89..1bf2eaf52a 100644 --- a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 1d4a69c97e..1928edb506 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index f10c8ec735..c00350b43f 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po index 42028f47c3..3ba5633278 100644 --- a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index f95ad6f39b..1302a60769 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index 8906867c9a..63de2bf34d 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index 69bc9c60bf..cd9b873c5a 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index 81be9d14a8..12c0774329 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index aa6d1430f8..b044559f49 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index ed48e05b48..fd51946862 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 5a23c04d0d..1f1ea9fdc5 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index f2838c6877..8ee9697743 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index 7ef2e439ac..190a6e785c 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index d78b220046..0019ed9ae5 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index b8cb3fd534..e510a736b1 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index d17898b11c..63c4c97ff8 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index 95b0ad5065..126615e7fe 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index ca2576f435..80060dfc9f 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LinkPreview/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 0d25e806cc..f206dc1419 100644 --- a/plugins/LinkPreview/locale/LinkPreview.pot +++ b/plugins/LinkPreview/locale/LinkPreview.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po index aca3cb98e2..92c9f483b5 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index 23c1de9ce6..5802ce4ce7 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po index 286c5c1c7a..4591dd3fa3 100644 --- a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index e97088d93a..56728b1ac2 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index ebf31881f2..855cfcff8a 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index f6003be3da..40972a8ee2 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -28,3 +28,5 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." diff --git a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po index afbc753100..28750caee6 100644 --- a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po index 2a86911547..f6940410b6 100644 --- a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index c29bc2efad..dcbdf4477d 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po index 876062c372..4ee2da32f0 100644 --- a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index c427b2a833..7998f74c61 100644 --- a/plugins/Linkback/locale/Linkback.pot +++ b/plugins/Linkback/locale/Linkback.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index f440e7208a..bffa5b07e2 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index 53a4a6650e..d5cf148c6b 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index c1fdeb8a8d..be826c122a 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index ac854c0c50..e53f59ca86 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index eb9e7905a0..65d7b26d5a 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index 3cdc2a12bc..9ecb038fa9 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 34fe6fd861..2b9aef6389 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index b7f55b969e..6e4da04221 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 933c392ec0..0a712e5064 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index 068e6a0c18..0fa4fef5dd 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" @@ -23,7 +23,7 @@ msgstr "" #, php-format msgid "%1$s's status on %2$s" -msgstr "" +msgstr "Status van %1$s op %2$s" msgid "" "Notify blog authors when their posts have been linked in microblog notices " diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index d55da0f461..6dbaf0797c 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index 87b5aa0db1..1426c663ac 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index ab17bb53e3..20d7427482 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index 4e69368c88..126298b5a3 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index 10ab00643e..057e35b693 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/LogFilter/locale/LogFilter.pot b/plugins/LogFilter/locale/LogFilter.pot index ea2f9a2d5d..155d408b11 100644 --- a/plugins/LogFilter/locale/LogFilter.pot +++ b/plugins/LogFilter/locale/LogFilter.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po index 003e9ba632..caa0796ee1 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index 32effaaa42..05950bedfa 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index 0111a082a8..fcff30ce37 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index e730141544..c542e50d14 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index 7163fb61f2..f24f38ae41 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index 481216c41c..8bafcf8fec 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index 94784abbea..07d123cef2 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index 266b0360f6..42b08fada7 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index 6e66b5b586..9fc63c7403 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index 1e38f2b708..1386bc7106 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index 40d0d41006..a5179afcb1 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 2af17125d7..72c797a0b2 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po index 58db7cc73a..ef274b06f5 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index a5fa3b0af1..4fe618e709 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index 2ba92c7aee..552ad4d0a8 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 1600ba1ec2..232532f37b 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index c6c1e7bd94..9af2ccd28b 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index 8512eb47e5..0126325d05 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index 47be57a475..eab288b5b6 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index 303daf954a..fe4c892e91 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index 258e9cfcdf..35c64234f9 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index bf87254056..459934a97a 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index 4d17364a43..b9a633c3d6 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index 0a92bdb4b1..3f17df83f8 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index d1005b13c2..baf494f110 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 94d8fbd1dd..8275017c81 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index 9ac4aba7b3..7e01b7fa61 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index 2e808959a9..73811737c3 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 1590a5a1b2..1454ad40dc 100644 --- a/plugins/Memcache/locale/Memcache.pot +++ b/plugins/Memcache/locale/Memcache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po index 25d41809e9..f18d528deb 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index 81f33367ca..9fb56799ef 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index bb44d44efb..be7083576f 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 1514c8f031..5eb23f4cf9 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index 4737d01d5b..3f8eac4cf5 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index 436104f5f8..b998f0d783 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index 3f263f1bd0..4bd16076d4 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index 045d93bec9..1a1bf7a95a 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index c4bb476d35..07c715c5f0 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index d21d33ad70..d57196d5df 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index 41fe8b74cc..dcc0e83a48 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index a55f6af518..555f8eed29 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index b89bbfd014..9ef4a44d3f 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index 196577262b..7bc4473c63 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index 7e6133b4af..dacab0335f 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index d31e53f399..564ae33dbe 100644 --- a/plugins/Memcached/locale/Memcached.pot +++ b/plugins/Memcached/locale/Memcached.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po index ffcdb37746..a54c1734b3 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index 688c1023cb..bc5b1d5d9b 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index fb707019c4..3bbeaff44b 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index 8a83fcb1f8..a838405b8b 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index 3ff2905a1b..1ee74bf8f8 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index b23fec62ca..82cfa2d028 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index a64b7a6520..220d961b34 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index 7fe624439a..e6efb9857b 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index 34ace8b8a8..b72e5e6fee 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index fd37b85d24..891931a987 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index 54d869c28f..79bc03f40c 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index 2a18ffd856..e5b05243c1 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index 33d995877a..53186b2864 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index ed598adefe..e64cb3818b 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index 3cbb1277ba..48611e4967 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index 52a5b9b46a..7b09e64758 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index e442647167..c1bb95b6b6 100644 --- a/plugins/Meteor/locale/Meteor.pot +++ b/plugins/Meteor/locale/Meteor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po index 5b470f98fb..c0f751532f 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index ffff13f780..069ebee9c6 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:44+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index 5d6a5abcae..d5601ed9c1 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po index b19c71b57b..fcdd23e7a9 100644 --- a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index df02461c0a..0e677897d3 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index eb871ea6f2..6345bc85d9 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index ee97313cca..eadeaf0d55 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 5069d987f6..9c097e00e2 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index 2ff3517377..6c7d5ff6d3 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po index 17f61d4ec5..3fd0d1ae17 100644 --- a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 2326d240b4..4eac66e082 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po index f1126636f7..1d766a10f6 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 09fb8a3b40..b7d1ef381c 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index 299a2c14a3..10d69bf38a 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index 23a07ddd72..fd0623b0cd 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:45+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index b6b0a37d94..341f4602c8 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index f2823bf3e3..497bfe5aa6 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index 33984bc0ea..29e296c88b 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index 51f3c7c9e0..a3f8e45eae 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index bb87ffa2f3..5c5e50fd08 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index f869e7c0cb..f403f39bef 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:46+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index ac93f43ae0..d314315f20 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po index 12a2c33d95..27447544ab 100644 --- a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po index 334678b7db..dffedb8d67 100644 --- a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index 93adcb96fa..8f56833739 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" "Language-Team: Chechen \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ce\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index bff9cb7d1a..3ad3ce3da2 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 0155b7b203..624c28629a 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po index cdf8eef808..d4266469ec 100644 --- a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index 4a6bff954f..6b2326cbf6 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 3978d6cd3d..85e7d1ce8f 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index ac11e5870b..36153a367f 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 07ebd155db..1046874951 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:47+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po index 1167070f8f..f5f9c4dff6 100644 --- a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Pashto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ps\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 7c463bfdc9..92025c60f0 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po index e03203b311..85286f26b4 100644 --- a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po index 753b1dd445..65725f02de 100644 --- a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index 6473a6a53d..6adc423d20 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index 8035f4551f..77cdcc673e 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index 3af855afa6..24a72669f4 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index c3b3c874c5..37094b3e11 100644 --- a/plugins/ModHelper/locale/ModHelper.pot +++ b/plugins/ModHelper/locale/ModHelper.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po index 06a16a6686..0a020eb198 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index 42cd80f0d0..a958fa58df 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index 1a047fbaa4..f31c716817 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index ec743747a0..1251ee7118 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index 4933ff93e2..67fe94e50c 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index 70c8a1d5c1..79862cc4af 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index 8d1b617e97..5b377bca77 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index ada9fe7094..912ea16287 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index 32d6884410..4960b1ea71 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index e5c5daab15..e2a25766fb 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModPlus/locale/ModPlus.pot b/plugins/ModPlus/locale/ModPlus.pot index 4dae244422..ef905e6cba 100644 --- a/plugins/ModPlus/locale/ModPlus.pot +++ b/plugins/ModPlus/locale/ModPlus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index e843c214f5..74085a0183 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index 7287511447..cf7ab47cfc 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index bd1241b4ff..140aa0f8af 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index ca52401186..a95cae221c 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index 186f8790c7..5d58cf1100 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,20 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "User has no profile." -msgstr "" +msgstr "Deze gebruiker heeft geen profiel." #, php-format msgid "%s on %s" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index ac954e6336..1394efbffd 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/Mollom/locale/Mollom.pot b/plugins/Mollom/locale/Mollom.pot index 102d82056d..1a28b825d6 100644 --- a/plugins/Mollom/locale/Mollom.pot +++ b/plugins/Mollom/locale/Mollom.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po new file mode 100644 index 0000000000..148dd8c1f1 --- /dev/null +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -0,0 +1,25 @@ +# Translation of StatusNet - Mollom to Dutch (Nederlands) +# Exported from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mollom\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 20:36:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-mollom\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Spam Detected." +msgstr "Spam gedetecteerd." diff --git a/plugins/Msn/locale/Msn.pot b/plugins/Msn/locale/Msn.pot index 232909bcc7..0192142490 100644 --- a/plugins/Msn/locale/Msn.pot +++ b/plugins/Msn/locale/Msn.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po index 602713e9a1..c538ba2c29 100644 --- a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po index 7bfc5acf24..44fab4c717 100644 --- a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" "Language-Team: Greek \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po index 40f562fd4e..c37c03454d 100644 --- a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index 93eb530afa..ad78ce0536 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index f9d25c4c16..8ec2077f9f 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index 171fbb1b05..ce94e2376b 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po index d9046a0885..888bb638f5 100644 --- a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index 2a9096f43a..4a9b06189c 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:33+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index 6503aebd99..aa94e68901 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index b1ed54835a..39e7531444 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po index 33f15b0f8d..8ee1418599 100644 --- a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po index 9b93fc91e9..198bab2f49 100644 --- a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po index 89d1a991c1..c222ea7e9f 100644 --- a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po index d163a41a0e..07d1565942 100644 --- a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po index 24894d71e3..bd382e977c 100644 --- a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po index 97babb7141..d8c87f66ea 100644 --- a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po index 64f6f3d6f0..db3c3ed6df 100644 --- a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po index 8d56336dde..1afe8a9c20 100644 --- a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po index 66c01501d2..3aa649af0a 100644 --- a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po @@ -10,13 +10,13 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:52+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index cac8bb5eec..a4c336cbf4 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po index eaf560a064..a713422b26 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 7e00dc0494..5c2e280993 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index 6a2ed0abd1..18ebbedf7a 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 62f92aee40..e671efbc1d 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index 51100bc7cc..270c3b9856 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index e1d48e4666..3754da50a4 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 0ebf1b1356..59424e5b26 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 777f50d955..84109706bf 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index a14ccb9af0..f3787b9d25 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 7d288d2561..72bda4efdb 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po index a04cb8d3b5..2f1efebce7 100644 --- a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po index 49ec6e4e17..aa15b32230 100644 --- a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index d1bb0fed19..da47aaa542 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index 1d3d8eb2a1..1b4bcd9f6c 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index b3c21ac4f6..f0b07dca58 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index 01e9ba8fbf..0d8c8bcd1a 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po index cccd30e1f7..3d68bda215 100644 --- a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 8dd35a2083..956db2d551 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index 187b6ca848..11ea1ddd7a 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index a2cd5a4a51..df73ae7707 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 47320fd838..1111b3f7f6 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index d510e2674a..a5b41cbad1 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 5c7fdeea3b..bb0152f812 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:13+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -320,9 +320,8 @@ msgstr "" "deze gebruiker." #. TRANS: Client exception. -#, fuzzy msgid "This is already a favorite." -msgstr "Deze bestemming begrijpt favorieten niet." +msgstr "Deze mededeling staat al in uw favorietenlijst." #. TRANS: Client exception. msgid "Could not save new favorite." @@ -330,7 +329,7 @@ msgstr "Het was niet mogelijk de nieuwe favoriet op te slaan." #. TRANS: Client exception. msgid "Notice was not favorited!" -msgstr "" +msgstr "De mededeling is niet op de favorietenlijst geplaatst!" #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 8028176632..26823261ab 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 43f9cf502b..72229e8875 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po index b326d2313d..2c70cd659e 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index dc979257b1..e6811a513b 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 9b4b87df0d..3f6af58da8 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index 8f880b2046..feccc5c396 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index f359128a1d..f4fc7f1bb1 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 1c013bc104..8a2aa54a0d 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index 8c3d33de2b..2d9646db5c 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 2544cdf7de..f393bb5bfc 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index b6f05baaf0..a71871c283 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index 89c956ae5b..738b013cf3 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index b26302e366..2130e3cd6e 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index 43bcc17aad..1dac2aefac 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index a1f7b20a2a..2be74ff5eb 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:37+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 12b602bf91..d27b2514e0 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index d5bcab136a..543bbdf30d 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:43+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po index 78f680797e..2cc5df23ad 100644 --- a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:43+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 994bddbdc6..16faa01b1a 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:01+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:43+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 59fe327d64..7bc3fcbe44 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 4b0a126648..85d51bfc4a 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 522b664bba..ee867b9ff3 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index 04eefb5d3a..8a8a4095f1 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 92a9c89a3d..247da13ef8 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -138,7 +138,9 @@ msgstr "U bent al aangemeld." #. TRANS: Message given when there is a problem with the user's session token. msgid "There was a problem with your session token. Try again, please." -msgstr "Er was een probleem met uw sessietoken. Probeer het opnieuw." +msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." #. TRANS: Message given if user does not agree with the site's license. msgid "You can't register if you don't agree to the license." @@ -173,15 +175,14 @@ msgstr "Nieuwe gebruiker met deze naam aanmaken." msgid "New nickname" msgstr "Nieuwe gebruiker" -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "1-64 kleine letters of getallen; geen leestekens of spaties" +msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." msgid "Email" -msgstr "" +msgstr "E-mail" msgid "Used only for updates, announcements, and password recovery." -msgstr "" +msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel." #. TRANS: OpenID plugin link text. #. TRANS: %s is a link to a licese with the license name as link text. @@ -190,6 +191,8 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +"Mijn teksten en bestanden zijn beschikbaar onder %s, behalve de volgende " +"privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" @@ -395,11 +398,10 @@ msgstr "" "aanmelden!" msgid "Save" -msgstr "" +msgstr "Opslaan" -#, fuzzy msgid "Save OpenID settings." -msgstr "OpenID-instellingen opslaan" +msgstr "OpenID-instellingen opslaan." #. TRANS: Client error message msgid "Not logged in." diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 2dca3397e1..9afd74b082 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:02+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 0afb329d3a..6f835f150c 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:03+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 51e143fb5a..e502a268ad 100644 --- a/plugins/OpenX/locale/OpenX.pot +++ b/plugins/OpenX/locale/OpenX.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po index 825920a2ac..864e0ca113 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:45+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index a338dd7d46..42fedd285f 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:45+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index 10ca84295a..ff251f3c46 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index 051ab4f776..54757e6dd3 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index 482fa86224..3b8fc89d6c 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index b38f9572b1..1a90b2ba46 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index bd04308ef5..bd2bd9170e 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:04+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index 26957437a2..8fe4dc0647 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po index 452c60981c..519ef0b69d 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index 1e4b33826e..6a3225b8b5 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index e0a8d3e92d..d1884d38d8 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index 706e484b4c..faa77f00d6 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index abaaa8066f..2162bb3d36 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index c12e523cd4..c4a796b839 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index 5dc10ce0b8..3ec21c0060 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index 568d36d582..e15a65237e 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index b1bb2de1b8..7a08bd54d5 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index 9b3bdfde2a..ec9d407d1f 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index 0be2a7631e..37e3c0b7e3 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:14+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index b0408c7cf9..95463f22d0 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index 08bea88d75..20613c1d31 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index fc9e03bfd4..cbe5fb9a65 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:15+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/Poll/locale/Poll.pot b/plugins/Poll/locale/Poll.pot index 2ff2c2cb48..3348de9491 100644 --- a/plugins/Poll/locale/Poll.pot +++ b/plugins/Poll/locale/Poll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index fe2039cc97..6810e2830a 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -145,9 +145,3 @@ msgstr "Sondage invalide o mancante." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Resultatos del sondage" - -#~ msgid "No such user." -#~ msgstr "Iste usator non existe." - -#~ msgid "User without a profile." -#~ msgstr "Usator sin profilo." diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index 5ce42d5f46..59058dc1cb 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:16+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -145,9 +145,3 @@ msgstr "Неважечка или непостоечка анкета." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Резултати од анкетата" - -#~ msgid "No such user." -#~ msgstr "Нема таков корисник." - -#~ msgid "User without a profile." -#~ msgstr "Корисник без профил." diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index 3a2836d61f..7365d1f4a1 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -73,7 +73,7 @@ msgid "Unexpected type for poll plugin: %s." msgstr "Onverwacht type voor peilingplug-in: %s" msgid "Poll data is missing" -msgstr "" +msgstr "Peilingsgegevens (nog) niet aanwezig" #. TRANS: Application title. msgctxt "APPTITLE" @@ -145,9 +145,3 @@ msgstr "De peiling is ongeldig of bestaat niet." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Peilingresultaten" - -#~ msgid "No such user." -#~ msgstr "Deze gebruiker bestaat niet." - -#~ msgid "User without a profile." -#~ msgstr "Gebruiker zonder een profiel." diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index 2905b9c61d..edb67e8370 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -146,9 +146,3 @@ msgstr "Hindi katanggap-tanggap o nawawalang botohan." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Mga kinalabasan ng botohan" - -#~ msgid "No such user." -#~ msgstr "Walang ganyang tagagamit." - -#~ msgid "User without a profile." -#~ msgstr "Tagagamit na walang balangkas." diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index 5faf479168..4fcc90fe7b 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -146,9 +146,3 @@ msgstr "Невірне або відсутнє опитування." #. TRANS: Page title after sending a poll response. msgid "Poll results" msgstr "Результати опитування" - -#~ msgid "No such user." -#~ msgstr "Такого користувача немає." - -#~ msgid "User without a profile." -#~ msgstr "Користувач без профілю." diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index ea236f9b90..cbdc645544 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po index 8d94f4b7e0..a3c6fb066e 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index 79ad8cd8e9..4a43e0350a 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index 95c7a07216..45abc691c0 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index 3d3379d68b..27f99c34d4 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index c0ca58ea4b..1794445a68 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index 8ca3cf5403..9982000a60 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 72fe4c7a68..20806f8b6a 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index 994e8c53f4..d6599c431e 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index 93f31bf2de..c9ce501283 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index dd4e6d2181..c506659d98 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index 2571d38ca7..b7efc630ac 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:17+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index f05acd5103..02d24c773b 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index fe757053b0..da8d70c8b1 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index a6123287b4..9e25fe96dd 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index 55c580c59a..92fa1340a3 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index fa218292c1..8120ab74b9 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index ee75341d10..263048a3dd 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index d0beab5843..d75c61a01f 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index 1cf37555ee..0c98852e90 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index abb988e82f..553febc1bf 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 6b585163cc..a17555e0cf 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index d3b4db920f..fb1fa7d324 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index 4d1091ffd8..dbe2838175 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index f9e55caf7c..5177b948dd 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index a747535d0e..5f5eebf90e 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 5284da7583..397f0825ae 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index 04bf5d3484..5cd419fdd2 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index f4284bba78..bb517b6f94 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index 6a4883be4c..e0dfeedb14 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:18+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index bee79839f1..5cc3de9c5a 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po index 290968258c..2041b92b8a 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 592d74fd48..eeb71eff2e 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index d1548ac80d..9a698a1a33 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index 4c0afe596f..e5278e60ae 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index 8f294f2cbf..1849a2a16b 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index ac104f6734..c6d7c4f976 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index c942b38b8e..a10c08918d 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index ed6adc71fc..98f13f7888 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index 77bea67d8e..ce8401509b 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index bb57e381cf..520d9656c1 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index 12bf61aed1..d418a68379 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index c26d60a8d8..b9092680c3 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index 66c9668646..eea0a5bc1f 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index d38c7cb468..f59f687edd 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index 750d308fbe..a4729b9334 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:19+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 57f10063be..942d07699b 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/QnA/locale/QnA.pot b/plugins/QnA/locale/QnA.pot new file mode 100644 index 0000000000..7bae84dfeb --- /dev/null +++ b/plugins/QnA/locale/QnA.pot @@ -0,0 +1,171 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. TRANS: Title for Question page. +#: actions/qnanewquestion.php:62 +msgid "New question" +msgstr "" + +#: actions/qnanewquestion.php:81 +msgid "You must be logged in to post a question." +msgstr "" + +#. TRANS: Client exception thrown trying to create a question without a title. +#: actions/qnanewquestion.php:129 +msgid "Question must have a title." +msgstr "" + +#. TRANS: Page title after sending a notice. +#: actions/qnanewquestion.php:149 +msgid "Question posted" +msgstr "" + +#: actions/qnashowanswer.php:67 actions/qnashowanswer.php:80 +msgid "No such answer." +msgstr "" + +#: actions/qnashowanswer.php:73 +msgid "No question for this answer." +msgstr "" + +#. TRANS: Client exception thrown trying to view a question of a non-existing user. +#: actions/qnashowanswer.php:86 actions/qnashowquestion.php:83 +msgid "No such user." +msgstr "" + +#. TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded. +#: actions/qnashowanswer.php:92 actions/qnashowquestion.php:90 +msgid "User without a profile." +msgstr "" + +#: actions/qnashowanswer.php:112 +#, php-format +msgid "%s's answer to \"%s\"" +msgstr "" + +#. TRANS: Client exception thrown trying to view a non-existing question. +#: actions/qnashowquestion.php:68 +msgid "No such question." +msgstr "" + +#. TRANS: Client exception thrown trying to view a non-existing question notice. +#: actions/qnashowquestion.php:76 +msgid "No such question notice." +msgstr "" + +#. TRANS: Page title for a question. +#. TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. +#: actions/qnashowquestion.php:114 +#, php-format +msgid "%1$s's question: %2$s" +msgstr "" + +#. TRANS: Page title for and answer to a question. +#: actions/qnanewanswer.php:63 actions/qnavote.php:63 +msgid "Answer" +msgstr "" + +#. TRANS: Client exception thrown trying to answer a question while not logged in. +#: actions/qnanewanswer.php:85 actions/qnavote.php:84 +msgid "You must be logged in to answer to a question." +msgstr "" + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +#: actions/qnanewanswer.php:103 actions/qnavote.php:96 +msgid "Invalid or missing question." +msgstr "" + +#. TRANS: Page title after sending an answer. +#: actions/qnanewanswer.php:158 actions/qnavote.php:150 +msgid "Answers" +msgstr "" + +#: QnAPlugin.php:159 +msgid "Question and Answers micro-app." +msgstr "" + +#: QnAPlugin.php:165 +msgid "Question" +msgstr "" + +#: QnAPlugin.php:307 +#, php-format +msgid "Unexpected type for QnA plugin: %s." +msgstr "" + +#: QnAPlugin.php:338 +msgid "Question data is missing" +msgstr "" + +#: classes/QnA_Answer.php:225 +#, php-format +msgid "%1$s answered the question \"%2$s\": %3$s" +msgstr "" + +#. TRANS: Rendered version of the notice content answering a question. +#. TRANS: %s a link to the question with question title as the link content. +#: classes/QnA_Answer.php:268 classes/QnA_Answer.php:275 +#, php-format +msgid "answered \"%s\"" +msgstr "" + +#: classes/QnA_Question.php:255 +#, php-format +msgid "%1$s asked the question \"%2$s\": %3$s" +msgstr "" + +#: classes/QnA_Question.php:307 +#, php-format +msgid "question: %1$s %2$s" +msgstr "" + +#. TRANS: Rendered version of the notice content creating a question. +#. TRANS: %s a link to the question as link description. +#: classes/QnA_Question.php:315 +#, php-format +msgid "Question: %s" +msgstr "" + +#. TRANS: Button text for submitting a poll response. +#: lib/qnareviseanswerform.php:120 lib/qnavoteform.php:118 +#: lib/qnaanswerform.php:119 +msgctxt "BUTTON" +msgid "Submit" +msgstr "" + +#: lib/qnaquestionform.php:109 +msgid "Title" +msgstr "" + +#: lib/qnaquestionform.php:111 +msgid "Title of your question" +msgstr "" + +#: lib/qnaquestionform.php:117 +msgid "Description" +msgstr "" + +#: lib/qnaquestionform.php:119 +msgid "Your question in detail" +msgstr "" + +#. TRANS: Button text for saving a new question. +#: lib/qnaquestionform.php:135 +msgctxt "BUTTON" +msgid "Save" +msgstr "" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 88dac3ab9d..bb587ca9da 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po index 4ccd1f30ad..a3974fe4ea 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index bc88c0a223..cd7e36e7c1 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 41a2e28d1d..46aad668ac 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index d39f81aaad..43e5864e27 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index f9bb5fbee2..4ab4dfd0ad 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "A URL parameter is required." -msgstr "" +msgstr "Er is een URL-parameter vereist." msgid "This resource requires an HTTP GET." msgstr "Deze bron heeft een HTTP GET nodig." diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index 6b7219f1ed..0b0023c652 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index 10b22807d0..cad94efe59 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:25+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/Realtime/locale/Realtime.pot b/plugins/Realtime/locale/Realtime.pot index 1beaf56110..8c15f959c7 100644 --- a/plugins/Realtime/locale/Realtime.pot +++ b/plugins/Realtime/locale/Realtime.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po index 85f71a360a..ac8c26f242 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index 5587004d2d..8fe74dee42 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index f966350ab4..9b794ce75e 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index fde577f449..06de789d50 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index b2d0b5cf01..a7d617a9c7 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index 43f59bdd43..7e12687c81 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index c698cf734e..f996e6c65d 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:20+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 8f690b30ca..51d5894e00 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index 696f1c6374..507d0837b2 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index f4d5e93dd1..63977c4e3d 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index 29cb5c1b01..de4d69b918 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index dff046dc7c..cc07daf121 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index f3d2d31678..dcf889976a 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index 5d393a77c6..380d1f4b89 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index e883d1eb4a..da32dd58e4 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index 670e6b2b57..e59936c33e 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index 8b9c83e93d..f9fe781264 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:21+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index 1cdef19395..3d879ea564 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 4a5b2959ec..1f6a70419f 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index 01569c056f..cec204da3d 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index 6a02a7a465..9485238ff2 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index a10ebfa083..6a196670c1 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index d2ece1babf..bac3385797 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index 7a2371e662..924e56f40b 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index ea38113f10..4797cddeb9 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index 0f98328247..05b111ec06 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index cd24d96cc3..c2bfed0a6d 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index dd6edcc604..7bbc94a484 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index 59e8ad5e68..4e9bde5b51 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index 36016b6be3..50bc21930d 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:22+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 2cf7961495..c654606ef0 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index 393679f9fd..a7b8cc785d 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 71af035172..adc66babea 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index d585caefb8..13e7c239cd 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -31,51 +31,53 @@ msgid "Disables posting without a validated email address." msgstr "Schakelt berichten plaatsen zonder gevalideerd e-mailadres uit." msgid "You are already logged in." -msgstr "" +msgstr "U bent al aangemeld." msgid "Confirmation code not found." -msgstr "" +msgstr "De bevestigingscode is niet gevonden." msgid "No user for that confirmation code." -msgstr "" +msgstr "Er is geen gebruiker voor die bevestigingscode." #, php-format msgid "Unrecognized address type %s." -msgstr "" +msgstr "Onbekend adrestype %s." #. TRANS: Client error for an already confirmed email/jabber/sms address. msgid "That address has already been confirmed." -msgstr "" +msgstr "Dit adres is al bevestigd." msgid "Password too short." -msgstr "" +msgstr "Het wachtwoord is te kort." msgid "Passwords do not match." -msgstr "" +msgstr "De wachtwoorden komen niet overeen." #, php-format msgid "" "You have confirmed the email address for your new user account %s. Use the " "form below to set your new password." msgstr "" +"U hebt het e-mailadres bevestigd voor uw nieuwe gebruiker %s. Gebruik het " +"formulier hieronder om uw nieuwe wachtwoord in te stellen." msgid "Set a password" -msgstr "" +msgstr "Stel een wachtwoord in" msgid "Confirm email" -msgstr "" +msgstr "E-mailadres bevestigen" msgid "New password" -msgstr "" +msgstr "Nieuw wachtwoord" msgid "6 or more characters." -msgstr "" +msgstr "Zes of meer tekens." msgid "Confirm" -msgstr "" +msgstr "Bevestigen" msgid "Same as password above." -msgstr "" +msgstr "Gelijk aan het wachtwoord hierboven." msgid "Save" -msgstr "" +msgstr "Opslaan" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index 5f7804cda7..5f9ae86108 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po index ca10ae45cf..44e01e9709 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index 59fa3288f9..7a87734aa8 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index d8150fc8e7..1106ebedf4 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index d437643231..f2b2e352d3 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index 8062e4de35..975465f151 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index 19ed3981ef..999d1c59ab 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index bc618ab0c9..13f9f2675a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index 79edf33b87..6e0296e709 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index a40906d4d9..3f72cc7d75 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index d60a984a82..117d948971 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index 7a7a4892db..83a3000845 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index 9c141343db..92b504ea8e 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:24+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/SQLProfile/locale/SQLProfile.pot b/plugins/SQLProfile/locale/SQLProfile.pot index bcd2acef79..5416837332 100644 --- a/plugins/SQLProfile/locale/SQLProfile.pot +++ b/plugins/SQLProfile/locale/SQLProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po index 8cff7201ef..baea5d29d0 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index 96f5784397..b03dba99cd 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index 1abdea2584..96f8e5de10 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index b5ca8254ab..27125f20b1 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index 5d2ce33898..0a38cc7038 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index abafbe4495..8478fe2c7b 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index 626e42cc8b..edf53f93ed 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index f976b88306..0d708264b3 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index 758df8cac8..185722349f 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index 3262ce6078..5cac983f45 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index 3213d172b5..024cf8d63c 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index 100c26a99c..bea0cde98e 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index 73a4726760..baa9f2a949 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:26+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index 74ffa85a54..15f9e4688b 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index d784ad5b7d..74776088bb 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index a0ae0df4a8..d80ed48fe2 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index 7f62e2d48a..d29cd1aa84 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:09+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index 1174d091eb..928458b4e1 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:09+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 5016a8a802..fa2da6a9e0 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index cc1a70f73e..78e1395e30 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:27+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:09+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index d9f8d3ba04..cade31e590 100644 --- a/plugins/SearchSub/locale/SearchSub.pot +++ b/plugins/SearchSub/locale/SearchSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index bd8b21b8f5..72fa7174b5 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index 3611138588..8d45a7d304 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index a8dc80040a..debdff8236 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -96,19 +96,21 @@ msgstr "U hebt niet langer meer een abonnement op de zoekopdracht \"%s\"." #. TRANS: Client error displayed trying to perform any request method other than POST. #. TRANS: Do not translate POST. msgid "This action only accepts POST requests." -msgstr "" +msgstr "Deze handeling accepteert alleen POST-verzoeken." #. TRANS: Client error displayed when the session token is not okay. msgid "There was a problem with your session token. Try again, please." msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." #. TRANS: Client error displayed trying to subscribe when not logged in. msgid "Not logged in." -msgstr "" +msgstr "Niet aangemeld." #. TRANS: Client error displayed trying to subscribe to a non-existing profile. msgid "No such profile." -msgstr "" +msgstr "Het profiel bestaat niet." #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" @@ -117,10 +119,9 @@ msgstr "Geabonneerd" msgid "Unsubscribe from this search" msgstr "Abonnement op deze zoekopdracht opzeggen" -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "Het abonnement is opgezegd" +msgstr "Uitschrijven" #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" @@ -192,10 +193,9 @@ msgstr "U volgt zoekopdrachten naar: %s." msgid "Subscribe to this search" msgstr "Deze zoekopdracht volgen" -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" -msgstr "Geabonneerd" +msgstr "Abonneren" #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index 01da1a1d49..aa3f371fa8 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index a79f869acb..7b6cfdb379 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:29+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 2a7ef81050..a7a6a41f94 100644 --- a/plugins/ShareNotice/locale/ShareNotice.pot +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po index 32143d5384..82ced48026 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index e554f09985..87eec6dd5b 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index 13a4f8aad5..3e0086a641 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index 5d4b6dce88..08f44ea43f 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index 5a2296543b..3318fb2823 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index 10d4a3e2ad..5d9a800bb9 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index 99df52ec93..c580fd9b77 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index 40361349cf..43a4537f03 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index 62ac062998..4308dbb29d 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index 2429b8e8e5..632708f750 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index 89e3bbc4e2..8efc879338 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index ad46317340..30d6e9b0ba 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po index 39de9271be..518fb81ff3 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:30+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index 97e4d09343..1d428f6f0a 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index 22f38a6f0b..8fd6be7cd1 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index bb494c8318..2e20ceae29 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index 27844e14ff..e7d22941e8 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index 6d665cbc6d..832950160a 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index 1181c2ffd8..6e0da55b06 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index 4663b75916..4599f394ed 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index b357afb330..d09940808d 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index b4b978b630..05492ae4d6 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index adcc45728d..5bcb7bccc5 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index 7c8dd61a70..3bb0a439d3 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index cf85779a3d..07b5a2964a 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 238f79a19f..65aa82f304 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 77b0f86e81..0747e23b9e 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index b0a3711f86..0463f47cd5 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index 7bf53175ca..3b9c420cf3 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:31+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index 83d0d7eff8..efd4df1d30 100644 --- a/plugins/Sitemap/locale/Sitemap.pot +++ b/plugins/Sitemap/locale/Sitemap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po index 3a25f10c90..4d94ab1a6f 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:14+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index d6ca5f6f5d..28e2ec462b 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:14+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index 06f24573c1..454eabdad3 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index 14a05b288a..c0d466c2d3 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index 362da4c9d1..13f96b3b78 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index 75788ecb15..5328719f47 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:32+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index 2b53f1c008..a93b5a02ab 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index b79e2c81a6..808fc6d464 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index 166827eda4..668dc5a92f 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index 7f87a51878..48c18de963 100644 --- a/plugins/SlicedFavorites/locale/SlicedFavorites.pot +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po index 816a3ba5b9..f56902dbdf 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index 6c1d78029f..fc39dc747d 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 1367c1f63a..2404bca710 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index c7b7009aa1..6eeae02335 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index a5746187dd..f418e497be 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index 28672748a0..31e3575445 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index c76d8007bc..1f50b3afc3 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index d1db47ba53..dc84cfb42d 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index 2702689ac9..7690b120de 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index 682b6f70b7..b4580520ee 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:33+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index a2767b412d..565e46d271 100644 --- a/plugins/SphinxSearch/locale/SphinxSearch.pot +++ b/plugins/SphinxSearch/locale/SphinxSearch.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po index 7032b012b3..ab65262fd7 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index 2ae2ee13f5..8332b0b97a 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index 7d4aa10554..cf56ff4d00 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index 043fb79fe0..a8fb9899ec 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index e494a2b2d0..26c33f7944 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index f95ba74c94..d8cc28032d 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index 1ad446804d..0d239ceafb 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index 6a12d4ed4e..152662cfde 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:34+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index ed2aa647c7..fe447a2ef0 100644 --- a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot +++ b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index 8fb7c60d96..eb3782fb0d 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index 375105d143..ae3215029b 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index 21fb2e2acb..d5b5be8278 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index cc2547d0e7..f8df36df54 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index cba740a6c6..cdb297acc2 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:35+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 39d3d5e41f..5ec78c8092 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 7193bdcfba..de351730e2 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index fa8f38b801..e7dd0dc5e9 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index 8d8f53f9e1..362c103f99 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index f50713608a..e1ca3cee74 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index e4ae1c7600..83586e0980 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -75,7 +75,7 @@ msgstr "" "StatusNet-tijdlijn." msgid "Provider add" -msgstr "" +msgstr "Provider toevoegen" msgid "Pull feeds into your timeline!" msgstr "Neem feeds op in uw tijdlijn!" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 4d636d756c..58889510a7 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index fb0283bb37..afcdbbbf08 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:37+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index 6cb0ffcc16..db6994fde9 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po new file mode 100644 index 0000000000..bf4423103b --- /dev/null +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - SubscriptionThrottle to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubscriptionThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-31 21:39:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Too many subscriptions. Take a break and try again later." +msgstr "Terlalu banyak langganan. Berehat seketika dan cuba lagi nanti." + +msgid "Too many memberships. Take a break and try again later." +msgstr "Terlalu banyak keahlian. Berehat seketika dan cuba lagi nanti." + +msgid "Configurable limits for subscriptions and group memberships." +msgstr "" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index 386f61a7ac..3d9bcf494c 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Too many subscriptions. Take a break and try again later." -msgstr "" +msgstr "Te veel abonnementen. Wacht even en probeer het later opnieuw." msgid "Too many memberships. Take a break and try again later." -msgstr "" +msgstr "Te veel lidmaatschappen. Wacht even en probeer het later opnieuw." msgid "Configurable limits for subscriptions and group memberships." msgstr "In te stellen limieten voor abonnementen en groepslidmaatschappen." diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index c4de6be396..5a0844b59a 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po index 4fa77c05d6..aef3874dbc 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index bf73ae662e..6fcfa1cc69 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index bf08ab2ead..9ae2afe251 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index 77c0c0ad79..5b738ea8b2 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index 33b71db931..654c551e70 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 483ab4f070..77a7923558 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 58b77895c3..ae84967bcd 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index c262dd4faf..d99d581ad7 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index fbb27957d5..14005257d5 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index 8615cee8c4..b8f3ef3761 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index 006dd4303b..0cb811b136 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index cf48df9c76..49b394492f 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index 326f7000fe..aae9cb669b 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:39+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TagSub/locale/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index 1cfd07b86b..66af15aeef 100644 --- a/plugins/TagSub/locale/TagSub.pot +++ b/plugins/TagSub/locale/TagSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index f4f0d1240e..21b5450eb2 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index 82f68d3c4d..762cea08f1 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po new file mode 100644 index 0000000000..9385bee46a --- /dev/null +++ b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po @@ -0,0 +1,124 @@ +# Translation of StatusNet - TagSub to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TagSub\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-tagsub\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Unsubscribe from this tag" +msgstr "" + +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Berhenti melanggan" + +#. TRANS: Plugin description. +msgid "Plugin to allow following all messages with a given tag." +msgstr "" + +#. TRANS: SubMirror plugin menu item on user settings page. +msgctxt "MENU" +msgid "Tags" +msgstr "Tag" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +msgid "Configure tag subscriptions" +msgstr "" + +msgid "Tag subscriptions" +msgstr "Langganan tag" + +msgid "Subscribe to this tag" +msgstr "" + +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "" + +#. TRANS: Page title when tag unsubscription succeeded. +msgid "Unsubscribed" +msgstr "Sudah berhenti melanggan." + +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe when not logged in. +msgid "Not logged in." +msgstr "Belum log masuk." + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "Profil ini tidak wujud." + +#. TRANS: Page title when tag subscription succeeded. +msgid "Subscribed" +msgstr "Dilanggan" + +#. TRANS: Header for subscriptions overview for a user (first page). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s's tag subscriptions" +msgstr "Langganan tag %s" + +#. TRANS: Header for subscriptions overview for a user (not first page). +#. TRANS: %1$s is a user nickname, %2$d is the page number. +#, php-format +msgid "%1$s's tag subscriptions, page %2$d" +msgstr "Langganan tag %1$s, mukasurat %2$d" + +#. TRANS: Page notice for page with an overview of all tag subscriptions +#. TRANS: of the logged in user's own profile. +msgid "" +"You have subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "" +"%s has subscribed to receive all notices on this site containing the " +"following tags:" +msgstr "" + +#. TRANS: Tag subscription list text when the logged in user has no tag subscriptions. +msgid "" +"You are not listening to any hash tags right now. You can push the " +"\"Subscribe\" button on any hashtag page to automatically receive any public " +"messages on this site that use that tag, even if you are not subscribed to " +"the poster." +msgstr "" + +#. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not listening to any tags." +msgstr "%s tidak mendengari mana-mana tag pun." + +#, php-format +msgid "#%s since %s" +msgstr "#%s sejak %s" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index de8b5bb893..d8f86b4ecd 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:40+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,10 +24,9 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Abonnement op dit label beëindigen" -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "Het abonnement is opgezegd" +msgstr "Uitschrijven" #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." @@ -50,10 +49,9 @@ msgstr "Labelabonnementen" msgid "Subscribe to this tag" msgstr "Op dit label abonneren" -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" -msgstr "Geabonneerd" +msgstr "Abonneren" #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" @@ -62,19 +60,21 @@ msgstr "Het abonnement is opgezegd" #. TRANS: Client error displayed trying to perform any request method other than POST. #. TRANS: Do not translate POST. msgid "This action only accepts POST requests." -msgstr "" +msgstr "Deze handeling accepteert alleen POST-verzoeken." #. TRANS: Client error displayed when the session token is not okay. msgid "There was a problem with your session token. Try again, please." msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." #. TRANS: Client error displayed trying to subscribe when not logged in. msgid "Not logged in." -msgstr "" +msgstr "Niet aangemeld." #. TRANS: Client error displayed trying to subscribe to a non-existing profile. msgid "No such profile." -msgstr "" +msgstr "Het profiel bestaat niet." #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" @@ -118,6 +118,10 @@ msgid "" "messages on this site that use that tag, even if you are not subscribed to " "the poster." msgstr "" +"U hebt op het moment geen abonnementen op labels. U kunt op iedere " +"labelpagina klikken op de knop \"Abonneren\" om automatisch alle publieke " +"berichten voor dat label in uw tijdlijn bezorgd te krijgen, zelfs als u niet " +"geabonneerd bent op de gebruiker die de mededeling heeft geplaatst." #. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index 660806e1d4..f4b56ded97 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index f036caae3c..501a02d759 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:26:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index 3da645ec63..1abc0bd315 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po index 21003f3ef2..3f756aefec 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index 9497467e89..367f7bf282 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index 2740e9cae1..e0c1bf36ac 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index ba714388d8..d2509cf857 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index f77ec14efc..76f3a53fef 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index fddef7de55..b6725b2f03 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index 61bea3502f..07ca690cd1 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 61bdb8ffb5..2500e51635 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index ed222fd591..5f74095c47 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po new file mode 100644 index 0000000000..da0eb49f5d --- /dev/null +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - TightUrl to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TightUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-tighturl\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "Menggunakan khidmat pemendekan URL %1$s." diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index a96bcabbed..7e6913e2ec 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index caed0fa96a..6b73d9ec3e 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:41+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index e24e6f824c..15d594c3a1 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index 775956c2bb..a9e7d7146c 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index db66c39691..a402383a4e 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index 1ddcfaedba..58dbea120c 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index db63af17c0..fb88da0556 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index 57f0db3024..ca8da2633b 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po index 90fa4e3cd7..a4b7985ea3 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index 0d52a8762d..d8a34d63a6 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index eb89f5d178..bb3664c6e5 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index 91e8eca1c0..3ade65e813 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index 506dc2c9f6..100a29f3e2 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 5f2c9fd453..ecadcbaa00 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index 8125a8a050..f68f65ce38 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 7376a7c9c9..290b938039 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..966c816340 --- /dev/null +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - TinyMCE to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Gunakan perpustakaan TinyMCE untuk membolehkan penyuntingan teks beraneka " +"(rich text) dalam pelayar ini." diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index c9aa7813dc..e89ab88740 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index ebd3d49bab..a16d88157b 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index edbcade3c7..417ec6049f 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:42+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index cc580549a1..21d30258f4 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 9b6ab70209..63818adcb4 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index 0a3dc5e496..d7f5cf1513 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index 0c741d4fb0..d6d8436346 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:43+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 0b02be4928..14c2d0f01c 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -119,22 +119,25 @@ msgid "Twitter preferences saved." msgstr "" #: twitterauthorization.php:126 -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" #: twitterauthorization.php:135 msgid "Something weird happened." msgstr "" -#: twitterauthorization.php:181 twitterauthorization.php:229 -#: twitterauthorization.php:300 -msgid "Couldn't link your Twitter account." +#: twitterauthorization.php:181 +msgid "Could not link your Twitter account." msgstr "" #: twitterauthorization.php:201 msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +#: twitterauthorization.php:229 twitterauthorization.php:300 +msgid "Couldn't link your Twitter account." +msgstr "" + #: twitterauthorization.php:312 #, php-format msgid "" @@ -171,7 +174,7 @@ msgid "New nickname" msgstr "" #: twitterauthorization.php:392 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #: twitterauthorization.php:395 diff --git a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po index 0e3ef616e4..f0e5212eeb 100644 --- a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -99,18 +99,22 @@ msgstr "" msgid "Twitter preferences saved." msgstr "" -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" msgid "Something weird happened." msgstr "" -msgid "Couldn't link your Twitter account." -msgstr "" +#, fuzzy +msgid "Could not link your Twitter account." +msgstr "Kevreadenn gant ho kont Twitter" msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +msgid "Couldn't link your Twitter account." +msgstr "" + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -139,7 +143,7 @@ msgstr "Krouiñ un implijer nevez gant al lesanv-se." msgid "New nickname" msgstr "Lesanv nevez" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" msgctxt "LABEL" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index aca161b583..46f3ae9904 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -107,13 +107,15 @@ msgstr "No s'han pogut desar les preferències del Twitter." msgid "Twitter preferences saved." msgstr "S'han desat les preferències del Twitter." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "No podeu registrar-vos-hi si no accepteu la llicència." msgid "Something weird happened." msgstr "Ha passat quelcom estrany." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "No s'ha pogut enllaçar amb el compte del Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." @@ -121,6 +123,9 @@ msgstr "" "No s'ha pogut enllaçar amb el vostre compte del Twitter: no coincidència de " "l'oath_token." +msgid "Couldn't link your Twitter account." +msgstr "No s'ha pogut enllaçar amb el compte del Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -155,7 +160,8 @@ msgstr "Crea un usuari nom amb aquest sobrenom." msgid "New nickname" msgstr "Nou sobrenom" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 lletres en minúscules o nombres, sense puntuació o espais" msgctxt "LABEL" diff --git a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po index 6788ed3a00..875eaec48c 100644 --- a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -99,18 +99,22 @@ msgstr "نمی‌توان ترجیحات توییتر را ذخیره کرد." msgid "Twitter preferences saved." msgstr "تنظیمات توییتر ذخیره شد." -msgid "You can't register if you don't agree to the license." +msgid "You cannot register if you do not agree to the license." msgstr "" msgid "Something weird happened." msgstr "" -msgid "Couldn't link your Twitter account." -msgstr "" +#, fuzzy +msgid "Could not link your Twitter account." +msgstr "حساب کاربری توییتر متصل شد" msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +msgid "Couldn't link your Twitter account." +msgstr "" + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -139,7 +143,7 @@ msgstr "ایجاد یک کاربر جدید با این نام مستعار." msgid "New nickname" msgstr "نام مستعار جدید" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" msgctxt "LABEL" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index c1761cead4..512cde83fc 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -108,13 +108,15 @@ msgstr "Impossible de sauvegarder les préférences Twitter." msgid "Twitter preferences saved." msgstr "Préférences Twitter enregistrées." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." msgid "Something weird happened." msgstr "Quelque chose de bizarre s’est passé." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "Impossible de lier votre compte Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." @@ -122,6 +124,9 @@ msgstr "" "Impossible de lier votre compte Twitter : le jeton d’authentification ne " "correspond pas." +msgid "Couldn't link your Twitter account." +msgstr "Impossible de lier votre compte Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -157,7 +162,8 @@ msgstr "Créer un nouvel utilisateur avec ce pseudonyme." msgid "New nickname" msgstr "Nouveau pseudonyme" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" msgctxt "LABEL" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index bd1a1f52bf..7e909a8b0a 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -105,18 +105,23 @@ msgstr "Non poteva salveguardar le preferentias de Twitter." msgid "Twitter preferences saved." msgstr "Preferentias de Twitter salveguardate." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." msgid "Something weird happened." msgstr "Qualcosa de bizarre occurreva." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "Non poteva ligar a tu conto de Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "Non poteva ligar a tu conto de Twitter: oauth_token non corresponde." +msgid "Couldn't link your Twitter account." +msgstr "Non poteva ligar a tu conto de Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -151,7 +156,8 @@ msgstr "Crear un nove usator con iste pseudonymo." msgid "New nickname" msgstr "Nove pseudonymo" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusculas o numeros, sin punctuation o spatios" msgctxt "LABEL" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index f3accde8b1..87f7a43363 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -105,13 +105,15 @@ msgstr "Не можев да ги зачувам нагодувањата за T msgid "Twitter preferences saved." msgstr "Нагодувањата за Twitter се зачувани." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Не можете да се регистрирате ако не се согласувате со лиценцата." msgid "Something weird happened." msgstr "Се случи нешто чудно." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "Не можам да ја поврзам Вашата сметка на Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." @@ -119,6 +121,9 @@ msgstr "" "Не можев да ја поврзам Вашата сметка на Twitter: несогласување со " "oauth_token." +msgid "Couldn't link your Twitter account." +msgstr "Не можам да ја поврзам Вашата сметка на Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -152,7 +157,8 @@ msgstr "Создај нов корисник со овој прекар." msgid "New nickname" msgstr "Нов прекар" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" msgctxt "LABEL" diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po new file mode 100644 index 0000000000..8ba5848b00 --- /dev/null +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -0,0 +1,311 @@ +# Translation of StatusNet - TwitterBridge to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TwitterBridge\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-twitterbridge\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Twitter settings" +msgstr "Tetapan Twitter" + +msgid "" +"Connect your Twitter account to share your updates with your Twitter friends " +"and vice-versa." +msgstr "" +"Sambungkan akaun Twitter anda untuk berkongsi kemaskini dengan rakan-rakan " +"Twitter anda." + +msgid "Twitter account" +msgstr "Akaun Twitter" + +msgid "Connected Twitter account" +msgstr "Akaun Twitter disambungkan" + +msgid "Disconnect my account from Twitter" +msgstr "Putuskan akaun saya dari Twitter" + +msgid "Disconnecting your Twitter could make it impossible to log in! Please " +msgstr "Jika Twitter anda diputuskan, mungkin tak boleh log masuk! Tolong " + +msgid "set a password" +msgstr "tetapkan kata laluan" + +msgid " first." +msgstr " terlebih dahulu." + +#. TRANS: %1$s is the current website name. +#, php-format +msgid "" +"Keep your %1$s account but disconnect from Twitter. You can use your %1$s " +"password to log in." +msgstr "" + +msgid "Disconnect" +msgstr "Putuskan" + +msgid "Preferences" +msgstr "Keutamaan" + +msgid "Automatically send my notices to Twitter." +msgstr "Hantarkan notis saya secara automatik ke Twitter." + +msgid "Send local \"@\" replies to Twitter." +msgstr "Hantarkan balasan \"@\" setempat ke Twitter." + +msgid "Subscribe to my Twitter friends here." +msgstr "Langgan kawan-kawan Twitter saya di sini." + +msgid "Import my friends timeline." +msgstr "Import garis masa kawan-kawan saya." + +msgid "Save" +msgstr "Simpan" + +msgid "Add" +msgstr "Tambahkan" + +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +msgid "Unexpected form submission." +msgstr "" + +msgid "No Twitter connection to remove." +msgstr "Tiada sambungan Twitter untuk digugurkan." + +msgid "Couldn't remove Twitter user." +msgstr "Pengguna Twitter tidak dapat digugurkan." + +msgid "Twitter account disconnected." +msgstr "" + +msgid "Couldn't save Twitter preferences." +msgstr "" + +msgid "Twitter preferences saved." +msgstr "" + +msgid "You cannot register if you do not agree to the license." +msgstr "" + +msgid "Something weird happened." +msgstr "" + +#, fuzzy +msgid "Could not link your Twitter account." +msgstr "Log masuk dengan akaun Twitter anda" + +msgid "Couldn't link your Twitter account: oauth_token mismatch." +msgstr "" + +msgid "Couldn't link your Twitter account." +msgstr "" + +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your Twitter " +"account to a local account. You can either create a new account, or connect " +"with your existing account, if you have one." +msgstr "" + +msgid "Twitter Account Setup" +msgstr "Persediaan Akaun Twitter" + +msgid "Connection options" +msgstr "Pilihan sambungan" + +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + +msgid "Create new account" +msgstr "Buka akaun baru" + +msgid "Create a new user with this nickname." +msgstr "" + +msgid "New nickname" +msgstr "" + +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "" + +msgctxt "LABEL" +msgid "Email" +msgstr "E-mel" + +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + +msgid "Create" +msgstr "Cipta" + +msgid "Connect existing account" +msgstr "Sambungkan akaun yang sedia ada" + +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your Twitter account." +msgstr "" + +msgid "Existing nickname" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Connect" +msgstr "" + +msgid "Registration not allowed." +msgstr "" + +msgid "Not a valid invitation code." +msgstr "" + +msgid "Nickname not allowed." +msgstr "" + +msgid "Nickname already in use. Try another one." +msgstr "" + +msgid "Error registering user." +msgstr "" + +msgid "Error connecting user to Twitter." +msgstr "" + +msgid "Invalid username or password." +msgstr "" + +msgid "Twitter" +msgstr "Twitter" + +msgid "Twitter bridge settings" +msgstr "Tetapan pengantara Twitter" + +msgid "Invalid consumer key. Max length is 255 characters." +msgstr "Kunci pengguna tidak sah. Panjang maksimum 255 aksara." + +msgid "Invalid consumer secret. Max length is 255 characters." +msgstr "Rahsia pengguna tidak sah. Panjang maksimum 255 aksara." + +msgid "Twitter application settings" +msgstr "" + +msgid "Consumer key" +msgstr "Kunci pengguna" + +msgid "Consumer key assigned by Twitter" +msgstr "Kunci pengguna yang diperuntukkan oleh Twitter" + +msgid "Consumer secret" +msgstr "Rahsia pengguna" + +msgid "Consumer secret assigned by Twitter" +msgstr "Rahsia pengguna yang diperuntukkan oleh Twitter" + +msgid "Note: a global consumer key and secret are set." +msgstr "Perhatian: kunci dan rahsia pengguna global telah ditetapkan." + +msgid "Integration source" +msgstr "Sumber penyepaduan" + +msgid "Name of your Twitter application" +msgstr "Nama aplikasi Twitter anda" + +msgid "Options" +msgstr "Pilihan" + +msgid "Enable \"Sign-in with Twitter\"" +msgstr "Hidupkan \"Daftar masuk dengan Twitter\"" + +msgid "Allow users to login with their Twitter credentials" +msgstr "Benarkan pengguna log masuk dengan watikah Twitter" + +msgid "Enable Twitter import" +msgstr "Bolehkan import dari Twitter" + +msgid "" +"Allow users to import their Twitter friends' timelines. Requires daemons to " +"be manually configured." +msgstr "" +"Benarkan pengguna mengimport garis masa kawan-kawannya di Twitter. Untuk " +"itu, daemon perlu ditataletak secara manual." + +msgid "Save Twitter settings" +msgstr "Simpan tetapan Twitter" + +msgid "Login or register using Twitter" +msgstr "Log masuk atau berdaftar dengan menggunakan Twitter" + +msgid "Twitter integration options" +msgstr "Pilihan penyepaduan Twitter" + +msgid "Twitter bridge configuration" +msgstr "Tataletak pengantara Twitter" + +msgid "" +"The Twitter \"bridge\" plugin allows integration of a StatusNet instance " +"with Twitter." +msgstr "" +"Pemalam \"penghubung\" Twitter membolehkan penyepaduan peristiwa StatusNet " +"dengan Twitter." + +msgid "Already logged in." +msgstr "Sudah log masuk." + +msgid "Twitter Login" +msgstr "Log masuk Twitter" + +msgid "Login with your Twitter account" +msgstr "Log masuk dengan akaun Twitter anda" + +msgid "Sign in with Twitter" +msgstr "Daftar masuk dengan Twitter" + +#. TRANS: Mail subject after forwarding notices to Twitter has stopped working. +msgid "Your Twitter bridge has been disabled" +msgstr "" + +#. TRANS: Mail body after forwarding notices to Twitter has stopped working. +#. TRANS: %1$ is the name of the user the mail is sent to, %2$s is a URL to the +#. TRANS: Twitter settings, %3$s is the StatusNet sitename. +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. We no longer seem to have permission to update your Twitter " +"status. Did you maybe revoke %3$s's access?\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s" +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. +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 0ac0f631fd..45e39e7831 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -107,13 +107,15 @@ msgstr "Het was niet mogelijk de Twittervoorkeuren op te slaan." msgid "Twitter preferences saved." msgstr "De Twitterinstellingen zijn opgeslagen." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." msgid "Something weird happened." msgstr "Er is iets vreemds gebeurd." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." msgid "Couldn't link your Twitter account: oauth_token mismatch." @@ -121,6 +123,9 @@ msgstr "" "Het was niet mogelijk uw Twittergebruiker te koppelen: het oauth_token kwam " "niet overeen." +msgid "Couldn't link your Twitter account." +msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -154,15 +159,16 @@ msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." msgid "New nickname" msgstr "Nieuwe gebruikersnaam" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." msgctxt "LABEL" msgid "Email" -msgstr "" +msgstr "E-mail" msgid "Used only for updates, announcements, and password recovery" -msgstr "" +msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel." msgid "Create" msgstr "Aanmaken" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 1cecaf916c..e95e14015a 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -101,18 +101,23 @@ msgstr "Twitter tercihleri kaydedilemedi." msgid "Twitter preferences saved." msgstr "Twitter tercihleriniz kaydedildi." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "Something weird happened." msgstr "Garip bir şeyler oldu." -msgid "Couldn't link your Twitter account." -msgstr "" +#, fuzzy +msgid "Could not link your Twitter account." +msgstr "Twitter hesabınızla giriş yapın" msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" +msgid "Couldn't link your Twitter account." +msgstr "" + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -146,7 +151,8 @@ msgstr "Bu kullanıcı adıyla yeni bir kullanıcı oluştur." msgid "New nickname" msgstr "Yeni kullanıcı adı" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 tane küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " "verilmez" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index aa53b3b976..c50e2640ce 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:48+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -106,19 +106,24 @@ msgstr "Не можу зберегти налаштування Twitter." msgid "Twitter preferences saved." msgstr "Налаштування Twitter збережено." -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." msgid "Something weird happened." msgstr "Сталося щось незрозуміле." -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "Не вдається підключити ваш акаунт Twitter." msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "" "Не вдається підключити ваш акаунт Twitter: невідповідність oauth_token." +msgid "Couldn't link your Twitter account." +msgstr "Не вдається підключити ваш акаунт Twitter." + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -152,7 +157,8 @@ msgstr "Створити нового користувача з цим нікн msgid "New nickname" msgstr "Новий нікнейм" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index ae75e13b4c..287f1ad7f8 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:49+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 11:25:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -102,18 +102,23 @@ msgstr "无法保存 Twitter 参数设置。" msgid "Twitter preferences saved." msgstr "已保存 Twitter 参数设置。" -msgid "You can't register if you don't agree to the license." +#, fuzzy +msgid "You cannot register if you do not agree to the license." msgstr "你必须同意许可协议才能注册。" msgid "Something weird happened." msgstr "发生了很诡异的事情。" -msgid "Couldn't link your Twitter account." +#, fuzzy +msgid "Could not link your Twitter account." msgstr "无法连接你的 Twitter 帐号。" msgid "Couldn't link your Twitter account: oauth_token mismatch." msgstr "无法连接你的 Twitter 帐号:oauth_token 不符。" +msgid "Couldn't link your Twitter account." +msgstr "无法连接你的 Twitter 帐号。" + #, php-format msgid "" "This is the first time you've logged into %s so we must connect your Twitter " @@ -146,7 +151,8 @@ msgstr "以此昵称创建新帐户" msgid "New nickname" msgstr "新昵称" -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#, fuzzy +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 到 64 个小写字母或数字,不包含标点或空格" msgctxt "LABEL" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index 528fd567f5..30e0af7022 100644 --- a/plugins/UserFlag/locale/UserFlag.pot +++ b/plugins/UserFlag/locale/UserFlag.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 8b6158af3f..1e4d4c1bad 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index a3d55a63e2..1797c8e03a 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index 334ea1c83d..fba8adc01e 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index e360e21a99..399451b2a3 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index 8b5cf830aa..3ef3e9dfe5 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 4b90abbba2..ddcd4ea648 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -54,10 +54,10 @@ msgid "Clear all flags" msgstr "Alle markeringen wissen" msgid "Not logged in." -msgstr "" +msgstr "Niet aangemeld." msgid "You cannot review profile flags." -msgstr "" +msgstr "U kunt gemarkeerde profielen niet controleren." #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index 603f90c5cd..025b76dc6e 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index a57127c91e..22eb4c877f 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index 11c00d987e..2554b26e3c 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index defe557b98..29567ebb1f 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po index b2e717a36a..3d212c989d 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index 4e336dafb2..204061040c 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index 719942ac3c..4e299cf4a1 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:50+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index 3f7f554508..23e669ec70 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index b3691bbaad..e40d8f67b8 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index 0f598f538b..979933e3cd 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index 74ac22bc4f..38ca2a2f0d 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index 8a0cd3f070..b0e83de4ce 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index d6e6911d7b..28816b59d1 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index a9bb69dc40..8cc75b802d 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index 9d3ef5c7ab..bedafcdb94 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index 8ba2578f39..ab1a89eb67 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index e828212d47..b8e6174a45 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po new file mode 100644 index 0000000000..5bd9ba40dd --- /dev/null +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - UserLimit to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserLimit\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-userlimit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#, php-format +msgid "Cannot register; maximum number of users (%d) reached." +msgstr "Tidak boleh berdaftar; bilangan pengguna maksimum (%d) dicapai." + +msgid "Limit the number of users who can register." +msgstr "Hadkan jumlah pengguna yang boleh berdaftar." diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index 3de33b8599..be44b2f336 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index bc42185ab2..d6a6da34e6 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" @@ -24,6 +24,7 @@ msgstr "" #, php-format msgid "Cannot register; maximum number of users (%d) reached." msgstr "" +"Registreren is niet mogelijk. Het maximale aantal gebruikers (%d) is bereikt." msgid "Limit the number of users who can register." msgstr "Limiteert het aantal gebruikers dat kan registreren." diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index 13e80c53db..00ae889baa 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index 777ab0ec1d..b41c1dba15 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index c274f0d4e2..5081e8c2b9 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index 04a5f9455c..e75af41faf 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index f6a82bc076..30e7b9dab1 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index 064336c6d8..8a812ef456 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:51+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:07+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 6256df9ce5..dce931bc93 100644 --- a/plugins/WikiHashtags/locale/WikiHashtags.pot +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po new file mode 100644 index 0000000000..5089ff9d75 --- /dev/null +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -0,0 +1,43 @@ +# Translation of StatusNet - WikiHashtags to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHashtags\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-31 21:41:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-wikihashtags\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#, php-format +msgid "Edit the article for #%s on WikiHashtags" +msgstr "Sunting rencana untuk #%s di WikiHashtags" + +msgid "Edit" +msgstr "Sunting" + +msgid "Shared under the terms of the GNU Free Documentation License" +msgstr "Dikongsikan di bawah terma-terma Lesen Dokumentasi Bebas GNU" + +#, php-format +msgid "Start the article for #%s on WikiHashtags" +msgstr "Cipta rencana untuk #%s di WikiHashtags" + +msgid "" +"Gets hashtag descriptions from WikiHashtags." +msgstr "" +"Mendapatkan keterangan hashtag dari WikiHashtags." diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index 5d6f51fb6d..5261011712 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" @@ -23,17 +23,17 @@ msgstr "" #, php-format msgid "Edit the article for #%s on WikiHashtags" -msgstr "" +msgstr "Het artikel voor #%s op WikiHashtags bewerken" msgid "Edit" -msgstr "" +msgstr "Bewerken" msgid "Shared under the terms of the GNU Free Documentation License" -msgstr "" +msgstr "Gedeeld onder de voorwaarden van de GNU Free Documentation License" #, php-format msgid "Start the article for #%s on WikiHashtags" -msgstr "" +msgstr "Het artikel voor #%s op WikiHashtags aanmaken" msgid "" "Gets hashtag descriptions from \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index 919577baca..00b9df29d3 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index 2d2108a9d2..6a4b98b1f0 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 831f366d3d..845b603e33 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po new file mode 100644 index 0000000000..9b07452d7c --- /dev/null +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -0,0 +1,37 @@ +# Translation of StatusNet - WikiHowProfile to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - WikiHowProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "" +"Fetches avatar and other profile information for WikiHow users when setting " +"up an account via OpenID." +msgstr "" +"Mengambil avatar dan maklumat profil yang lain untuk pengguna WikiHow " +"apabila membuka akaun melalui OpenID." + +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL avatar %s tidak sah." + +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Avatar tidak dapat diambil dari %s." diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index 70bfd0ce43..190d9726e6 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index 899bc0e778..35a22a3f5f 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index cf6dc96ef0..0d15329a36 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index b169550c20..ee83e0b761 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:36+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index f317b65c87..af655920ec 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index 7bc9a391fc..8ac29f6e63 100644 --- a/plugins/XCache/locale/XCache.pot +++ b/plugins/XCache/locale/XCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index 303a6ea91f..1ea6f461e7 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index c055206eda..31213f5a31 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:53+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po index c60e2f1fcf..e670932490 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index b79b0e00bc..d981d1d54c 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index 41f2b03386..97c143164c 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po index 82bc084bff..85c89a6662 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index fb2b8bd4fc..47a1a8c77b 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index 109e480c5a..05c3feb9c4 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index b7fb5f068d..5276a1b094 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po new file mode 100644 index 0000000000..1110ac9843 --- /dev/null +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - XCache to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - XCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-xcache\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "" +"Use the XCache variable cache to " +"cache query results." +msgstr "" +"Gunakan ''cache'' pembolehubah XCache untuk menyimpan hasil pertanyaan dalam ''cache''." diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index 44164f816a..267a24f0c3 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index dc91c82f72..bc52e7541f 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po index 2d743d32a1..757cacdd3c 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index 955601ba43..9210a390cb 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index 884a76b1ab..9df02fac0a 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index f6d91b62fd..15c8c7a6fd 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index 5c3cabe1f8..d1abd353ca 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index c73cb0791b..9a84c7fcc8 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:54+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/Xmpp/locale/Xmpp.pot b/plugins/Xmpp/locale/Xmpp.pot index 6a8325b9d1..42ed40660f 100644 --- a/plugins/Xmpp/locale/Xmpp.pot +++ b/plugins/Xmpp/locale/Xmpp.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index 085a94e834..b5f520ba82 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index 2eaee405ee..9b4fbeb8dd 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po new file mode 100644 index 0000000000..224eff826b --- /dev/null +++ b/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - Xmpp to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Xmpp\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-xmpp\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Send me a message to post a notice" +msgstr "Hantarkan pesanan kepada saya untuk mengirim notis" + +msgid "XMPP/Jabber/GTalk" +msgstr "XMPP/Jabber/GTalk" + +#. TRANS: %s is a notice ID. +#, php-format +msgid "[%s]" +msgstr "[%s]" + +msgid "" +"The XMPP plugin allows users to send and receive notices over the XMPP/" +"Jabber network." +msgstr "" +"Pemalam XMPP membolehkan pengguna menghantar dan menerima notis menerusi " +"rangkaian XMPP/Jabber." diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index 3e2da9ed4f..23d937cbe3 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -30,7 +30,7 @@ msgstr "XMPP/Jabber/Google Talk" #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" -msgstr "" +msgstr "[%s]" msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" diff --git a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po index dcc12567b3..06a788e745 100644 --- a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po index fa9f0423d5..b5a862337a 100644 --- a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po index 51744ce840..3ab751980b 100644 --- a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po index 8fb22e06e5..1971185395 100644 --- a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:55+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 16:22:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 160ebea29a..320bb060f8 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po index 6150b31913..c67c4f92d5 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:42+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 2cf43eecb8..17faea5d1a 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:58+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:42+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po index 8471582ad0..727110c887 100644 --- a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 6c83643966..1c007ad5d6 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index 83c4e93a49..f5de1ddcde 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..381a6d3127 --- /dev/null +++ b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po @@ -0,0 +1,207 @@ +# Translation of StatusNet - YammerImport to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Connect to Yammer" +msgstr "" + +msgid "Yammer Import" +msgstr "Import dari Yammer" + +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" + +msgid "Paused from admin panel." +msgstr "Berhenti dari panel pentadbir." + +msgid "Yammer import" +msgstr "Import dari Yammer" + +msgid "Yammer" +msgstr "Yammer" + +msgid "Expertise:" +msgstr "Kepakaran:" + +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL avatar %s tidak sah." + +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Avatar tidak dapat diambil dari %s." + +msgid "Start authentication" +msgstr "Mulakan pengesahan" + +msgid "Request authorization to connect to Yammer account" +msgstr "Minta kebenaran untuk bersambung dengan akaun Yammer" + +msgid "Change API key" +msgstr "Tukar kunci API" + +msgid "Initialize" +msgstr "Mulakan" + +msgid "No import running" +msgstr "Proses import tidak berjalan" + +msgid "Initiated Yammer server connection..." +msgstr "Sambungan pelayan Yammer dimulakan..." + +msgid "Awaiting authorization..." +msgstr "Menunggu kebenaran..." + +msgid "Connected." +msgstr "Bersambung." + +msgid "Import user accounts" +msgstr "Import akaun pengguna" + +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "" + +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "" + +msgid "Import user groups" +msgstr "" + +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "" + +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "" + +msgid "Prepare public notices for import" +msgstr "" + +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "" + +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "" + +msgid "Import public notices" +msgstr "" + +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "" + +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "" + +msgid "Done" +msgstr "Siap" + +msgid "Import is complete!" +msgstr "Proses import selesai!" + +msgid "Import status" +msgstr "" + +msgid "Waiting..." +msgstr "Menunggu..." + +msgid "Reset import state" +msgstr "" + +msgid "Pause import" +msgstr "Hentikan import" + +#, php-format +msgid "Encountered error \"%s\"" +msgstr "" + +msgid "Paused" +msgstr "Terhenti" + +msgid "Continue" +msgstr "Sambung" + +msgid "Abort import" +msgstr "" + +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" + +msgid "Open Yammer authentication window" +msgstr "" + +msgid "Copy the verification code you are given below:" +msgstr "" + +msgid "Verification code:" +msgstr "" + +msgid "Save code and begin import" +msgstr "" + +msgid "Yammer API registration" +msgstr "" + +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" + +msgid "Open Yammer application registration form" +msgstr "" + +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" + +msgid "Consumer key:" +msgstr "Kunci pengguna:" + +msgid "Consumer secret:" +msgstr "Rahsia pengguna:" + +msgid "Save" +msgstr "Simpan" + +msgid "Save these consumer keys" +msgstr "Simpan kunci pengguna ini" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index 97ecc4936a..b1251b1eef 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po index 73a3ad1d01..503a3de0d3 100644 --- a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index a5b8db6327..462dacfa69 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 5b6f16d1aa..85fec7f670 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:59+0000\n" +"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"PO-Revision-Date: 2011-04-01 20:50:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" From a466d4573a44bab6a0e72d001f5bd4f3f9652505 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 1 Apr 2011 23:40:20 +0200 Subject: [PATCH 35/52] Fix incorrect parameter numbering. --- lib/implugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/implugin.php b/lib/implugin.php index abe09da4f7..d096c41a28 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -262,9 +262,9 @@ abstract class ImPlugin extends Plugin // TRANS: Body text for confirmation code e-mail. // TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, // TRANS: %3$s is the display name of an IM plugin. - $body = sprintf(_('User "%1$s" on %2$s has said that your %2$s screenname belongs to them. ' . + $body = sprintf(_('User "%1$s" on %2$s has said that your %3$s screenname belongs to them. ' . 'If that is true, you can confirm by clicking on this URL: ' . - '%3$s' . + '%4$s' . ' . (If you cannot click it, copy-and-paste it into the ' . 'address bar of your browser). If that user is not you, ' . 'or if you did not request this confirmation, just ignore this message.'), From fec3edee45b67205f7d6cebd33b35594d73525f7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Apr 2011 01:09:02 +0200 Subject: [PATCH 36/52] Fix several L10n and i18n issues. Add dummy method MessageListItem::messageListItemDummyMessages() to allow xgettext to add possible sources to POT files. Mark a few i18n issues as FIXME as well as some messages for which the use case was not clear to me. Merged some code on multiple lines into one. Translator documentation added. Remove superfluous whiteapace. --- lib/mailbox.php | 11 +++++------ lib/mailboxmenu.php | 16 +++++++++------- lib/mailhandler.php | 16 +++++++++++----- lib/messageform.php | 16 ++++++---------- lib/messagelist.php | 10 +++++----- lib/messagelistitem.php | 29 ++++++++++++++++++++++++++--- lib/microappplugin.php | 41 ++++++++++++++++++----------------------- lib/noticelistitem.php | 29 +++++++++++++++++++++-------- 8 files changed, 101 insertions(+), 67 deletions(-) diff --git a/lib/mailbox.php b/lib/mailbox.php index e9e4f78c6b..7c6567c6c1 100644 --- a/lib/mailbox.php +++ b/lib/mailbox.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @see InboxAction * @see OutboxAction */ - class MailboxAction extends CurrentUserDesignAction { var $page = null; @@ -71,12 +70,12 @@ class MailboxAction extends CurrentUserDesignAction * * @return void */ - function handle($args) { parent::handle($args); if (!$this->user) { + // TRANS: Client error displayed when trying to access a mailbox without providing a user. $this->clientError(_('No such user.'), 404); return; } @@ -84,6 +83,7 @@ class MailboxAction extends CurrentUserDesignAction $cur = common_current_user(); if (!$cur || $cur->id != $this->user->id) { + // TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. $this->clientError(_('Only the user can read their own mailboxes.'), 403); return; @@ -114,8 +114,9 @@ class MailboxAction extends CurrentUserDesignAction $this->trimmed('action'), array('nickname' => $this->user->nickname)); } else { - $this->element('p', - 'guide', + $this->element('p', + 'guide', + // TRANS: Message displayed when there are no private messages in the inbox of a user. _('You have no private messages. '. 'You can send private message to engage other users in conversation. '. 'People can send you messages for your eyes only.')); @@ -139,7 +140,6 @@ class MailboxAction extends CurrentUserDesignAction * * @return void */ - function showPageNotice() { $instr = $this->getInstructions(); @@ -157,7 +157,6 @@ class MailboxAction extends CurrentUserDesignAction * * @return boolean */ - function isReadOnly($args) { return true; diff --git a/lib/mailboxmenu.php b/lib/mailboxmenu.php index d2d3607dce..49e7dce21a 100644 --- a/lib/mailboxmenu.php +++ b/lib/mailboxmenu.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Private mailboxes menu - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class MailboxMenu extends Menu { function show() @@ -56,15 +55,18 @@ class MailboxMenu extends Menu $this->item('inbox', array('nickname' => $nickname), - _('Inbox'), - _('Your incoming messages')); + // TRANS: Menu item in mailbox menu. Leads to incoming private messages. + _m('MENU','Inbox'), + // TRANS: Menu item title in mailbox menu. Leads to incoming private messages. + _('Your incoming messages.')); $this->item('outbox', array('nickname' => $nickname), - _('Outbox'), - _('Your sent messages')); + // TRANS: Menu item in mailbox menu. Leads to outgoing private messages. + _m('MENU','Outbox'), + // TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. + _('Your sent messages.')); $this->out->elementEnd('ul'); } - } diff --git a/lib/mailhandler.php b/lib/mailhandler.php index bbeb69a8f9..65c5622de3 100644 --- a/lib/mailhandler.php +++ b/lib/mailhandler.php @@ -21,7 +21,7 @@ require_once(INSTALLDIR . '/lib/mail.php'); require_once(INSTALLDIR . '/lib/mediafile.php'); require_once('Mail/mimeDecode.php'); -// FIXME: we use both Mail_mimeDecode and mailparse +// @todo FIXME: we use both Mail_mimeDecode and mailparse // Need to move everything to mailparse class MailHandler @@ -34,19 +34,23 @@ class MailHandler { list($from, $to, $msg, $attachments) = $this->parse_message($rawmessage); if (!$from || !$to || !$msg) { + // TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. $this->error(null, _('Could not parse message.')); } common_log(LOG_INFO, "Mail from $from to $to with ".count($attachments) .' attachment(s): ' .substr($msg, 0, 20)); $user = $this->user_from_header($from); if (!$user) { + // TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. $this->error($from, _('Not a registered user.')); return false; } if (!$this->user_match_to($user, $to)) { + // TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. $this->error($from, _('Sorry, that is not your incoming email address.')); return false; } if (!$user->emailpost) { + // TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. $this->error($from, _('Sorry, no incoming email allowed.')); return false; } @@ -57,7 +61,8 @@ class MailHandler $msg = $this->cleanup_msg($msg); $msg = $user->shortenLinks($msg); if (Notice::contentTooLong($msg)) { - $this->error($from, sprintf(_('That\'s too long. Maximum notice size is %d character.', + // TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. + $this->error($from, sprintf(_m('That\'s too long. Maximum notice size is %d character.', 'That\'s too long. Maximum notice size is %d characters.', Notice::maxContent()), Notice::maxContent())); @@ -66,7 +71,6 @@ class MailHandler $mediafiles = array(); foreach($attachments as $attachment){ - $mf = null; try { @@ -137,9 +141,9 @@ class MailHandler function respond($from, $to, $response) { - $headers['From'] = $to; $headers['To'] = $from; + // TRANS: E-mail subject for reply to an e-mail command. $headers['Subject'] = _('Command complete'); return mail_send(array($from), $headers, $response); @@ -226,7 +230,9 @@ class MailHandler function unsupported_type($type) { - $this->error(null, sprintf(_('Unsupported message type: %s'), $type)); + // TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. + // TRANS: %s is the unsupported type. + $this->error(null, sprintf(_('Unsupported message type: %s.'), $type)); } function cleanup_msg($msg) diff --git a/lib/messageform.php b/lib/messageform.php index 733e83cd15..bd46d7389d 100644 --- a/lib/messageform.php +++ b/lib/messageform.php @@ -46,19 +46,16 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see HTMLOutputter */ - class MessageForm extends Form { /** * User to send a direct message to */ - var $to = null; /** * Pre-filled content of the form */ - var $content = null; /** @@ -68,7 +65,6 @@ class MessageForm extends Form * @param User $to user to send a message to * @param string $content content to pre-fill */ - function __construct($out=null, $to=null, $content=null) { parent::__construct($out); @@ -82,7 +78,6 @@ class MessageForm extends Form * * @return string ID of the form */ - function id() { return 'form_notice-direct'; @@ -93,7 +88,6 @@ class MessageForm extends Form * * @return string class of the form */ - function formClass() { return 'form_notice ajax-notice'; @@ -104,7 +98,6 @@ class MessageForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('newmessage'); @@ -117,6 +110,7 @@ class MessageForm extends Form */ function formLegend() { + // TRANS: Form legend for direct notice. $this->out->element('legend', null, _('Send a direct notice')); } @@ -125,7 +119,6 @@ class MessageForm extends Form * * @return void */ - function formData() { $user = common_current_user(); @@ -133,7 +126,9 @@ class MessageForm extends Form $mutual_users = $user->mutuallySubscribedUsers(); $mutual = array(); - // TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. + // TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. + // TRANS: This is the default entry in the drop-down box, doubling as instructions + // TRANS: and a brake against accidental submissions with the first user in the list. $mutual[0] = _('Select recipient:'); while ($mutual_users->fetch()) { @@ -150,6 +145,7 @@ class MessageForm extends Form $mutual[0] = _('No mutual subscribers.'); } + // TRANS: Dropdown label in direct notice form. $this->out->dropdown('to', _('To'), $mutual, null, false, ($this->to) ? $this->to->id : null); @@ -173,13 +169,13 @@ class MessageForm extends Form * * @return void */ - function formActions() { $this->out->element('input', array('id' => 'notice_action-submit', 'class' => 'submit', 'name' => 'message_send', 'type' => 'submit', + // TRANS: Button text for sending a direct notice. 'value' => _m('Send button for sending notice', 'Send'))); } } diff --git a/lib/messagelist.php b/lib/messagelist.php index da7e9a6c27..0185977285 100644 --- a/lib/messagelist.php +++ b/lib/messagelist.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * The message list widget - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - abstract class MessageList extends Widget { var $message; @@ -60,10 +59,10 @@ abstract class MessageList extends Widget parent::__construct($out); $this->message = $message; } - + /** * Show the widget - * + * * Uses newItem() to create each new item. * * @return integer count of messages seen. @@ -74,6 +73,7 @@ abstract class MessageList extends Widget $this->out->elementStart('div', array('id' =>'notices_primary')); + // TRANS: Header in message list. $this->out->element('h2', null, _('Messages')); $this->out->elementStart('ul', 'notices messages'); @@ -85,7 +85,7 @@ abstract class MessageList extends Widget if ($cnt > MESSAGES_PER_PAGE) { break; } - + $mli = $this->newItem($this->message); $mli->show(); diff --git a/lib/messagelistitem.php b/lib/messagelistitem.php index 44e6976454..ba8cf834af 100644 --- a/lib/messagelistitem.php +++ b/lib/messagelistitem.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * A single list item for showing in a message list - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -65,7 +65,6 @@ abstract class MessageListItem extends Widget * * @return void */ - function show() { $this->out->elementStart('li', array('class' => 'hentry notice', @@ -120,6 +119,7 @@ abstract class MessageListItem extends Widget if ($this->message->source) { $this->out->elementStart('span', 'source'); // FIXME: bad i18n. Device should be a parameter (from %s). + // TRANS: Followed by notice source (usually the client used to send the notice). $this->out->text(_('from')); $this->showSource($this->message->source); $this->out->elementEnd('span'); @@ -129,6 +129,29 @@ abstract class MessageListItem extends Widget $this->out->elementEnd('li'); } + /** + * Dummy method. Serves no other purpose than to make strings available used + * in self::showSource() through xgettext. + * + * @return void + */ + function messageListItemDummyMessages() + { + // A dummy array with messages. These will get extracted by xgettext and + // are used in self::showSource(). + $dummy_messages = array( + // TRANS: A possible notice source (web interface). + _m('SOURCE','web'), + // TRANS: A possible notice source (XMPP). + _m('SOURCE','xmpp'), + // TRANS: A possible notice source (e-mail). + _m('SOURCE','mail'), + // TRANS: A possible notice source (OpenMicroBlogging). + _m('SOURCE','omb'), + // TRANS: A possible notice source (Application Programming Interface). + _m('SOURCE','api'), + ); + } /** * Show the source of the message @@ -142,7 +165,7 @@ abstract class MessageListItem extends Widget */ function showSource($source) { - $source_name = _($source); + $source_name = _m('SOURCE',$source); switch ($source) { case 'web': case 'xmpp': diff --git a/lib/microappplugin.php b/lib/microappplugin.php index 0266f5184c..cd325560d3 100644 --- a/lib/microappplugin.php +++ b/lib/microappplugin.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Superclass for microapp plugin - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -39,8 +39,8 @@ if (!defined('STATUSNET')) { * * This class lets you define micro-applications with different kinds of activities. * - * The applications work more-or-less like other - * + * The applications work more-or-less like other + * * @category Microapp * @package StatusNet * @author Evan Prodromou @@ -48,7 +48,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - abstract class MicroAppPlugin extends Plugin { /** @@ -255,10 +254,9 @@ abstract class MicroAppPlugin extends Plugin * by calling the overridable $this->deleteRelated(). * * @param Notice $notice Notice being deleted - * + * * @return boolean hook value */ - function onNoticeDeleteRelated($notice) { if ($this->isMyNotice($notice)) { @@ -277,7 +275,6 @@ abstract class MicroAppPlugin extends Plugin * * @fixme WARNING WARNING WARNING this closes a 'div' that is implicitly opened in BookmarkPlugin's showNotice implementation */ - function onStartShowNoticeItem($nli) { if (!$this->isMyNotice($nli->notice)) { @@ -294,9 +291,9 @@ abstract class MicroAppPlugin extends Plugin $nli->showNoticeLocation(); $nli->showContext(); $nli->showRepeat(); - + $out->elementEnd('div'); - + $nli->showNoticeOptions(); return false; @@ -310,7 +307,6 @@ abstract class MicroAppPlugin extends Plugin * * @return boolean hook value */ - function onStartActivityObjectFromNotice($notice, &$object) { if ($this->isMyNotice($notice)) { @@ -329,7 +325,6 @@ abstract class MicroAppPlugin extends Plugin * * @return boolean hook value */ - function onStartHandleFeedEntryWithProfile($activity, $oprofile) { if ($this->isMyActivity($activity)) { @@ -337,7 +332,8 @@ abstract class MicroAppPlugin extends Plugin $actor = $oprofile->checkAuthorship($activity); if (empty($actor)) { - throw new ClientException(_('Can\'t get author for activity.')); + // TRANS: Client exception thrown when no author for an activity was found. + throw new ClientException(_('Cannot get author for activity.')); } $object = $activity->objects[0]; @@ -368,31 +364,32 @@ abstract class MicroAppPlugin extends Plugin function onStartHandleSalmonTarget($activity, $target) { if ($this->isMyActivity($activity)) { - $this->log(LOG_INFO, "Checking {$activity->id} as a valid Salmon slap."); if ($target instanceof User_group) { $uri = $target->getUri(); if (!in_array($uri, $activity->context->attention)) { - throw new ClientException(_("Bookmark not posted ". - "to this group.")); + // @todo FIXME: please document (i18n). + // TRANS: Client exception. + throw new ClientException(_('Bookmark not posted to this group.')); } } else if ($target instanceof User) { $uri = $target->uri; $original = null; if (!empty($activity->context->replyToID)) { - $original = Notice::staticGet('uri', - $activity->context->replyToID); + $original = Notice::staticGet('uri', + $activity->context->replyToID); } if (!in_array($uri, $activity->context->attention) && (empty($original) || $original->profile_id != $target->id)) { - throw new ClientException(_("Object not posted ". - "to this user.")); + // @todo FIXME: Please document (i18n). + // TRANS: Client exception. + throw new ClientException(_('Object not posted to this user.')); } } else { - throw new ServerException(_("Don't know how to handle ". - "this kind of target.")); + // TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. + throw new ServerException(_('Do not know how to handle this kind of target.')); } $actor = Ostatus_profile::ensureActivityObjectProfile($activity->actor); @@ -422,7 +419,6 @@ abstract class MicroAppPlugin extends Plugin * * @return boolean hook value */ - function onStartAtomPubNewActivity(&$activity, $user, &$notice) { if ($this->isMyActivity($activity)) { @@ -451,7 +447,6 @@ abstract class MicroAppPlugin extends Plugin * * @return boolean hook value */ - function onStartImportActivity($user, $author, $activity, $trusted, &$done) { if ($this->isMyActivity($activity)) { diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index 5942415c51..aafa935140 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -4,7 +4,7 @@ * Copyright (C) 2010, StatusNet, Inc. * * An item in a notice list - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -348,15 +348,20 @@ class NoticeListItem extends Widget if (empty($name)) { $latdms = $this->decimalDegreesToDMS(abs($lat)); $londms = $this->decimalDegreesToDMS(abs($lon)); - // TRANS: Used in coordinates as abbreviation of north + // TRANS: Used in coordinates as abbreviation of north. $north = _('N'); - // TRANS: Used in coordinates as abbreviation of south + // TRANS: Used in coordinates as abbreviation of south. $south = _('S'); - // TRANS: Used in coordinates as abbreviation of east + // TRANS: Used in coordinates as abbreviation of east. $east = _('E'); - // TRANS: Used in coordinates as abbreviation of west + // TRANS: Used in coordinates as abbreviation of west. $west = _('W'); $name = sprintf( + // TRANS: Coordinates message. + // TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, + // TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, + // TRANS: %5$s is longitude degrees, %6$s is longitude minutes, + // TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, _('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'), $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south), $londms['deg'],$londms['min'], $londms['sec'],($lon>0? $east:$west)); @@ -366,6 +371,7 @@ class NoticeListItem extends Widget $this->out->text(' '); $this->out->elementStart('span', array('class' => 'location')); + // TRANS: Followed by geo location. $this->out->text(_('at')); $this->out->text(' '); if (empty($url)) { @@ -414,10 +420,11 @@ class NoticeListItem extends Widget $ns = $this->notice->getSource(); if ($ns) { - $source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _('web')) : _($ns->name); + $source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _m('SOURCE','web')) : _($ns->name); $this->out->text(' '); $this->out->elementStart('span', 'source'); // FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s). + // TRANS: Followed by notice source. $this->out->text(_('from')); $this->out->text(' '); @@ -434,7 +441,6 @@ class NoticeListItem extends Widget // if $ns->name and $ns->url are populated we have // configured a source attr somewhere if (!empty($name) && !empty($url)) { - $this->out->elementStart('span', 'device'); $attrs = array( @@ -479,6 +485,7 @@ class NoticeListItem extends Widget array( 'href' => $convurl.'#notice-'.$this->notice->id, 'class' => 'response'), + // TRANS: Addition in notice list item if notice is part of a conversation. _('in context') ); } else { @@ -513,6 +520,7 @@ class NoticeListItem extends Widget $this->out->elementStart('span', 'repeat vcard'); + // TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. $this->out->raw(_('Repeated by')); $this->out->elementStart('a', $attrs); @@ -539,7 +547,9 @@ class NoticeListItem extends Widget array('replyto' => $this->profile->nickname, 'inreplyto' => $this->notice->id)); $this->out->elementStart('a', array('href' => $reply_url, 'class' => 'notice_reply', + // TRANS: Link title in notice list item to reply to a notice. 'title' => _('Reply to this notice'))); + // TRANS: Link text in notice list item to reply to a notice. $this->out->text(_('Reply')); $this->out->text(' '); $this->out->element('span', 'notice_id', $this->notice->id); @@ -565,7 +575,10 @@ class NoticeListItem extends Widget array('notice' => $todel->id)); $this->out->element('a', array('href' => $deleteurl, 'class' => 'notice_delete', - 'title' => _('Delete this notice')), _('Delete')); + // TRANS: Link title in notice list item to delete a notice. + 'title' => _('Delete this notice')), + // TRANS: Link text in notice list item to delete a notice. + _('Delete')); } } From b1d451f98bb1ac7567be68cb1168b69447b3bef0 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Apr 2011 14:24:55 +0200 Subject: [PATCH 37/52] Upadte translator documentation. Add FIXME for missing class documentation. i18n/L10n tweaks. Superfluous whitespace removed. --- lib/noticeplaceholderform.php | 1 + lib/nudgeform.php | 16 ++++++++-------- lib/oauthstore.php | 17 +++++++++-------- lib/pluginlist.php | 4 ++-- lib/redirectingaction.php | 14 ++++++-------- lib/repeatform.php | 15 +++++---------- lib/revokeroleform.php | 5 +---- lib/sandboxform.php | 8 +++----- lib/section.php | 5 +++-- lib/silenceform.php | 8 +++----- lib/subscribeform.php | 17 +++++------------ lib/subscriberspeopleselftagcloudsection.php | 8 +------- lib/subscriberspeopletagcloudsection.php | 3 +-- lib/subscriptionlist.php | 4 +++- lib/subscriptionspeopleselftagcloudsection.php | 7 +------ lib/subscriptionspeopletagcloudsection.php | 3 +-- 16 files changed, 53 insertions(+), 82 deletions(-) diff --git a/lib/noticeplaceholderform.php b/lib/noticeplaceholderform.php index 788a2021d9..87e64fb8d0 100644 --- a/lib/noticeplaceholderform.php +++ b/lib/noticeplaceholderform.php @@ -51,6 +51,7 @@ class NoticePlaceholderForm extends Widget function show() { // Similar to that for inline replies, but not quite! + // TRANS: Field label for notice text. $placeholder = _('Update your status...'); $this->out->elementStart('div', 'form_notice_placeholder'); $this->out->element('input', array('class' => 'placeholder', diff --git a/lib/nudgeform.php b/lib/nudgeform.php index 18a008122d..9a86576a89 100644 --- a/lib/nudgeform.php +++ b/lib/nudgeform.php @@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see DisfavorForm */ - class NudgeForm extends Form { /** * Profile of user to nudge */ - var $profile = null; /** @@ -61,7 +59,6 @@ class NudgeForm extends Form * @param HTMLOutputter $out output channel * @param Profile $profile profile of user to nudge */ - function __construct($out=null, $profile=null) { parent::__construct($out); @@ -74,7 +71,6 @@ class NudgeForm extends Form * * @return int ID of the form */ - function id() { return 'form_user_nudge'; @@ -86,7 +82,6 @@ class NudgeForm extends Form * * @return string of the form class */ - function formClass() { return 'form_user_nudge ajax'; @@ -98,7 +93,6 @@ class NudgeForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('nudge', @@ -113,6 +107,7 @@ class NudgeForm extends Form */ function formLegend() { + // TRANS: Form legend of form to nudge/ping another user. $this->out->element('legend', null, _('Nudge this user')); } @@ -122,9 +117,14 @@ class NudgeForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Nudge'), 'submit', null, _('Send a nudge to this user')); + $this->out->submit('submit', + // TRANS: Button text to nudge/ping another user. + _m('BUTTON','Nudge'), + 'submit', + null, + // TRANS: Button title to nudge/ping another user. + _('Send a nudge to this user.')); } } diff --git a/lib/oauthstore.php b/lib/oauthstore.php index a52f6cee33..570343b82d 100644 --- a/lib/oauthstore.php +++ b/lib/oauthstore.php @@ -21,9 +21,9 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once 'libomb/datastore.php'; +// @todo FIXME: Class documentation missing. class StatusNetOAuthDataStore extends OAuthDataStore { - // We keep a record of who's contacted us function lookup_consumer($consumer_key) { @@ -69,9 +69,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore // http://oauth.net/core/1.0/#nonce // "The Consumer SHALL then generate a Nonce value that is unique for // all requests with that timestamp." - // XXX: It's not clear why the token is here - function lookup_nonce($consumer, $token, $nonce, $timestamp) { $n = new Nonce(); @@ -104,7 +102,6 @@ class StatusNetOAuthDataStore extends OAuthDataStore } // defined in OAuthDataStore, but not implemented anywhere - function fetch_request_token($consumer) { return $this->new_request_token($consumer); @@ -161,7 +158,6 @@ class StatusNetOAuthDataStore extends OAuthDataStore } // defined in OAuthDataStore, but not implemented anywhere - function fetch_access_token($consumer) { return $this->new_access_token($consumer); @@ -232,7 +228,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore **/ public function getProfile($identifier_uri) { /* getProfile is only used for remote profiles by libomb. - TODO: Make it work with local ones anyway. */ + @TODO: Make it work with local ones anyway. */ $remote = Remote_profile::staticGet('uri', $identifier_uri); if (!$remote) throw new Exception('No such remote profile'); $profile = Profile::staticGet('id', $remote->id); @@ -291,6 +287,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $profile->created = DB_DataObject_Cast::dateTime(); # current time $id = $profile->insert(); if (!$id) { + // TRANS: Exception thrown when creating a new profile fails in OAuth store. throw new Exception(_('Error inserting new profile.')); } $remote->id = $id; @@ -299,6 +296,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $avatar_url = $omb_profile->getAvatarURL(); if ($avatar_url) { if (!$this->add_avatar($profile, $avatar_url)) { + // TRANS: Exception thrown when creating a new avatar fails in OAuth store. throw new Exception(_('Error inserting avatar.')); } } else { @@ -314,11 +312,13 @@ class StatusNetOAuthDataStore extends OAuthDataStore if ($exists) { if (!$remote->update($orig_remote)) { + // TRANS: Exception thrown when updating a remote profile fails in OAuth store. throw new Exception(_('Error updating remote profile.')); } } else { $remote->created = DB_DataObject_Cast::dateTime(); # current time if (!$remote->insert()) { + // TRANS: Exception thrown when creating a remote profile fails in OAuth store. throw new Exception(_('Error inserting remote profile.')); } } @@ -479,6 +479,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore if (!$subscriber->hasRight(Right::SUBSCRIBE)) { common_log(LOG_INFO, __METHOD__ . ": remote subscriber banned ($subscriber_uri subbing to $subscribed_user_uri)"); + // TRANS: Error message displayed to a banned user when they try to subscribe. return _('You have been banned from subscribing.'); } @@ -504,7 +505,8 @@ class StatusNetOAuthDataStore extends OAuthDataStore if (!$result) { common_log_db_error($sub, ($sub_exists) ? 'UPDATE' : 'INSERT', __FILE__); - throw new Exception(_('Couldn\'t insert new subscription.')); + // TRANS: Exception thrown when creating a new subscription fails in OAuth store. + throw new Exception(_('Could not insert new subscription.')); return; } @@ -516,4 +518,3 @@ class StatusNetOAuthDataStore extends OAuthDataStore } } } -?> diff --git a/lib/pluginlist.php b/lib/pluginlist.php index 07a17ba397..0bd1a15355 100644 --- a/lib/pluginlist.php +++ b/lib/pluginlist.php @@ -43,7 +43,6 @@ require INSTALLDIR . "/lib/plugindisableform.php"; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class PluginList extends Widget { var $plugins = array(); @@ -116,7 +115,7 @@ class PluginListItem extends Widget $this->out->elementEnd('a'); } $this->out->elementEnd('div'); - + $form = $this->getControlForm(); $form->show(); @@ -192,6 +191,7 @@ class PluginListItem extends Widget return $found; } else { return array('name' => $this->plugin, + // TRANS: Plugin description for a disabled plugin. 'rawdescription' => _m('plugin-description', '(Plugin descriptions unavailable when disabled.)')); } diff --git a/lib/redirectingaction.php b/lib/redirectingaction.php index 3a358f891c..0827f11a0a 100644 --- a/lib/redirectingaction.php +++ b/lib/redirectingaction.php @@ -42,21 +42,18 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ - - class RedirectingAction extends Action { - /** * Redirect browser to the page our hidden parameters requested, * or if none given, to the url given by $this->defaultReturnTo(). - * + * * To be called only after successful processing. - * + * * Note: this was named returnToArgs() up through 0.9.2, which * caused problems because there's an Action::returnToArgs() * already which does something different. - * + * * @return void */ function returnToPrevious() @@ -87,11 +84,12 @@ class RedirectingAction extends Action * If we reached this form without returnto arguments, where should * we go? May be overridden by subclasses to a reasonable destination * for that action; default implementation throws an exception. - * + * * @return string URL */ function defaultReturnTo() { - $this->clientError(_("No return-to arguments.")); + // TRANS: Client error displayed when return-to was defined without a target. + $this->clientError(_('No return-to arguments.')); } } diff --git a/lib/repeatform.php b/lib/repeatform.php index 4f1c8aa320..67fc47b8de 100644 --- a/lib/repeatform.php +++ b/lib/repeatform.php @@ -40,13 +40,11 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class RepeatForm extends Form { /** * Notice to repeat */ - var $notice = null; /** @@ -55,7 +53,6 @@ class RepeatForm extends Form * @param HTMLOutputter $out output channel * @param Notice $notice notice to repeat */ - function __construct($out=null, $notice=null) { parent::__construct($out); @@ -68,7 +65,6 @@ class RepeatForm extends Form * * @return int ID of the form */ - function id() { return 'repeat-' . $this->notice->id; @@ -79,7 +75,6 @@ class RepeatForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('repeat'); @@ -90,7 +85,6 @@ class RepeatForm extends Form * * @return void */ - function sessionToken() { $this->out->hidden('token-' . $this->notice->id, @@ -104,6 +98,7 @@ class RepeatForm extends Form */ function formLegend() { + // TRANS: For legend for notice repeat form. $this->out->element('legend', null, _('Repeat this notice?')); } @@ -112,7 +107,6 @@ class RepeatForm extends Form * * @return void */ - function formData() { $this->out->hidden('notice-n'.$this->notice->id, @@ -125,11 +119,13 @@ class RepeatForm extends Form * * @return void */ - function formActions() { $this->out->submit('repeat-submit-' . $this->notice->id, - _('Yes'), 'submit', null, _('Repeat this notice')); + // TRANS: Button text to repeat a notice on notice repeat form. + _m('BUTTON','Yes'), 'submit', null, + // TRANS: Button title to repeat a notice on notice repeat form. + _('Repeat this notice.')); } /** @@ -137,7 +133,6 @@ class RepeatForm extends Form * * @return string the form's class */ - function formClass() { return 'form_repeat'; diff --git a/lib/revokeroleform.php b/lib/revokeroleform.php index ec24b99101..f33951bb40 100644 --- a/lib/revokeroleform.php +++ b/lib/revokeroleform.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * * @see UnSandboxForm */ - class RevokeRoleForm extends ProfileActionForm { function __construct($role, $label, $writer, $profile, $r2args) @@ -57,7 +56,6 @@ class RevokeRoleForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'revokerole'; @@ -68,7 +66,6 @@ class RevokeRoleForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { return $this->label; @@ -85,9 +82,9 @@ class RevokeRoleForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description of role revoke form. %s is the role to be revoked. return sprintf(_('Revoke the "%s" role from this user'), $this->label); } } diff --git a/lib/sandboxform.php b/lib/sandboxform.php index 7a98e0a5f9..d1e4fea963 100644 --- a/lib/sandboxform.php +++ b/lib/sandboxform.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * * @see UnSandboxForm */ - class SandboxForm extends ProfileActionForm { /** @@ -50,7 +49,6 @@ class SandboxForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'sandbox'; @@ -61,10 +59,10 @@ class SandboxForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Sandbox'); + // TRANS: Title of form to sandbox a user. + return _m('TITLE','Sandbox'); } /** @@ -72,9 +70,9 @@ class SandboxForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description of form to sandbox a user. return _('Sandbox this user'); } } diff --git a/lib/section.php b/lib/section.php index 53a3a70fa7..753a37efa4 100644 --- a/lib/section.php +++ b/lib/section.php @@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/widget.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class Section extends Widget { /** @@ -56,7 +55,6 @@ class Section extends Widget * @return void * @see Widget::show() */ - function show() { $this->out->elementStart('div', @@ -86,12 +84,14 @@ class Section extends Widget function title() { + // TRANS: Default title for section/sidebar widget. return _('Untitled section'); } function showContent() { $this->out->element('p', null, + // TRANS: Default content for section/sidebar widget. _('(None)')); return false; } @@ -103,6 +103,7 @@ class Section extends Widget function moreTitle() { + // TRANS: Default "More..." title for section/sidebar widget. return _('More...'); } } diff --git a/lib/silenceform.php b/lib/silenceform.php index 9673fa1208..9d05f5d09f 100644 --- a/lib/silenceform.php +++ b/lib/silenceform.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * * @see UnSilenceForm */ - class SilenceForm extends ProfileActionForm { /** @@ -50,7 +49,6 @@ class SilenceForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'silence'; @@ -61,10 +59,10 @@ class SilenceForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Silence'); + // TRANS: Title of form to silence a user. + return _m('TITLE','Silence'); } /** @@ -72,9 +70,9 @@ class SilenceForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description of form to silence a user. return _('Silence this user'); } } diff --git a/lib/subscribeform.php b/lib/subscribeform.php index 1cc5b4e48e..f10d884ed8 100644 --- a/lib/subscribeform.php +++ b/lib/subscribeform.php @@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see UnsubscribeForm */ - class SubscribeForm extends Form { /** * Profile of user to subscribe to */ - var $profile = null; /** @@ -61,7 +59,6 @@ class SubscribeForm extends Form * @param HTMLOutputter $out output channel * @param Profile $profile profile of user to subscribe to */ - function __construct($out=null, $profile=null) { parent::__construct($out); @@ -74,37 +71,31 @@ class SubscribeForm extends Form * * @return int ID of the form */ - function id() { return 'subscribe-' . $this->profile->id; } - /** * class of the form * * @return string of the form class */ - function formClass() { return 'form_user_subscribe ajax'; } - /** * Action of the form * * @return string URL of the action */ - function action() { return common_local_url('subscribe'); } - /** * Legend of the Form * @@ -112,6 +103,7 @@ class SubscribeForm extends Form */ function formLegend() { + // TRANS: Form of form to subscribe to a user. $this->out->element('legend', null, _('Subscribe to this user')); } @@ -120,7 +112,6 @@ class SubscribeForm extends Form * * @return void */ - function formData() { $this->out->hidden('subscribeto-' . $this->profile->id, @@ -133,9 +124,11 @@ class SubscribeForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Subscribe'), 'submit', null, _('Subscribe to this user')); + // TRANS: Button text to subscribe to a user. + $this->out->submit('submit', _m('BUTTON','Subscribe'), 'submit', null, + // TRANS: Button title to subscribe to a user. + _('Subscribe to this user.')); } } diff --git a/lib/subscriberspeopleselftagcloudsection.php b/lib/subscriberspeopleselftagcloudsection.php index 5a570ae282..47b94227e8 100644 --- a/lib/subscriberspeopleselftagcloudsection.php +++ b/lib/subscriberspeopleselftagcloudsection.php @@ -40,23 +40,17 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class SubscribersPeopleSelfTagCloudSection extends SubPeopleTagCloudSection { function title() { + // TRANS: Title of personal tag cloud section. return _('People Tagcloud as self-tagged'); } function query() { // return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscriber where subscribed=%d and subscribed != subscriber and tagger = tagged group by tag order by weight desc'; - - return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscriber where subscribed=%d and subscribed != subscriber and tagger = tagged and tag is not null group by tag order by weight desc'; - // return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscribed where subscriber=%d and subscribed != subscriber and tagger = tagged and tag is not null group by tag order by weight desc'; - - } } - diff --git a/lib/subscriberspeopletagcloudsection.php b/lib/subscriberspeopletagcloudsection.php index 284996b591..93cf4aa5df 100644 --- a/lib/subscriberspeopletagcloudsection.php +++ b/lib/subscriberspeopletagcloudsection.php @@ -40,11 +40,11 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class SubscribersPeopleTagCloudSection extends SubPeopleTagCloudSection { function title() { + // TRANS: Title of personal tag cloud section. return _('People Tagcloud as tagged'); } @@ -58,4 +58,3 @@ class SubscribersPeopleTagCloudSection extends SubPeopleTagCloudSection return 'select tag, count(tag) as weight from subscription left join profile_tag on subscriber=tagged and subscribed=tagger where subscribed=%d and subscriber != subscribed and tag is not null group by tag order by weight desc'; } } - diff --git a/lib/subscriptionlist.php b/lib/subscriptionlist.php index 3ca4603948..ea0aa7f1ab 100644 --- a/lib/subscriptionlist.php +++ b/lib/subscriptionlist.php @@ -1,5 +1,4 @@ isOwn()) { $this->out->element('a', array('href' => common_local_url('tagother', array('id' => $this->profile->id))), + // TRANS: Description for link to "tag other users" in widget to show a list of profiles. _('Tags')); } else { + // TRANS: Text widget to show a list of profiles with their tags. $this->out->text(_('Tags')); } if ($tags) { @@ -120,6 +121,7 @@ class SubscriptionListItem extends ProfileListItem } $this->out->elementEnd('ul'); } else { + // TRANS: Text if there are no tags in widget to show a list of profiles by tag. $this->out->text(_('(None)')); } } diff --git a/lib/subscriptionspeopleselftagcloudsection.php b/lib/subscriptionspeopleselftagcloudsection.php index 9be60dfa14..134b5c4456 100644 --- a/lib/subscriptionspeopleselftagcloudsection.php +++ b/lib/subscriptionspeopleselftagcloudsection.php @@ -40,22 +40,17 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class SubscriptionsPeopleSelfTagCloudSection extends SubPeopleTagCloudSection { function title() { + // TRANS: Title of personal tag cloud section. return _('People Tagcloud as self-tagged'); } function query() { // return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscriber where subscribed=%d and subscriber != subscribed and tagger = tagged group by tag order by weight desc'; - - - return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscribed where subscriber=%d and subscribed != subscriber and tagger = tagged and tag is not null group by tag order by weight desc'; - // return 'select tag, count(tag) as weight from subscription left join profile_tag on tagger = subscriber where subscribed=%d and subscribed != subscriber and tagger = tagged and tag is not null group by tag order by weight desc'; } } - diff --git a/lib/subscriptionspeopletagcloudsection.php b/lib/subscriptionspeopletagcloudsection.php index fde24b282e..6b888894ef 100644 --- a/lib/subscriptionspeopletagcloudsection.php +++ b/lib/subscriptionspeopletagcloudsection.php @@ -40,11 +40,11 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class SubscriptionsPeopleTagCloudSection extends SubPeopleTagCloudSection { function title() { + // TRANS: Title of personal tag cloud section. return _('People Tagcloud as tagged'); } @@ -58,4 +58,3 @@ class SubscriptionsPeopleTagCloudSection extends SubPeopleTagCloudSection return 'select tag, count(tag) as weight from subscription left join profile_tag on subscriber=tagger and subscribed=tagged where subscriber=%d and subscriber != subscribed and tag is not null group by tag order by weight desc'; } } - From ea8b4683482fec98117da73444d59bde73988361 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Apr 2011 14:43:18 +0200 Subject: [PATCH 38/52] Update translator documentation. Remove superfluous whitespace. i18n/L10n tweaks. --- lib/tagcloudsection.php | 7 +++-- lib/themeuploader.php | 60 ++++++++++++++++++++++++-------------- lib/threadednoticelist.php | 8 ++--- 3 files changed, 45 insertions(+), 30 deletions(-) diff --git a/lib/tagcloudsection.php b/lib/tagcloudsection.php index 692f5d9662..561ffb077f 100644 --- a/lib/tagcloudsection.php +++ b/lib/tagcloudsection.php @@ -45,7 +45,6 @@ define('TAGS_PER_SECTION', 20); * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class TagCloudSection extends Section { function showContent() @@ -53,7 +52,8 @@ class TagCloudSection extends Section $tags = $this->getTags(); if (!$tags) { - $this->out->element('p', null, _('None')); + // TRANS: Content displayed in a tag cloud section if there are no tags. + $this->out->element('p', null, _m('NOTAGS','None')); return false; } @@ -68,7 +68,8 @@ class TagCloudSection extends Section } if ($cnt == 0) { - $this->out->element('p', null, _('(None)')); + // TRANS: Content displayed in a tag cloud section if there are no tags. + $this->out->element('p', null, _m('NOTAGS','None')); return false; } diff --git a/lib/themeuploader.php b/lib/themeuploader.php index b7b14d7b9e..a68231d844 100644 --- a/lib/themeuploader.php +++ b/lib/themeuploader.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { /** * Encapsulation of the validation-and-save process when dealing with * a user-uploaded StatusNet theme archive... - * + * * @todo extract theme metadata from css/display.css * @todo allow saving multiple themes */ @@ -47,7 +47,8 @@ class ThemeUploader public function __construct($filename) { if (!class_exists('ZipArchive')) { - throw new Exception(_("This server cannot handle theme uploads without ZIP support.")); + // TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. + throw new Exception(_('This server cannot handle theme uploads without ZIP support.')); } $this->sourceFile = $filename; } @@ -55,10 +56,12 @@ class ThemeUploader public static function fromUpload($name) { if (!isset($_FILES[$name]['error'])) { - throw new ServerException(_("The theme file is missing or the upload failed.")); + // TRANS: Server exception thrown when uploading a theme fails. + throw new ServerException(_('The theme file is missing or the upload failed.')); } if ($_FILES[$name]['error'] != UPLOAD_ERR_OK) { - throw new ServerException(_("The theme file is missing or the upload failed.")); + // TRANS: Server exception thrown when uploading a theme fails. + throw new ServerException(_('The theme file is missing or the upload failed.')); } return new ThemeUploader($_FILES[$name]['tmp_name']); } @@ -88,7 +91,8 @@ class ThemeUploader $this->loud(); if (!$ok) { common_log(LOG_ERR, "Could not move old custom theme from $destDir to $killDir"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. + throw new ServerException(_('Failed saving theme.')); } } else { $killDir = false; @@ -99,7 +103,8 @@ class ThemeUploader $this->loud(); if (!$ok) { common_log(LOG_ERR, "Could not move saved theme from $tmpDir to $destDir"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. + throw new ServerException(_('Failed saving theme.')); } if ($killDir) { @@ -108,7 +113,7 @@ class ThemeUploader } /** - * + * */ protected function traverseArchive($zip, $outdir=false) { @@ -144,7 +149,8 @@ class ThemeUploader $commonBaseDir = $baseDir; } else { if ($commonBaseDir != $baseDir) { - throw new ClientException(_("Invalid theme: bad directory structure.")); + // TRANS: Server exception thrown when an uploaded theme has an incorrect structure. + throw new ClientException(_('Invalid theme: Bad directory structure.')); } } @@ -158,11 +164,13 @@ class ThemeUploader if ($localFile == 'css/display.css') { $hasMain = true; } - + $size = $data['size']; $estSize = $blockSize * max(1, intval(ceil($size / $blockSize))); $totalSize += $estSize; if ($totalSize > $sizeLimit) { + // TRANS: Client exception thrown when an uploaded theme is larger than the limit. + // TRANS: %d is the number of bytes of the uncompressed theme. $msg = sprintf(_m('Uploaded theme is too large; must be less than %d byte uncompressed.', 'Uploaded theme is too large; must be less than %d bytes uncompressed.', $sizeLimit), @@ -176,8 +184,9 @@ class ThemeUploader } if (!$hasMain) { - throw new ClientException(_("Invalid theme archive: " . - "missing file css/display.css")); + // TRANS: Server exception thrown when an uploaded theme is incomplete. + throw new ClientException(_('Invalid theme archive: ' . + "Missing file css/display.css")); } } @@ -216,13 +225,15 @@ class ThemeUploader { if (!preg_match('/^[a-z0-9_\.-]+$/i', $name)) { common_log(LOG_ERR, "Bad theme filename: $name"); + // TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. $msg = _("Theme contains invalid file or folder name. " . - "Stick with ASCII letters, digits, underscore, and minus sign."); + 'Stick with ASCII letters, digits, underscore, and minus sign.'); throw new ClientException($msg); } if (preg_match('/\.(php|cgi|asp|aspx|js|vb)\w/i', $name)) { common_log(LOG_ERR, "Unsafe theme filename: $name"); - $msg = _("Theme contains unsafe file extension names; may be unsafe."); + // TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. + $msg = _('Theme contains unsafe file extension names; may be unsafe.'); throw new ClientException($msg); } return true; @@ -239,8 +250,9 @@ class ThemeUploader // theme.ini exception return true; } - $msg = sprintf(_("Theme contains file of type '.%s', " . - "which is not allowed."), + // TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. + // TRANS: %s is the file type that is not allowed. + $msg = sprintf(_('Theme contains file of type ".%s", which is not allowed.'), $ext); throw new ClientException($msg); } @@ -253,11 +265,12 @@ class ThemeUploader protected function openArchive() { $zip = new ZipArchive; - $ok = $zip->open($this->sourceFile); + $ok = $zip->open($this->sourceFile); if ($ok !== true) { common_log(LOG_ERR, "Error opening theme zip archive: " . "{$this->sourceFile} code: {$ok}"); - throw new Exception(_("Error opening theme archive.")); + // TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. + throw new Exception(_('Error opening theme archive.')); } return $zip; } @@ -276,11 +289,13 @@ class ThemeUploader $this->loud(); if (!$ok) { common_log(LOG_ERR, "Failed to mkdir $dir while uploading theme"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. + throw new ServerException(_('Failed saving theme.')); } } else if (!is_dir($dir)) { common_log(LOG_ERR, "Output directory $dir not a directory while uploading theme"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. + throw new ServerException(_('Failed saving theme.')); } // ZipArchive::extractTo would be easier, but won't let us alter @@ -288,14 +303,16 @@ class ThemeUploader $in = $zip->getStream($from); if (!$in) { common_log(LOG_ERR, "Couldn't open archived file $from while uploading theme"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. + throw new ServerException(_('Failed saving theme.')); } $this->quiet(); $out = fopen($to, "wb"); $this->loud(); if (!$out) { common_log(LOG_ERR, "Couldn't open output file $to while uploading theme"); - throw new ServerException(_("Failed saving theme.")); + // TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. + throw new ServerException(_('Failed saving theme.')); } while (!feof($in)) { $buffer = fread($in, 65536); @@ -333,5 +350,4 @@ class ThemeUploader $list->close(); rmdir($dir); } - } diff --git a/lib/threadednoticelist.php b/lib/threadednoticelist.php index ce620916a1..700b6ed1ee 100644 --- a/lib/threadednoticelist.php +++ b/lib/threadednoticelist.php @@ -329,7 +329,7 @@ class ThreadedNoticeListReplyItem extends NoticeListItem function showMiniForm() { $this->out->element('input', array('class' => 'placeholder', - // TRANS: Field label for reply mini form. + // TRANS: Field label for reply mini form. 'value' => _('Write a reply...'))); } } @@ -423,8 +423,7 @@ class ThreadedNoticeListFavesItem extends NoticeListActorsItem } else { // TRANS: List message for favoured notices. // TRANS: %d is the number of users that have favoured a notice. - return sprintf(_m('FAVELIST', - 'One person has favored this notice.', + return sprintf(_m('One person has favored this notice.', '%d people have favored this notice.', $count), $count); @@ -482,8 +481,7 @@ class ThreadedNoticeListRepeatsItem extends NoticeListActorsItem } else { // TRANS: List message for repeated notices. // TRANS: %d is the number of users that have repeated a notice. - return sprintf(_m('REPEATLIST', - 'One person has repeated this notice.', + return sprintf(_m('One person has repeated this notice.', '%d people have repeated this notice.', $count), $count); From 527151c5ef2e6d7ebf4b4377e06bf50d3eec4e5c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Apr 2011 15:06:52 +0200 Subject: [PATCH 39/52] L10n/i18n tweaks. --- plugins/QnA/QnAPlugin.php | 2 +- plugins/QnA/actions/qnashowanswer.php | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/QnA/QnAPlugin.php b/plugins/QnA/QnAPlugin.php index 9a05eeb0b2..c62eefa671 100644 --- a/plugins/QnA/QnAPlugin.php +++ b/plugins/QnA/QnAPlugin.php @@ -335,7 +335,7 @@ class QnAPlugin extends MicroAppPlugin $form->show(); } } else { - $out->text(_m('Question data is missing')); + $out->text(_m('Question data is missing.')); } $out->elementEnd('div'); diff --git a/plugins/QnA/actions/qnashowanswer.php b/plugins/QnA/actions/qnashowanswer.php index 826172c099..94a757960e 100644 --- a/plugins/QnA/actions/qnashowanswer.php +++ b/plugins/QnA/actions/qnashowanswer.php @@ -109,7 +109,9 @@ class QnashowanswerAction extends ShownoticeAction $question = $this->answer->getQuestion(); return sprintf( - _m('%s\'s answer to "%s"'), + // TRANS: Page title. + // TRANS: %1$s is the user who answered a question, %2$s is the question. + _m('1$%s\'s answer to "%2$s"'), $this->user->nickname, $question->title ); From 09523a19d72c2d09ac634e037977fde28915b358 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Apr 2011 15:35:52 +0200 Subject: [PATCH 40/52] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 227 ++++-- locale/bg/LC_MESSAGES/statusnet.po | 203 ++++- locale/br/LC_MESSAGES/statusnet.po | 208 +++-- locale/ca/LC_MESSAGES/statusnet.po | 220 +++-- locale/cs/LC_MESSAGES/statusnet.po | 218 +++-- locale/de/LC_MESSAGES/statusnet.po | 220 +++-- locale/en_GB/LC_MESSAGES/statusnet.po | 215 +++-- locale/eo/LC_MESSAGES/statusnet.po | 218 +++-- locale/es/LC_MESSAGES/statusnet.po | 216 +++-- locale/fa/LC_MESSAGES/statusnet.po | 211 +++-- locale/fi/LC_MESSAGES/statusnet.po | 210 +++-- locale/fr/LC_MESSAGES/statusnet.po | 225 ++++-- locale/gl/LC_MESSAGES/statusnet.po | 216 +++-- locale/hsb/LC_MESSAGES/statusnet.po | 220 +++-- locale/hu/LC_MESSAGES/statusnet.po | 208 +++-- locale/ia/LC_MESSAGES/statusnet.po | 362 +++++---- locale/it/LC_MESSAGES/statusnet.po | 216 +++-- locale/ja/LC_MESSAGES/statusnet.po | 209 +++-- locale/ka/LC_MESSAGES/statusnet.po | 214 +++-- locale/ko/LC_MESSAGES/statusnet.po | 205 +++-- locale/mk/LC_MESSAGES/statusnet.po | 459 ++++++----- locale/ml/LC_MESSAGES/statusnet.po | 216 +++-- locale/nb/LC_MESSAGES/statusnet.po | 208 +++-- locale/nl/LC_MESSAGES/statusnet.po | 312 ++++--- locale/pl/LC_MESSAGES/statusnet.po | 218 +++-- locale/pt/LC_MESSAGES/statusnet.po | 218 +++-- locale/pt_BR/LC_MESSAGES/statusnet.po | 758 +++++++++--------- locale/ru/LC_MESSAGES/statusnet.po | 309 ++++--- locale/statusnet.pot | 323 +++++--- locale/sv/LC_MESSAGES/statusnet.po | 223 ++++-- locale/te/LC_MESSAGES/statusnet.po | 217 +++-- locale/uk/LC_MESSAGES/statusnet.po | 235 ++++-- locale/zh_CN/LC_MESSAGES/statusnet.po | 222 +++-- .../locale/ast/LC_MESSAGES/AccountManager.po | 28 + .../locale/ia/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/ia/LC_MESSAGES/Bookmark.po | 98 ++- .../locale/mk/LC_MESSAGES/Bookmark.po | 99 +-- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 11 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 11 +- .../locale/ia/LC_MESSAGES/Directory.po | 21 +- .../locale/mk/LC_MESSAGES/Directory.po | 19 +- .../locale/nl/LC_MESSAGES/Directory.po | 8 +- .../locale/tl/LC_MESSAGES/Directory.po | 8 +- .../locale/uk/LC_MESSAGES/Directory.po | 8 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 6 +- .../locale/br/LC_MESSAGES/DiskCache.po | 6 +- .../locale/de/LC_MESSAGES/DiskCache.po | 6 +- .../locale/es/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 6 +- .../locale/he/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 6 +- .../locale/id/LC_MESSAGES/DiskCache.po | 6 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 6 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 6 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 6 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 6 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 6 +- .../LC_MESSAGES/EmailAuthentication.po | 6 +- .../br/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 6 +- .../de/LC_MESSAGES/EmailAuthentication.po | 6 +- .../es/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 6 +- .../he/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 6 +- .../id/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 6 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 6 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 6 +- .../locale/ia/LC_MESSAGES/EmailSummary.po | 18 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 18 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 8 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 197 +++-- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 197 +++-- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 11 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 95 +-- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 12 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 11 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 11 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 11 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 11 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 37 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 33 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 31 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 11 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 11 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 6 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 6 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 6 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 6 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 6 +- .../locale/br/LC_MESSAGES/Geonames.po | 6 +- .../locale/ca/LC_MESSAGES/Geonames.po | 6 +- .../locale/de/LC_MESSAGES/Geonames.po | 6 +- .../locale/eo/LC_MESSAGES/Geonames.po | 6 +- .../locale/es/LC_MESSAGES/Geonames.po | 6 +- .../locale/fi/LC_MESSAGES/Geonames.po | 6 +- .../locale/fr/LC_MESSAGES/Geonames.po | 6 +- .../locale/he/LC_MESSAGES/Geonames.po | 6 +- .../locale/ia/LC_MESSAGES/Geonames.po | 6 +- .../locale/id/LC_MESSAGES/Geonames.po | 6 +- .../locale/mk/LC_MESSAGES/Geonames.po | 6 +- .../locale/nb/LC_MESSAGES/Geonames.po | 6 +- .../locale/nl/LC_MESSAGES/Geonames.po | 6 +- .../locale/pt/LC_MESSAGES/Geonames.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Geonames.po | 6 +- .../locale/ru/LC_MESSAGES/Geonames.po | 6 +- .../locale/tl/LC_MESSAGES/Geonames.po | 6 +- .../locale/uk/LC_MESSAGES/Geonames.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Geonames.po | 6 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 6 +- .../locale/de/LC_MESSAGES/Gravatar.po | 6 +- .../locale/es/LC_MESSAGES/Gravatar.po | 6 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 6 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 6 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 6 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 6 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 6 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 6 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 147 ++-- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 51 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 6 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 6 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 6 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 6 +- plugins/Irc/locale/fi/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 15 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 8 +- .../de/LC_MESSAGES/LdapAuthentication.po | 6 +- .../es/LC_MESSAGES/LdapAuthentication.po | 6 +- .../fi/LC_MESSAGES/LdapAuthentication.po | 6 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 6 +- .../he/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 6 +- .../id/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ja/LC_MESSAGES/LdapAuthentication.po | 6 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../nb/LC_MESSAGES/LdapAuthentication.po | 6 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../pt/LC_MESSAGES/LdapAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ru/LC_MESSAGES/LdapAuthentication.po | 6 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/LdapAuthentication.po | 6 +- .../de/LC_MESSAGES/LdapAuthorization.po | 6 +- .../es/LC_MESSAGES/LdapAuthorization.po | 6 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 6 +- .../he/LC_MESSAGES/LdapAuthorization.po | 6 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 6 +- .../id/LC_MESSAGES/LdapAuthorization.po | 6 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 6 +- .../nb/LC_MESSAGES/LdapAuthorization.po | 6 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../pt/LC_MESSAGES/LdapAuthorization.po | 6 +- .../pt_BR/LC_MESSAGES/LdapAuthorization.po | 6 +- .../ru/LC_MESSAGES/LdapAuthorization.po | 6 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 6 +- .../zh_CN/LC_MESSAGES/LdapAuthorization.po | 6 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 6 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/he/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 10 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/pt/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/ru/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/zh_CN/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/de/LC_MESSAGES/Linkback.po | 8 +- .../locale/es/LC_MESSAGES/Linkback.po | 8 +- .../locale/fi/LC_MESSAGES/Linkback.po | 8 +- .../locale/fr/LC_MESSAGES/Linkback.po | 8 +- .../locale/he/LC_MESSAGES/Linkback.po | 8 +- .../locale/ia/LC_MESSAGES/Linkback.po | 8 +- .../locale/id/LC_MESSAGES/Linkback.po | 8 +- .../locale/mk/LC_MESSAGES/Linkback.po | 10 +- .../locale/nb/LC_MESSAGES/Linkback.po | 8 +- .../locale/nl/LC_MESSAGES/Linkback.po | 8 +- .../locale/pt/LC_MESSAGES/Linkback.po | 8 +- .../locale/ru/LC_MESSAGES/Linkback.po | 8 +- .../locale/tl/LC_MESSAGES/Linkback.po | 8 +- .../locale/uk/LC_MESSAGES/Linkback.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 8 +- .../locale/de/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 6 +- .../locale/he/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 6 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 6 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 6 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 6 +- .../locale/de/LC_MESSAGES/Memcache.po | 6 +- .../locale/es/LC_MESSAGES/Memcache.po | 6 +- .../locale/fi/LC_MESSAGES/Memcache.po | 6 +- .../locale/fr/LC_MESSAGES/Memcache.po | 6 +- .../locale/he/LC_MESSAGES/Memcache.po | 6 +- .../locale/ia/LC_MESSAGES/Memcache.po | 6 +- .../locale/mk/LC_MESSAGES/Memcache.po | 6 +- .../locale/nb/LC_MESSAGES/Memcache.po | 6 +- .../locale/nl/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 6 +- .../locale/ru/LC_MESSAGES/Memcache.po | 6 +- .../locale/tl/LC_MESSAGES/Memcache.po | 6 +- .../locale/uk/LC_MESSAGES/Memcache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 6 +- .../locale/de/LC_MESSAGES/Memcached.po | 6 +- .../locale/es/LC_MESSAGES/Memcached.po | 6 +- .../locale/fi/LC_MESSAGES/Memcached.po | 6 +- .../locale/fr/LC_MESSAGES/Memcached.po | 6 +- .../locale/he/LC_MESSAGES/Memcached.po | 6 +- .../locale/ia/LC_MESSAGES/Memcached.po | 6 +- .../locale/id/LC_MESSAGES/Memcached.po | 6 +- .../locale/ja/LC_MESSAGES/Memcached.po | 6 +- .../locale/mk/LC_MESSAGES/Memcached.po | 6 +- .../locale/nb/LC_MESSAGES/Memcached.po | 6 +- .../locale/nl/LC_MESSAGES/Memcached.po | 6 +- .../locale/pt/LC_MESSAGES/Memcached.po | 6 +- .../locale/ru/LC_MESSAGES/Memcached.po | 6 +- .../locale/tl/LC_MESSAGES/Memcached.po | 6 +- .../locale/uk/LC_MESSAGES/Memcached.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 6 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/id/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po | 6 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 6 +- .../locale/ar/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/br/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/gl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ps/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/ta/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/te/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 6 +- .../locale/de/LC_MESSAGES/ModHelper.po | 6 +- .../locale/es/LC_MESSAGES/ModHelper.po | 6 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 6 +- .../locale/he/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 6 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 6 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 6 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 6 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 8 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 25 + .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 8 +- plugins/Msn/locale/br/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/el/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/fr/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/pt/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 6 +- .../NewMenu/locale/ar/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/br/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/de/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/ia/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/mk/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/nl/LC_MESSAGES/NewMenu.po | 6 +- .../NewMenu/locale/te/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/uk/LC_MESSAGES/NewMenu.po | 4 +- .../locale/zh_CN/LC_MESSAGES/NewMenu.po | 4 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/pl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/pt/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/te/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/zh_CN/LC_MESSAGES/NoticeTitle.po | 6 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 8 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 13 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 10 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 8 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/br/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 22 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 8 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 6 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 6 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 10 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 8 +- .../locale/de/LC_MESSAGES/PostDebug.po | 6 +- .../locale/es/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 6 +- .../locale/he/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 6 +- .../locale/id/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 6 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 6 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 6 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 6 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 6 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 145 ++++ .../locale/de/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 10 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/af/LC_MESSAGES/Realtime.po | 6 +- .../locale/ar/LC_MESSAGES/Realtime.po | 6 +- .../locale/br/LC_MESSAGES/Realtime.po | 6 +- .../locale/ca/LC_MESSAGES/Realtime.po | 6 +- .../locale/de/LC_MESSAGES/Realtime.po | 6 +- .../locale/fr/LC_MESSAGES/Realtime.po | 6 +- .../locale/ia/LC_MESSAGES/Realtime.po | 6 +- .../locale/mk/LC_MESSAGES/Realtime.po | 6 +- .../locale/ne/LC_MESSAGES/Realtime.po | 6 +- .../locale/nl/LC_MESSAGES/Realtime.po | 6 +- .../locale/tr/LC_MESSAGES/Realtime.po | 6 +- .../locale/uk/LC_MESSAGES/Realtime.po | 6 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 6 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 38 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 6 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 6 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 8 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 22 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 8 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 8 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 8 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 6 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 6 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 6 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../locale/de/LC_MESSAGES/SubMirror.po | 8 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 8 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 8 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 10 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 8 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 8 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 8 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 12 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../locale/br/LC_MESSAGES/TabFocus.po | 6 +- .../locale/es/LC_MESSAGES/TabFocus.po | 6 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 6 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/he/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 6 +- .../locale/id/LC_MESSAGES/TabFocus.po | 6 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 6 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 6 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 26 +- .../TagSub/locale/ms/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 8 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 8 +- .../locale/de/LC_MESSAGES/TightUrl.po | 8 +- .../locale/es/LC_MESSAGES/TightUrl.po | 8 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 8 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/he/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 8 +- .../locale/id/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 8 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 8 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 8 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 8 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 8 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 8 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 8 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 8 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 8 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 8 +- .../locale/br/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/fa/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 19 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 10 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 11 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 8 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 8 +- .../locale/de/LC_MESSAGES/UserFlag.po | 8 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 8 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 12 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 8 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 8 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 8 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 8 +- .../locale/br/LC_MESSAGES/UserLimit.po | 8 +- .../locale/de/LC_MESSAGES/UserLimit.po | 8 +- .../locale/es/LC_MESSAGES/UserLimit.po | 8 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 8 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 8 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/he/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 8 +- .../locale/id/LC_MESSAGES/UserLimit.po | 8 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 8 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 8 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 10 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 8 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 8 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 8 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 8 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 8 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 8 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 8 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 16 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 10 +- 862 files changed, 9332 insertions(+), 5731 deletions(-) create mode 100644 plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po create mode 100644 plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po create mode 100644 plugins/QnA/locale/nl/LC_MESSAGES/QnA.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index d6ee5d4ea2..b6e6a5ad6b 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -12,19 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:18:51+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -138,6 +138,7 @@ msgstr "لا صفحة كهذه." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "لا مستخدم كهذا." @@ -896,6 +897,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1497,6 +1499,7 @@ msgstr "لا تمنع هذا المستخدم." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "نعم" @@ -2441,6 +2444,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "خطأ أثناء تحديث الملف الشخصي البعيد." @@ -3991,6 +3995,8 @@ msgstr "شارك مكاني الحالي عند إرسال إشعارات" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "الوسوم" @@ -4518,6 +4524,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4911,6 +4918,8 @@ msgstr "الأعضاء" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(لا شيء)" @@ -5853,6 +5862,7 @@ msgid "Accept" msgstr "اقبل" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "اشترك بهذا المستخدم" @@ -6318,6 +6328,7 @@ msgid "Unable to save tag." msgstr "تعذّر حفظ إشعار الموقع." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "" @@ -6697,27 +6708,24 @@ msgid "User configuration" msgstr "ضبط المستخدم" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" -msgstr "المستخدم" +msgstr "المستخدمون" #. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "ضبط الحساب" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" -msgstr "نفاذ" +msgstr "النفاذ" #. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "ضبط المسارات" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "المسارات" @@ -6727,7 +6735,6 @@ msgid "Sessions configuration" msgstr "ضبط الجلسات" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "الجلسات" @@ -7017,6 +7024,7 @@ msgid "AJAX error" msgstr "خطأ أجاكس" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "اكتمل الأمر" @@ -7491,6 +7499,7 @@ msgid "Public" msgstr "عام" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "احذف" @@ -7516,10 +7525,9 @@ msgid "Upload file" msgstr "ارفع ملفًا" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." -msgstr "تستطيع رفع صورة خلفية شخصية. أقصى حجم للملف هو 2 م.ب." +msgstr "تستطيع رفع صورتك الشخصية. أقصى حجم للملف هو 2 م.ب." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7884,8 +7892,8 @@ msgstr[5] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8204,44 +8212,61 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. #, fuzzy msgid "Only the user can read their own mailboxes." msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار الإشعارات." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "صندوق الوارد" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "رسائلك الواردة" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "صندوق الصادر" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "رسائلك المُرسلة" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "تعذّر تحليل الرسالة." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "ليس مستخدمًا مسجلًا." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. #, fuzzy msgid "Sorry, that is not your incoming email address." msgstr "هذا ليس عنوان بريدك الإلكتروني." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. #, fuzzy msgid "Sorry, no incoming email allowed." msgstr "لا عنوان بريد إلكتروني وارد." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "نوع رسالة غير مدعوم: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8291,10 +8316,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "أرسل إشعارًا مباشرًا" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "اختر وسمًا لترشيحه" @@ -8304,32 +8332,68 @@ msgstr "اختر وسمًا لترشيحه" msgid "No mutual subscribers." msgstr "غير مشترك!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "إلى" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "أرسل" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "رسالة" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "من" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "الوب" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "البريد الإلكتروني" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "لا يسمح لك بحذف هذه المجموعة." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "لا تحذف هذا المستخدم." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8379,44 +8443,52 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "ش" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "ج" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "ر" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "غ" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "في" -msgid "web" -msgstr "الوب" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "في السياق" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "كرره" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "رُد على هذا الإشعار" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "رُد" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "احذف هذا الإشعار" @@ -8425,25 +8497,34 @@ msgstr "احذف هذا الإشعار" msgid "Notice repeated." msgstr "الإشعار مكرر" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "نبّه هذا المستخدم" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "نبّه" +#. TRANS: Button title to nudge/ping another user. #, fuzzy -msgid "Send a nudge to this user" +msgid "Send a nudge to this user." msgstr "أرسل رسالة مباشرة إلى هذا المستخدم" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8451,7 +8532,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "تعذّر إدراج اشتراك جديد." #. TRANS: Menu item in personal group navigation menu. @@ -8490,6 +8573,10 @@ msgctxt "MENU" msgid "Messages" msgstr "رسالة" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "رسائلك الواردة" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8530,7 +8617,6 @@ msgid "Site configuration" msgstr "ضبط المستخدم" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "اخرج" @@ -8543,7 +8629,6 @@ msgid "Login to the site" msgstr "لُج إلى الموقع" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "ابحث" @@ -8630,18 +8715,20 @@ msgctxt "MENU" msgid "Popular" msgstr "محبوبة" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "لا مدخلات رجوع إلى." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "أأكرّر هذا الإشعار؟" -msgid "Yes" -msgstr "نعم" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "كرّر هذا الإشعار" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "امنع هذا المستخدم من هذه المجموعة" @@ -8651,9 +8738,13 @@ msgstr "امنع هذا المستخدم من هذه المجموعة" msgid "Page not found." msgstr "لم يتم العثور على وسيلة API." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" -msgstr "" +msgstr "أزل هذا المستخدم من صندوق الرمل" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "أضف هذا المستخدم إلى صندوق الرمل" @@ -8696,7 +8787,6 @@ msgid "Find groups on this site" msgstr "ابحث عن مجموعات على هذا الموقع" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "مساعدة" @@ -8750,9 +8840,11 @@ msgctxt "MENU" msgid "Badge" msgstr "الجسر" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "قسم غير مُعنون" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "المزيد..." @@ -8841,9 +8933,13 @@ msgstr "اتصالات" msgid "Authorized connected applications" msgstr "تطبيقات OAuth" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "أسكِت" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "أسكِت هذا المستخدم" @@ -8900,18 +8996,21 @@ msgstr "ادعُ" msgid "Invite friends and colleagues to join you on %s." msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "اشترك بهذا المستخدم" -msgid "Subscribe" -msgstr "اشترك" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "لا شيء" @@ -8919,18 +9018,25 @@ msgstr "لا شيء" msgid "Invalid theme name." msgstr "اسم سمة غير صالح." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "فشل حفظ السمة." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8942,21 +9048,27 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "خطأ في فتح أرشيف السمات." @@ -8998,8 +9110,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "فضّلتَ هذا الإشعار." -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "لم يفضل أحد هذا الإشعار" @@ -9014,8 +9127,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "كرّرتَ هذا الإشعار." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "لم يكرر أحد هذا الإشعار" @@ -9182,15 +9296,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "استعد التصميمات المبدئية" +#~ msgid "Yes" +#~ msgstr "نعم" -#~ msgid "Reset back to default" -#~ msgstr "ارجع إلى المبدئي" - -#~ msgid "Save design" -#~ msgstr "احفظ التصميم" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "جميع الأعضاء" +#~ msgid "Subscribe" +#~ msgstr "اشترك" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index b1b5c68e41..9483cfe0b4 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:18:53+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -135,6 +135,7 @@ msgstr "Няма такака страница." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Няма такъв потребител" @@ -888,6 +889,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1486,6 +1488,7 @@ msgstr "Да не се блокира този потребител." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -2465,6 +2468,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Непозната версия на протокола OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. #, fuzzy msgid "Error updating remote profile." msgstr "Грешка при обновяване на отдалечен профил" @@ -4072,6 +4076,8 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Етикети" @@ -4626,6 +4632,7 @@ msgstr "Адрес на профила ви в друга, съвместима #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5013,6 +5020,8 @@ msgstr "Членове" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Без)" @@ -5955,6 +5964,7 @@ msgid "Accept" msgstr "Приемане" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Абониране за този потребител" @@ -6426,6 +6436,7 @@ msgid "Unable to save tag." msgstr "Грешка при запазване на етикетите." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. #, fuzzy msgid "You have been banned from subscribing." msgstr "Потребителят е забранил да се абонирате за него." @@ -7136,6 +7147,7 @@ msgid "AJAX error" msgstr "Грешка в Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Командата е изпълнена" @@ -7604,6 +7616,7 @@ msgid "Public" msgstr "Общ поток" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Изтриване" @@ -7630,7 +7643,6 @@ msgid "Upload file" msgstr "Качване на файл" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -7979,8 +7991,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8284,41 +8296,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Само потребителят може да отваря собствената си кутия." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Входящи" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Получените от вас съобщения" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Изходящи" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Изпратените от вас съобщения" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Грешка при обработка на съобщението" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Това не е регистриран потребител." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Това не е вашият входящ адрес." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Входящата поща не е разрешена." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "Форматът на файла с изображението не се поддържа." #. TRANS: Form legend for form to make a user a group admin. @@ -8369,10 +8398,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Изпращане на пряко съобщеие" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Изберете оператор" @@ -8382,33 +8414,68 @@ msgstr "Изберете оператор" msgid "No mutual subscribers." msgstr "Не сте абонирани!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "До" +#. TRANS: Button text for sending a direct notice. #, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "Прати" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Съобщение" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "от" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Е-поща" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Не членувате в тази група." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Да не се изтрива бележката" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8454,45 +8521,53 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "С" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Ю" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "И" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "З" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. #, fuzzy msgid "at" msgstr "Път" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "в контекст" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Повторено от" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Отговор" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Изтриване на бележката" @@ -8501,24 +8576,34 @@ msgstr "Изтриване на бележката" msgid "Notice repeated." msgstr "Бележката е повторена." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Побутване на този потребител" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Побутване" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Побутване на този потребител" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8526,7 +8611,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Грешка при добавяне на нов абонамент." #. TRANS: Menu item in personal group navigation menu. @@ -8566,6 +8653,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Съобщение" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Получените от вас съобщения" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8606,7 +8697,6 @@ msgid "Site configuration" msgstr "Настройка на пътищата" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Изход" @@ -8619,7 +8709,6 @@ msgid "Login to the site" msgstr "Влизане в сайта" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Търсене" @@ -8707,18 +8796,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Популярно" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Липсват аргументи return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Да се повтори ли тази бележка?" -msgid "Yes" -msgstr "Да" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Повтаряне на тази бележка" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Списък с потребителите в тази група." @@ -8728,10 +8819,13 @@ msgstr "Списък с потребителите в тази група." msgid "Page not found." msgstr "Не е открит методът в API." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Входящи" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "Разблокиране на този потребител" @@ -8775,7 +8869,6 @@ msgid "Find groups on this site" msgstr "Търсене на групи в сайта" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Помощ" @@ -8829,9 +8922,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Табелка" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Неозаглавен раздел" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Още…" @@ -8921,9 +9016,13 @@ msgstr "Свързване" msgid "Authorized connected applications" msgstr "Изтриване на приложението" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Заглушаване" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Заглушаване на този потребител." @@ -8981,18 +9080,21 @@ msgstr "Покани" msgid "Invite friends and colleagues to join you on %s." msgstr "Поканете приятели и колеги да се присъединят към вас в %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Абониране за този потребител" -msgid "Subscribe" -msgstr "Абониране" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Без" @@ -9001,19 +9103,26 @@ msgstr "Без" msgid "Invalid theme name." msgstr "Неправилен размер." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "Неуспешно обновяване на аватара." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9021,21 +9130,27 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Грешка при изпращане на прякото съобщение" @@ -9075,8 +9190,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Отбелязване като любимо" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Отбелязване като любимо" @@ -9088,8 +9204,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Вече сте повторили тази бележка." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Вече сте повторили тази бележка." @@ -9241,10 +9358,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Save design" -#~ msgstr "Запазване настройките на сайта" +#~ msgid "Yes" +#~ msgstr "Да" -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Всички членове" +#~ msgid "Subscribe" +#~ msgstr "Абониране" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index e5e85d614e..3693435406 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:18:55+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -137,6 +137,7 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "N'eus ket eus an implijer-se." @@ -886,6 +887,7 @@ msgstr "Ret eo d'an arval pourchas un arventenn « statut » gant un talvoud." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1478,6 +1480,7 @@ msgstr "Arabat stankañ an implijer-mañ" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ya" @@ -2430,6 +2433,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Fazi en ur hizivaat ar profil a-bell." @@ -4007,6 +4011,8 @@ msgstr "Rannañ va lec'hiadur pa bostan un ali." #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Balizennoù" @@ -4558,6 +4564,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4945,6 +4952,8 @@ msgstr "Izili" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Hini ebet)" @@ -5903,6 +5912,7 @@ msgid "Accept" msgstr "Asantiñ" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "En em goumanantiñ d'an implijer-mañ" @@ -6359,6 +6369,7 @@ msgid "Unable to save tag." msgstr "Dibosupl eo enrollañ an tikedenn." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Nac'het ez eus bet deoc'h en em goumanantiñ." @@ -7047,6 +7058,7 @@ msgid "AJAX error" msgstr "Fazi Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Urzhiad bet klokaet" @@ -7517,6 +7529,7 @@ msgid "Public" msgstr "Foran" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Diverkañ" @@ -7889,8 +7902,8 @@ msgstr[1] "%d o" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8188,45 +8201,62 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. #, fuzzy msgid "Only the user can read their own mailboxes." msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Boest resev" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Ar gemennadennoù ho peus resevet" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Boest kas" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Ar c'hemenadennoù kaset ganeoc'h" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. #, fuzzy msgid "Could not parse message." msgstr "Diposubl eo ensoc'hañ ur gemenadenn" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "N'eo ket un implijer enrollet." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. #, fuzzy msgid "Sorry, that is not your incoming email address." msgstr "N'eo ket ho postel." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. #, fuzzy msgid "Sorry, no incoming email allowed." msgstr "Chomlec'h postel ebet o tont." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "Diembreget eo ar furmad-se." #. TRANS: Form legend for form to make a user a group admin. @@ -8277,10 +8307,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Kas ur gemennadenn war-eeun" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Dibab un aotre-implijout" @@ -8290,31 +8323,67 @@ msgstr "Dibab un aotre-implijout" msgid "No mutual subscribers." msgstr "Nann-koumanantet !" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Da" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Kas" +#. TRANS: Header in message list. msgid "Messages" msgstr "Kemennadennoù" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "eus" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Postel" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "N'oc'h ket aotreet da zilemel ar gont-mañ." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Arabat dilemel an implijer-mañ" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8360,44 +8429,52 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "R" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "K" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "e" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "en amdro" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Adkemeret gant" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Respont d'ar c'hemenn-mañ" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Respont" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Dilemel ar c'hemenn-mañ" @@ -8406,24 +8483,34 @@ msgstr "Dilemel ar c'hemenn-mañ" msgid "Notice repeated." msgstr "Ali adkemeret" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Kas ur blinkadenn d'an implijer-mañ" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Blinkadenn" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Kas ur blinkadenn d'an implijer-mañ" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8431,8 +8518,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. #, fuzzy -msgid "Couldn't insert new subscription." +msgid "Could not insert new subscription." msgstr "Dibosupl eo dilemel ar c'houmanant." #. TRANS: Menu item in personal group navigation menu. @@ -8471,6 +8559,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Kemennadennoù" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Ar gemennadennoù ho peus resevet" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, fuzzy, php-format msgid "Tags in %s's notices" @@ -8510,7 +8602,6 @@ msgid "Site configuration" msgstr "Kefluniadur an implijer" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Digevreañ" @@ -8523,7 +8614,6 @@ msgid "Login to the site" msgstr "Kevreañ d'al lec'hienn" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Klask" @@ -8609,19 +8699,21 @@ msgctxt "MENU" msgid "Popular" msgstr "Poblek" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "Arguzenn ID ebet." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Adkregiñ gant ar c'hemenn-mañ ?" -msgid "Yes" -msgstr "Ya" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Adkregiñ gant ar c'hemenn-mañ" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Stankañ an implijer-mañ eus ar strollad-se" @@ -8631,9 +8723,13 @@ msgstr "Stankañ an implijer-mañ eus ar strollad-se" msgid "Page not found." msgstr "N'eo ket bet kavet an hentenn API !" +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Poull-traezh" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "Distankañ an implijer-mañ" @@ -8677,7 +8773,6 @@ msgid "Find groups on this site" msgstr "Klask strolladoù el lec'hienn-mañ" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Skoazell" @@ -8731,9 +8826,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Badj" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Rann hep titl" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Muioc'h..." @@ -8822,9 +8919,13 @@ msgstr "Kevreadennoù" msgid "Authorized connected applications" msgstr "Poeladoù kevreet." +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Didrouz" +#. TRANS: Description of form to silence a user. #, fuzzy msgid "Silence this user" msgstr "Diverkañ an implijer-mañ" @@ -8882,18 +8983,21 @@ msgstr "Pediñ" msgid "Invite friends and colleagues to join you on %s." msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "En em goumanantiñ d'an implijer-mañ" -msgid "Subscribe" -msgstr "En em enskrivañ" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Hini ebet" @@ -8902,19 +9006,26 @@ msgstr "Hini ebet" msgid "Invalid theme name." msgstr "Ment direizh." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "Ur gudenn 'zo bet e-pad hizivadenn an avatar." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8922,21 +9033,27 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. #, fuzzy msgid "Error opening theme archive." msgstr "Fazi en ur hizivaat ar profil a-bell." @@ -8977,8 +9094,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Ouzhpennañ d'ar pennrolloù" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Tennañ eus ar pennrolloù" @@ -8990,8 +9108,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Adkemeret ho peus ar c'hemenn-mañ c'hoazh." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Kemenn bet adkemeret dija." @@ -9143,15 +9262,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Adlakaat an neuz dre ziouer." +#~ msgid "Yes" +#~ msgstr "Ya" -#~ msgid "Reset back to default" -#~ msgstr "Adlakaat an arventennoù dre ziouer" - -#~ msgid "Save design" -#~ msgstr "Enrollañ an design" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "An holl izili" +#~ msgid "Subscribe" +#~ msgstr "En em enskrivañ" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index d921d71075..a88b5932a2 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:18:57+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -142,6 +142,7 @@ msgstr "No existeix la pàgina." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "No existeix l'usuari." @@ -900,6 +901,7 @@ msgstr "El client ha de proporcionar un paràmetre 'status' amb un valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1495,6 +1497,7 @@ msgstr "No bloquis l'usuari." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sí" @@ -2448,6 +2451,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "El servei remot utilitza una versió desconeguda del protocol OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "S'ha produït un error en actualitzar el perfil remot." @@ -4046,6 +4050,8 @@ msgstr "Comparteix la ubicació on estic en enviar avisos" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquetes" @@ -4604,6 +4610,7 @@ msgstr "URL del vostre perfil en un altre servei de microblogging compatible." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriu-m'hi" @@ -4999,6 +5006,8 @@ msgstr "Membres" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Cap)" @@ -5975,6 +5984,7 @@ msgid "Accept" msgstr "Accepta" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Subscriu-me a aquest usuari" @@ -6459,6 +6469,7 @@ msgid "Unable to save tag." msgstr "No s'ha pogut desar l'etiqueta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Se us ha banejat la subscripció." @@ -7152,6 +7163,7 @@ msgid "AJAX error" msgstr "Error de l'AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Comanda completada" @@ -7613,6 +7625,7 @@ msgid "Public" msgstr "Públic" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Elimina" @@ -7638,7 +7651,6 @@ msgid "Upload file" msgstr "Puja un fitxer" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -7984,8 +7996,8 @@ msgstr[1] "%dB" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8379,9 +8391,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Només l'usuari pot llegir les seves safates de correu." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8390,33 +8404,48 @@ msgstr "" "usuaris en la conversa. La gent pot enviar-vos missatges només per als " "vostres ulls." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Safata d'entrada" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Els teus missatges rebuts" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Safata de sortida" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Els teus missatges enviats" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "No es pot analitzar el missatge." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Usuari no registrat." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Ho sentim, aquesta no és la vostra adreça electrònica d'entrada." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Ho sentim, no s'hi permet correu d'entrada." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipus de missatge no permès: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8470,10 +8499,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "«%s» no és un tipus de fitxer compatible en aquest servidor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Envia un avís directe" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Seleccioneu el destinatari" @@ -8481,31 +8513,67 @@ msgstr "Seleccioneu el destinatari" msgid "No mutual subscribers." msgstr "No teniu subscriptors mutus." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "A" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Envia" +#. TRANS: Header in message list. msgid "Messages" msgstr "Missatges" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Correu electrònic" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "No teniu permisos per eliminar el grup." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "No eliminis l'usuari." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8553,44 +8621,52 @@ msgstr "" "Ho sentim, la obtenció de la vostra ubicació geogràfica està trigant més de " "l'esperat; torneu-ho a provar més tard" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "a" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "en context" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetit per" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Respon a aquest avís" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Respon" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Elimina aquest avís" @@ -8599,24 +8675,34 @@ msgstr "Elimina aquest avís" msgid "Notice repeated." msgstr "Avís repetit" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Crida l'atenció a l'usuari" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Crida l'atenció" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Crida l'atenció a l'usuari" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "S'ha produït un error en inserir un perfil nou." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "S'ha produït un error en inserir un avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "S'ha produït un error en inserir un perfil remot." @@ -8624,7 +8710,9 @@ msgstr "S'ha produït un error en inserir un perfil remot." msgid "Duplicate notice." msgstr "Avís duplicat." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "No s'ha pogut inserir una nova subscripció." #. TRANS: Menu item in personal group navigation menu. @@ -8639,13 +8727,11 @@ msgid "Your profile" msgstr "El vostre perfil" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Respostes" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Preferits" @@ -8662,6 +8748,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Missatges" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Els teus missatges rebuts" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8700,7 +8790,6 @@ msgid "Site configuration" msgstr "Configuració del lloc" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Finalitza la sessió" @@ -8713,7 +8802,6 @@ msgid "Login to the site" msgstr "Inicia una sessió al lloc" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cerca" @@ -8799,18 +8887,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "No hi ha arguments de retorn." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Voleu repetir l'avís?" -msgid "Yes" -msgstr "Sí" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repeteix l'avís" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoca el rol «%s» de l'usuari" @@ -8819,9 +8909,13 @@ msgstr "Revoca el rol «%s» de l'usuari" msgid "Page not found." msgstr "No s'ha trobat la pàgina." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Entorn de proves" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Posa l'usuari a l'entorn de proves" @@ -8864,7 +8958,6 @@ msgid "Find groups on this site" msgstr "Cerca grups en aquest lloc" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" @@ -8918,9 +9011,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Insígnia" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Secció sense títol" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Més..." @@ -8979,7 +9074,6 @@ msgid "URL shorteners" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "MI" @@ -8989,7 +9083,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Actualitzacions per missatgeria instantània (MI)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -8999,7 +9092,6 @@ msgid "Updates by SMS" msgstr "Actualitzacions per SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Connexions" @@ -9008,9 +9100,13 @@ msgstr "Connexions" msgid "Authorized connected applications" msgstr "Aplicacions de connexió autoritzades" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silencia" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silencia l'usuari" @@ -9067,18 +9163,21 @@ msgstr "Convida" msgid "Invite friends and colleagues to join you on %s." msgstr "Convida amics i companys perquè participin a %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscriu-me a aquest usuari" -msgid "Subscribe" -msgstr "Subscriu-m'hi" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Núvol d'etiquetes personals (etiquetes pròpies)" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Núvol d'etiquetes personals" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Cap" @@ -9086,18 +9185,26 @@ msgstr "Cap" msgid "Invalid theme name." msgstr "El nom del tema no és vàlid." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "El servidor no pot gestionar la pujada de temes si no pot tractar ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Manca el fitxer del tema o la pujada ha fallat." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Ha fallat el desament del tema." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "El tema no és vàlid: l'estructura del directori no és correcta" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9107,9 +9214,12 @@ msgstr[0] "" msgstr[1] "" "El tema pujat és massa gran; ha de tenir menys de %d bytes descomprimit." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "L'arxiu del tema no és vàlid: manca el fitxer css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9117,13 +9227,17 @@ msgstr "" "El tema conté un fitxer o un nom de carpeta que no és vàlida. Feu servir " "només lletres ASCII, dígits, caràcters de subratllat i el símbol de menys." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "El tema conté uns noms d'extensió de fitxer que no són segurs." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "El tema conté un tipus de fitxer «.%s», que no està permès." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "S'ha produït un error en obrir l'arxiu del tema." @@ -9163,8 +9277,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Fes preferit aquest avís" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Deixa de tenir com a preferit aquest avís" @@ -9176,8 +9291,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ja havíeu repetit l'avís." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Avís duplicat." @@ -9324,14 +9440,8 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." -#~ msgid "Restore default designs" -#~ msgstr "Restaura els dissenys per defecte" +#~ msgid "Yes" +#~ msgstr "Sí" -#~ msgid "Reset back to default" -#~ msgstr "Torna a restaurar al valor per defecte" - -#~ msgid "Save design" -#~ msgstr "Desa el disseny" - -#~ msgid "Not an atom feed." -#~ msgstr "No és un canal atom." +#~ msgid "Subscribe" +#~ msgstr "Subscriu-m'hi" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 18740b6f37..d99e511f3a 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:39+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:18:59+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -137,6 +137,7 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Uživatel neexistuje." @@ -908,6 +909,7 @@ msgstr "Klient musí poskytnout 'status' parametr s hodnotou." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1516,6 +1518,7 @@ msgstr "Zablokovat tohoto uživatele" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ano" @@ -2494,6 +2497,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Vzdálená služba používá neznámou verzi protokolu OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Chyba při aktualizaci vzdáleného profilu." @@ -4118,6 +4122,8 @@ msgstr "Sdělit mou aktuální polohu při posílání hlášek" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tagy" @@ -4686,6 +4692,7 @@ msgstr "Adresa profilu na jiných kompatibilních mikroblozích." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5094,6 +5101,8 @@ msgstr "Členové" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(nic)" @@ -6069,6 +6078,7 @@ msgid "Accept" msgstr "Přijmout" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Přihlásit se k tomuto uživateli" @@ -6555,6 +6565,7 @@ msgid "Unable to save tag." msgstr "Nelze uložit tag." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Byl jste vykázán (banned) z přihlašování se." @@ -6943,7 +6954,6 @@ msgid "Access configuration" msgstr "Nastavení přístupu" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Přístup" @@ -6963,7 +6973,6 @@ msgid "Sessions configuration" msgstr "Nastavení sessions" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sessions" @@ -7249,6 +7258,7 @@ msgid "AJAX error" msgstr "Ajax Chyba" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Příkaz dokončen" @@ -7713,6 +7723,7 @@ msgid "Public" msgstr "Veřejné" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Odstranit" @@ -7739,7 +7750,6 @@ msgid "Upload file" msgstr "Nahrát soubor" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8093,8 +8103,8 @@ msgstr[2] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8489,9 +8499,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Pouze uživatel může přečíst své vlastní schránky." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8500,33 +8512,48 @@ msgstr "" "zapojili ostatní uživatelé v rozhovoru. Lidé mohou posílat zprávy jen pro " "vaše oči." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Doručená pošta" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Vaše příchozí zprávy" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Odeslaná pošta" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Vaše odeslané zprávy" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Nelze zpracovat zprávu." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Není registrovaný uživatel." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Je nám líto, toto není vaše příchozí e-mailová adresa." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Je nám líto, žádný příchozí e-mail není dovolen." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nepodporovaný typ zprávy: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8576,10 +8603,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Pošlete přímou zprávu" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Vyberte operátora" @@ -8589,32 +8619,68 @@ msgstr "Vyberte operátora" msgid "No mutual subscribers." msgstr "Nepřihlášen!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Komu:" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Odeslat" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Zpráva" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "od" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Email" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Nejste členem této skupiny." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Neodstraňujte toto oznámení" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8663,44 +8729,52 @@ msgstr "" "Je nám líto, načítání vaší geo lokace trvá déle, než se očekávalo, zkuste to " "prosím znovu později" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "J" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "V" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Z" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "v" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "v kontextu" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Opakováno" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Odpovědět na toto oznámení" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Odpovědět" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Odstranit toto oznámení" @@ -8709,24 +8783,34 @@ msgstr "Odstranit toto oznámení" msgid "Notice repeated." msgstr "Sdělení opakováno" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Pošťuchovat tohoto uživatele" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Pošťouchnout" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Poslat pošťouchnutí tomuto uživateli" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8734,7 +8818,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Nelze vložit odebírání" #. TRANS: Menu item in personal group navigation menu. @@ -8773,6 +8859,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Zpráva" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Vaše příchozí zprávy" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8813,7 +8903,6 @@ msgid "Site configuration" msgstr "Akce uživatele" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Odhlásit se" @@ -8828,7 +8917,6 @@ msgid "Login to the site" msgstr "Přihlásit se na stránky" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Hledat" @@ -8915,18 +9003,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Populární" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Chybí argument return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Opakovat toto oznámení?" -msgid "Yes" -msgstr "Ano" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Opakovat toto oznámení" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Odebrat uživateli roli \"%s\"" @@ -8936,9 +9026,13 @@ msgstr "Odebrat uživateli roli \"%s\"" msgid "Page not found." msgstr " API metoda nebyla nalezena." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Sandbox" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Sandboxovat tohoto uživatele" @@ -8981,7 +9075,6 @@ msgid "Find groups on this site" msgstr "Najít skupiny na této stránce" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Nápověda" @@ -9035,9 +9128,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Odznak" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Oddíl bez názvu" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Další…" @@ -9125,9 +9220,13 @@ msgstr "Připojení" msgid "Authorized connected applications" msgstr "Autorizované propojené aplikace" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Uťišit" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Utišit tohoto uživatele" @@ -9184,18 +9283,21 @@ msgstr "Pozvat" msgid "Invite friends and colleagues to join you on %s." msgstr "Pozvěte přátele a kolegy, aby se k vám připojili na %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Přihlásit se k tomuto uživateli" -msgid "Subscribe" -msgstr "Odebírat" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Mrak štítků kterými se uživatelé sami označili" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Mrak štítků kterými jsou uživatelé označeni" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nic" @@ -9204,18 +9306,26 @@ msgstr "Nic" msgid "Invalid theme name." msgstr "Neplatné jméno souboru." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Tento server nemůže zpracovat nahrání tématu bez podpory ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Chybí soubor tématu nebo se nepodařilo nahrání." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Chyba při ukládání tématu." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Neplatné téma: špatná adresářová struktura." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9227,9 +9337,12 @@ msgstr[1] "" msgstr[2] "" "Nahrané téma je příliš velké, nezkomprimované musí být menší než %d bajtů." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Neplatný archiv tématu: chybí soubor css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9237,13 +9350,17 @@ msgstr "" "Téma obsahuje neplatné jméno souboru nebo složky. Zůstaňte u písmen ASCII, " "číslic, podtržítka a mínusu." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Téma obsahuje nebezpečné přípony souborů, může být nebezpečné." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Téma obsahuje soubor typu '.%s', což není povoleno." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Chyba při otevírání archivu tématu." @@ -9284,8 +9401,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Přidat toto oznámení do oblíbených" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Odebrat toto oznámení z oblíbených" @@ -9298,8 +9416,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Již jste zopakoval toto oznámení." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Již jste zopakoval toto oznámení." @@ -9454,15 +9573,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Obnovit výchozí vzhledy" +#~ msgid "Yes" +#~ msgstr "Ano" -#~ msgid "Reset back to default" -#~ msgstr "Reset zpět do výchozího" - -#~ msgid "Save design" -#~ msgstr "Uložit vzhled" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Všichni členové" +#~ msgid "Subscribe" +#~ msgstr "Odebírat" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 29f2e06fdc..1dec93fef4 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -22,17 +22,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:41+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:01+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -147,6 +147,7 @@ msgstr "Seite nicht vorhanden" #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Unbekannter Benutzer." @@ -911,6 +912,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1516,6 +1518,7 @@ msgstr "Diesen Benutzer nicht blokieren." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -2490,6 +2493,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Service nutzt unbekannte OMB-Protokollversion." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Fehler beim Aktualisieren des entfernten Profils." @@ -4110,6 +4114,8 @@ msgstr "Teile meine aktuelle Position, wenn ich Nachrichten sende" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tags" @@ -4688,6 +4694,7 @@ msgstr "Profil-URL bei einem anderen kompatiblen Mikrobloggingdienst" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5096,6 +5103,8 @@ msgstr "Mitglieder" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Kein)" @@ -6072,6 +6081,7 @@ msgid "Accept" msgstr "Akzeptieren" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Abonniere diesen Benutzer" @@ -6566,6 +6576,7 @@ msgid "Unable to save tag." msgstr "Konnte Tag nicht speichern." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." @@ -6978,7 +6989,6 @@ msgid "Sessions configuration" msgstr "Sitzungseinstellungen" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sitzung" @@ -7259,6 +7269,7 @@ msgid "AJAX error" msgstr "Ajax-Fehler" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Befehl ausgeführt" @@ -7719,6 +7730,7 @@ msgid "Public" msgstr "Zeitleiste" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Löschen" @@ -7745,7 +7757,6 @@ msgid "Upload file" msgstr "Datei hochladen" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8091,8 +8102,8 @@ msgstr[1] "%d Bytes" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8486,9 +8497,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8497,33 +8510,48 @@ msgstr "" "schicken, um sie in eine Konversation zu verwickeln. Andere Leute können dir " "Nachrichten schicken, die nur du sehen kannst." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Posteingang" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Deine eingehenden Nachrichten" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Postausgang" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Deine gesendeten Nachrichten" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Konnte Nachricht nicht parsen." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Kein registrierter Benutzer." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Sorry, das ist nicht deine Adresse für eingehende E-Mails." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Sorry, keine eingehenden E-Mails gestattet." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nachrichten-Typ „%s“ wird nicht unterstützt." #. TRANS: Form legend for form to make a user a group admin. @@ -8577,10 +8605,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "„%s“ ist kein unterstütztes Dateiformat auf diesem Server." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Versende eine direkte Nachricht" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Empfänger auswählen" @@ -8589,32 +8620,68 @@ msgstr "Empfänger auswählen" msgid "No mutual subscribers." msgstr "Nicht abonniert!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "An" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Senden" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Nachricht" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "von" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "Web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-Mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Du darfst diese Gruppe nicht löschen." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Diesen Benutzer nicht löschen" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8662,44 +8729,52 @@ msgstr "" "Es tut uns leid, aber die Abfrage deiner GPS-Position hat zu lange gedauert. " "Bitte versuche es später wieder." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "O" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "in" -msgid "web" -msgstr "Web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "im Zusammenhang" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Wiederholt von" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Antworten" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Nachricht löschen" @@ -8708,24 +8783,34 @@ msgstr "Nachricht löschen" msgid "Notice repeated." msgstr "Nachricht wiederholt" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Gib diesem Benutzer einen Stups" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Stups" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Sende diesem Benutzer einen Stups" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Neues Profil konnte nicht angelegt werden." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Fehler beim Einfügen des Avatars." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Fehler beim Einfügen des entfernten Profils." @@ -8733,7 +8818,9 @@ msgstr "Fehler beim Einfügen des entfernten Profils." msgid "Duplicate notice." msgstr "Doppelte Nachricht." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Konnte neues Abonnement nicht eintragen." #. TRANS: Menu item in personal group navigation menu. @@ -8773,6 +8860,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Nachricht" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Deine eingehenden Nachrichten" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8813,7 +8904,6 @@ msgid "Site configuration" msgstr "Benutzereinstellung" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Abmelden" @@ -8826,7 +8916,6 @@ msgid "Login to the site" msgstr "Auf der Seite anmelden" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Suchen" @@ -8913,18 +9002,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Beliebte Beiträge" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Kein Rückkehr-Argument." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Diese Nachricht wiederholen?" -msgid "Yes" -msgstr "Ja" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Diese Nachricht wiederholen" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Widerrufe die „%s“-Rolle von diesem Benutzer" @@ -8933,9 +9024,13 @@ msgstr "Widerrufe die „%s“-Rolle von diesem Benutzer" msgid "Page not found." msgstr "Seite nicht gefunden." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Spielwiese" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Diesen Benutzer auf die Spielwiese setzen" @@ -8978,7 +9073,6 @@ msgid "Find groups on this site" msgstr "Finde Gruppen auf dieser Seite" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hilfe" @@ -9032,9 +9126,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Plakette" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Abschnitt ohne Titel" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mehr …" @@ -9093,7 +9189,6 @@ msgid "URL shorteners" msgstr "URL-Verkürzer" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" @@ -9103,7 +9198,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Aktualisierungen via Instant Messenger (IM)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -9113,7 +9207,6 @@ msgid "Updates by SMS" msgstr "Aktualisierungen via SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Verbindungen" @@ -9122,9 +9215,13 @@ msgstr "Verbindungen" msgid "Authorized connected applications" msgstr "Programme mit Zugriffserlaubnis" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Stummschalten" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Benutzer verstummen lassen" @@ -9181,18 +9278,21 @@ msgstr "Einladen" msgid "Invite friends and colleagues to join you on %s." msgstr "Lade Freunde und Kollegen ein, dir auf „%s“ zu folgen" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Abonniere diesen Benutzer" -msgid "Subscribe" -msgstr "Abonnieren" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Personen-Tagwolke, wie man sich selbst markiert hat." +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Personen-Tag, wie markiert wurde" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nichts" @@ -9200,19 +9300,27 @@ msgstr "Nichts" msgid "Invalid theme name." msgstr "Ungültiger Theme-Name." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Dieser Server kann nicht mit Theme-Uploads ohne ZIP-Unterstützung umgehen." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Die Theme-Datei fehlt oder das Hochladen ist fehlgeschlagen." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Speicherung des Themes fehlgeschlagen." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Ungültiger Theme: schlechte Ordner-Struktur." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9224,9 +9332,12 @@ msgstr[1] "" "Der hochgeladene Theme ist zu groß; er muss unkomprimiert unter %d Bytes " "sein." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Ungültigges Theme-Archiv: fehlende Datei css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9234,13 +9345,17 @@ msgstr "" "Der Theme enthält einen ungültigen Datei- oder Ordnernamen. Bleib bei ASCII-" "Buchstaben, Zahlen, Unterstrichen und Minuszeichen." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Theme enthält unsichere Dateierweiterungen; könnte unsicher sein." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Das Theme enthält Dateien des Types „.%s“, die nicht erlaubt sind." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Fehler beim Öffnen des Theme-Archives." @@ -9280,8 +9395,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Zu den Favoriten hinzufügen" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Aus Favoriten entfernen" @@ -9293,8 +9409,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Nachricht bereits wiederholt" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Nachricht bereits wiederholt" @@ -9442,15 +9559,8 @@ msgstr "Ungültiges XML, XRD-Root fehlt." msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." -#~ msgid "Restore default designs" -#~ msgstr "Standard-Design wiederherstellen" +#~ msgid "Yes" +#~ msgstr "Ja" -#~ msgid "Reset back to default" -#~ msgstr "Standard wiederherstellen" - -#~ msgid "Save design" -#~ msgstr "Design speichern" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Kein Mitglied" +#~ msgid "Subscribe" +#~ msgstr "Abonnieren" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index ae6142ba19..eea7f152cf 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:42+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:03+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -138,6 +138,7 @@ msgstr "No such page." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "No such user." @@ -899,6 +900,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1504,6 +1506,7 @@ msgstr "Do not block this user" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Yes" @@ -2477,6 +2480,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Remote service uses unknown version of OMB protocol." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Error updating remote profile." @@ -4082,6 +4086,8 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tags" @@ -4648,6 +4654,7 @@ msgstr "URL of your profile on another compatible microblogging service" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5041,6 +5048,8 @@ msgstr "Members" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(None)" @@ -5993,6 +6002,7 @@ msgid "Accept" msgstr "Accept" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Subscribe to this user" @@ -6465,6 +6475,7 @@ msgid "Unable to save tag." msgstr "Unable to save tag." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "You have been banned from subscribing." @@ -6872,7 +6883,6 @@ msgid "Sessions configuration" msgstr "Sessions configuration" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sessions" @@ -7151,6 +7161,7 @@ msgid "AJAX error" msgstr "AJAX error" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Command complete" @@ -7604,6 +7615,7 @@ msgid "Public" msgstr "Public" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Delete" @@ -7630,7 +7642,6 @@ msgid "Upload file" msgstr "Upload file" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -7976,8 +7987,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8289,41 +8300,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Only the user can read their own mailboxes." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Inbox" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Your incoming messages" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Outbox" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Your sent messages" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Could not parse message." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Not a registered user." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Sorry, that is not your incoming e-mail address." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Sorry, no incoming e-mail allowed." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Unsupported message type: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8373,10 +8401,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Send a direct notice" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Select a carrier" @@ -8386,32 +8417,67 @@ msgstr "Select a carrier" msgid "No mutual subscribers." msgstr "Not subscribed!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "To" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Send" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Message" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "from" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "You are not allowed to delete this group." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Do not delete this group" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8456,44 +8522,52 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "in context" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repeated by" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Reply to this notice" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Reply" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Delete this notice" @@ -8502,24 +8576,34 @@ msgstr "Delete this notice" msgid "Notice repeated." msgstr "Notice repeated" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Nudge this user" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Nudge" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Send a nudge to this user" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8527,7 +8611,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Couldn't insert new subscription." #. TRANS: Menu item in personal group navigation menu. @@ -8567,6 +8653,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Message" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Your incoming messages" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8607,7 +8697,6 @@ msgid "Site configuration" msgstr "User configuration" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logout" @@ -8620,7 +8709,6 @@ msgid "Login to the site" msgstr "Login to the site" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Search" @@ -8707,18 +8795,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "No return-to arguments." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repeat this notice?" -msgid "Yes" -msgstr "Yes" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repeat this notice" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoke the \"%s\" role from this user" @@ -8728,9 +8818,13 @@ msgstr "Revoke the \"%s\" role from this user" msgid "Page not found." msgstr "API method not found." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Sandbox" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Sandbox this user" @@ -8773,7 +8867,6 @@ msgid "Find groups on this site" msgstr "Find groups on this site" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Help" @@ -8826,9 +8919,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Badge" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Untitled section" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "" @@ -8887,7 +8982,6 @@ msgid "URL shorteners" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" @@ -8897,7 +8991,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Updates by instant messenger (IM)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -8907,7 +9000,6 @@ msgid "Updates by SMS" msgstr "Updates by SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Connections" @@ -8916,9 +9008,13 @@ msgstr "Connections" msgid "Authorized connected applications" msgstr "Authorised connected applications" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silence" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silence this user" @@ -8975,18 +9071,21 @@ msgstr "Invite" msgid "Invite friends and colleagues to join you on %s." msgstr "Invite friends and colleagues to join you on %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscribe to this user" -msgid "Subscribe" -msgstr "Subscribe" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "None" @@ -8995,18 +9094,25 @@ msgstr "None" msgid "Invalid theme name." msgstr "Invalid filename." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Failed saving theme." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9014,21 +9120,27 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Error opening theme archive." @@ -9068,8 +9180,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Favour this notice" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Disfavour this notice" @@ -9081,8 +9194,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "You already repeated that notice." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Already repeated that notice." @@ -9232,15 +9346,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Restore default designs" +#~ msgid "Yes" +#~ msgstr "Yes" -#~ msgid "Reset back to default" -#~ msgstr "Reset back to default" - -#~ msgid "Save design" -#~ msgstr "Save design" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "All members" +#~ msgid "Subscribe" +#~ msgstr "Subscribe" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 5b30d19f62..a1ac99e0f1 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:05+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -141,6 +141,7 @@ msgstr "Ne estas tiu paĝo." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Ne ekzistas tiu uzanto." @@ -899,6 +900,7 @@ msgstr "Kliento devas providi al \"stato\"-parametro valoron." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1501,6 +1503,7 @@ msgstr "Ne bloki la uzanton" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Jes" @@ -2465,6 +2468,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Fora servo uzas nekonatan version de OMB-protokolo." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Eraro je ĝisdatigo de fora profilo." @@ -4051,6 +4055,8 @@ msgstr "Sciigu mian nunan lokon, kiam mi sendas avizon." #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Markiloj" @@ -4614,6 +4620,7 @@ msgstr "URL de via profilo ĉe alia kongrua mikroblogilo-servo" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5017,6 +5024,8 @@ msgstr "Grupanoj" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(nenio)" @@ -5982,6 +5991,7 @@ msgid "Accept" msgstr "Akcepti" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Aboni la uzanton" @@ -6453,6 +6463,7 @@ msgid "Unable to save tag." msgstr "Malsukcesis konservi etikedon." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Vi esatas blokita de aboni." @@ -7147,6 +7158,7 @@ msgid "AJAX error" msgstr "Eraro de Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Komando kompleta" @@ -7607,6 +7619,7 @@ msgid "Public" msgstr "Publika" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Forigi" @@ -7633,7 +7646,6 @@ msgid "Upload file" msgstr "Alŝuti dosieron" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -7980,8 +7992,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8370,9 +8382,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Nur uzanto povas legi sian propran paŝton." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8380,34 +8394,49 @@ msgstr "" "Vi ne ricevis privatan mesaĝon. Vi povas sendi privatan mesaĝon al iu kaj " "interparoli kun ili. Homo sendas al vi mesaĝon al vi sole." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Alvenkesto" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Viaj alvenaj mesaĝoj" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Elirkesto" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Viaj senditaj mesaĝoj" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. #, fuzzy msgid "Could not parse message." msgstr "Malsukcesis analizo de mesaĝo" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Ne registrita uzanto" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Pardonon, tiu ne estas via alvena retpoŝtadreso." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Pardonon, neniu alvena mesaĝo permesiĝas." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nesubtenata mesaĝo-tipo: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8459,10 +8488,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" ne estas subtenata tipo ĉe tiu ĉi servilo." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Sendi rektan avizon" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Elektu ricevonton:" @@ -8470,32 +8502,68 @@ msgstr "Elektu ricevonton:" msgid "No mutual subscribers." msgstr "Mankas abonantoj reciprokaj." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Al" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Sendi" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Mesaĝo" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "TTT" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Retpoŝto" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "" +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ne forigi la avizon" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8543,44 +8611,52 @@ msgstr "" "Pardonon, legi vian lokon estas pli malrapide, ol ni pensis. Bonvolu reprovi " "poste." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "al" -msgid "web" -msgstr "TTT" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "kuntekste" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Ripetita de" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Respondi ĉi tiun avizon" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Respondi" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Forigi la avizon" @@ -8589,24 +8665,34 @@ msgstr "Forigi la avizon" msgid "Notice repeated." msgstr "Avizo ripetiĝas" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Puŝeti la uzanton" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Puŝeti" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Sendi puŝeton al la uzanto" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Eraris enmeti novan profilon" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Eraris enmeti novan vizaĝbildon." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Eraris enmeti foran profilon." @@ -8614,7 +8700,9 @@ msgstr "Eraris enmeti foran profilon." msgid "Duplicate notice." msgstr "Refoja avizo." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Eraris enmeti novan abonon." #. TRANS: Menu item in personal group navigation menu. @@ -8653,6 +8741,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Mesaĝo" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Viaj alvenaj mesaĝoj" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8691,10 +8783,9 @@ msgid "Site configuration" msgstr "Retej-agordo" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" -msgstr "Elsaluti" +msgstr " Elsaluti" msgid "Logout from the site" msgstr "Elsaluti el la retpaĝaro" @@ -8705,7 +8796,6 @@ msgid "Login to the site" msgstr "Ensaluti al la retpaĝaro" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Serĉi" @@ -8791,19 +8881,21 @@ msgctxt "MENU" msgid "Popular" msgstr "Populara" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "Ne estas aldonaĵo." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Ĉu ripeti la avizon?" -msgid "Yes" -msgstr "Jes" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Ripeti la avizon" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoki rolon %s de la uzanto" @@ -8812,9 +8904,13 @@ msgstr "Revoki rolon %s de la uzanto" msgid "Page not found." msgstr "Paĝo ne trovitas." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Provejo" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Provejigi la uzanton" @@ -8857,7 +8953,6 @@ msgid "Find groups on this site" msgstr "Serĉi grupon ĉe la retejo" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Helpo" @@ -8911,9 +9006,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Insigno" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sentitola sekcio" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Pli..." @@ -9001,9 +9098,13 @@ msgstr "Konektoj" msgid "Authorized connected applications" msgstr "Konektitaj aplikaĵoj rajtigitaj" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silento" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silentigi la uzanton" @@ -9060,18 +9161,21 @@ msgstr "Inviti" msgid "Invite friends and colleagues to join you on %s." msgstr "Inviti amikojn kaj kolegojn al %s kun vi" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Aboni la uzanton" -msgid "Subscribe" -msgstr "Aboni" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nenio" @@ -9080,18 +9184,26 @@ msgstr "Nenio" msgid "Invalid theme name." msgstr "Nevalida dosiernomo." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Ĉi tiu servilo ne povas disponi desegnan alŝuton sen ZIP-a subteno." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "La desegna dosiero mankas aŭ malsukcesis alŝuti." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Malsukcesis konservi desegnon." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Nevalida desegno: fuŝa dosieruja sturkturo." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9101,9 +9213,12 @@ msgstr[0] "" msgstr[1] "" "Alŝutata desegno tro grandas; ĝi estu apenaŭ %d bitoj sen densigado." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Nevalida desegna arkivo: mankas dosiero css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9111,13 +9226,17 @@ msgstr "" "Desegno enhavas nevalidan dosieran aŭ dosierujan nomon. Uzu nur ASCII-" "literaron, ciferojn, substrekon kaj minussignon." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Desegno enhavas malsekuran dosiersufikson; eble malsukuras." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Desegno enhavas dosieron de tipo \".%s\", kiu malpermesiĝas." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Eraris malfermi desegnan arkivon." @@ -9157,8 +9276,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Ŝati la avizon" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Forigi ŝatmarkon de ĉi tiu avizo" @@ -9170,8 +9290,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "La avizo jam ripetiĝis." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "La avizo jam ripetiĝis." @@ -9321,15 +9442,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Restaŭri defaŭltajn desegnojn" +#~ msgid "Yes" +#~ msgstr "Jes" -#~ msgid "Reset back to default" -#~ msgstr "Redefaŭltiĝi" - -#~ msgid "Save design" -#~ msgstr "Savi desegnon" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Ĉiuj grupanoj" +#~ msgid "Subscribe" +#~ msgstr "Aboni" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index ade53cfaa3..a50a02e676 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:07+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -143,6 +143,7 @@ msgstr "No existe tal página." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "No existe ese usuario." @@ -904,6 +905,7 @@ msgstr "El cliente debe proveer un parámetro de 'status' con un valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1502,6 +1504,7 @@ msgstr "No bloquear a este usuario" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sí" @@ -2477,6 +2480,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "El servicio remoto utiliza una versión desconocida del protocolo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Error al actualizar el perfil remoto." @@ -4090,6 +4094,8 @@ msgstr "Compartir mi ubicación actual al publicar los mensajes" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquetas" @@ -4666,6 +4672,7 @@ msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5070,6 +5077,8 @@ msgstr "Miembros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Ninguno)" @@ -6051,6 +6060,7 @@ msgid "Accept" msgstr "Aceptar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Suscribirse a este usuario." @@ -6534,6 +6544,7 @@ msgid "Unable to save tag." msgstr "Incapaz de grabar etiqueta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Se te ha prohibido la suscripción." @@ -7232,6 +7243,7 @@ msgid "AJAX error" msgstr "Error de Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Comando completo" @@ -7696,6 +7708,7 @@ msgid "Public" msgstr "Público" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Borrar" @@ -7722,7 +7735,6 @@ msgid "Upload file" msgstr "Subir archivo" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8070,8 +8082,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8468,9 +8480,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Sólo el usuario puede leer sus bandejas de correo." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8479,33 +8493,48 @@ msgstr "" "otros usuarios partícipes de la conversación. La gente puede enviarte " "mensajes que sólo puedas leer tú." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Bandeja de Entrada" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Mensajes entrantes" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Bandeja de Salida" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Mensajes enviados" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "No se pudo analizar sintácticamente mensaje." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "No es un usuario registrado" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Lo sentimos, pero este no es su dirección de correo entrante." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Lo sentimos, pero no se permite correos entrantes" -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipo de mensaje no compatible: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8559,10 +8588,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" no es un tipo de archivo compatible en este servidor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Enviar un mensaje directo" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Seleccione un operador móvil" @@ -8571,31 +8603,67 @@ msgstr "Seleccione un operador móvil" msgid "No mutual subscribers." msgstr "Sin suscripción mutua" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Para" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#. TRANS: Header in message list. msgid "Messages" msgstr "Mensajes" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "desde" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "red" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Correo electrónico" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "No puede eliminar este grupo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "No eliminar este usuario" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8642,44 +8710,52 @@ msgstr "" "Lo sentimos, pero geolocalizarte está tardando más de lo esperado. Por " "favor, inténtalo más tarde." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "en" -msgid "web" -msgstr "red" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "en contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetido por" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a este mensaje." +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Borrar este mensaje" @@ -8688,24 +8764,34 @@ msgstr "Borrar este mensaje" msgid "Notice repeated." msgstr "Mensaje repetido" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Actualiza tu estado." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Dar un toque a este usuario" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Dar un toque a " -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Dar un toque a este usuario" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Error al insertar un nuevo perfil." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Error al insertar el avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Error al insertar el perfil remoto." @@ -8713,7 +8799,9 @@ msgstr "Error al insertar el perfil remoto." msgid "Duplicate notice." msgstr "Mensaje duplicado." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "No se pudo insertar una nueva suscripción." #. TRANS: Menu item in personal group navigation menu. @@ -8752,6 +8840,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Mensajes" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Mensajes entrantes" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8792,7 +8884,6 @@ msgid "Site configuration" msgstr "Configuración de usuario" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Cerrar sesión" @@ -8805,7 +8896,6 @@ msgid "Login to the site" msgstr "Iniciar sesión en el sitio" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Buscar" @@ -8891,18 +8981,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "No hay respuesta a los argumentos." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repetir este mensaje?" -msgid "Yes" -msgstr "Sí" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repetir este mensaje." +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revocar el rol \"%s\" de este usuario" @@ -8912,9 +9004,13 @@ msgstr "Revocar el rol \"%s\" de este usuario" msgid "Page not found." msgstr "Método de API no encontrado." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Restringir" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Imponer restricciones a este usuario" @@ -8957,7 +9053,6 @@ msgid "Find groups on this site" msgstr "Encontrar grupos en este sitio" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ayuda" @@ -9011,9 +9106,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Insignia" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sección sin título" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Más..." @@ -9101,9 +9198,13 @@ msgstr "Conecciones" msgid "Authorized connected applications" msgstr "Aplicaciones conectadas autorizadas" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silenciar a este usuario" @@ -9160,18 +9261,21 @@ msgstr "Invitar" msgid "Invite friends and colleagues to join you on %s." msgstr "Invita a amigos y colegas a unirse a %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Suscribirse a este usuario" -msgid "Subscribe" -msgstr "Suscribirse" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nube de etiquetas de personas auto-etiquetadas" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nube de etiquetas de personas etiquetadas" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ninguno" @@ -9180,18 +9284,26 @@ msgstr "Ninguno" msgid "Invalid theme name." msgstr "Nombre de archivo inválido." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Este servidor no puede manejar cargas de temas sin soporte ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "El archivo de tema está perdido o la carga falló." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Grabado de tema errado." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema inválido: mala estructura de directorio." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9201,9 +9313,12 @@ msgstr[0] "" msgstr[1] "" "Tema subido es demasiado grande; debe ser menor que %d bytes sin comprimir." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Archivo de tema inválido: archivo perdido css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9211,15 +9326,19 @@ msgstr "" "El tema contiene archivo o nombre de carpeta inválido. Restrínjase a letras " "ASCII, dígitos, carácter de subrayado, y signo menos." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "El tema contiene nombres de extensiones de archivo inseguras y puede ser " "peligroso." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "El tema contiene archivo de tipo '.%s', que no está permitido." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Error al abrir archivo de tema." @@ -9259,8 +9378,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Incluir este mensaje en tus favoritos" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Excluir este mensaje de mis favoritos" @@ -9272,8 +9392,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ya has repetido este mensaje." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Este mensaje ya se ha repetido." @@ -9422,15 +9543,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Restaurar los diseños predeterminados" +#~ msgid "Yes" +#~ msgstr "Sí" -#~ msgid "Reset back to default" -#~ msgstr "Volver a los valores predeterminados" - -#~ msgid "Save design" -#~ msgstr "Guardar el diseño" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Todos los miembros" +#~ msgid "Subscribe" +#~ msgstr "Suscribirse" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index eb50f94729..29f0aa6124 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:09+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -27,9 +27,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -143,6 +143,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "چنین کاربری وجود ندارد." @@ -901,6 +902,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1503,6 +1505,7 @@ msgstr "کاربر را مسدود نکن" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "بله" @@ -2485,6 +2488,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "خدمات مورد نظر از نسخهٔ نامفهومی از قرارداد OMB استفاده می‌کند." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور." @@ -4095,6 +4099,8 @@ msgstr "مکان کنونی من هنگام فرستادن پیام‌ها به #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "برچسب‌ها" @@ -4664,6 +4670,7 @@ msgstr "نشانی اینترنتی نمایهٔ شما در سرویس میکر #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5065,6 +5072,8 @@ msgstr "اعضا" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "هیچ" @@ -6042,6 +6051,7 @@ msgid "Accept" msgstr "پذیرفتن" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "مشترک شدن این کاربر" @@ -6516,6 +6526,7 @@ msgid "Unable to save tag." msgstr "نمی‌توان پیام وب‌گاه را ذخیره کرد." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "شما از اشتراک منع شده‌اید." @@ -6926,7 +6937,6 @@ msgid "Sessions configuration" msgstr "پیکربندی نشست‌ها" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "نشست‌ها" @@ -7210,6 +7220,7 @@ msgid "AJAX error" msgstr "خطای آژاکس" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "دستور انجام شد" @@ -7669,6 +7680,7 @@ msgid "Public" msgstr "عمومی" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "حذف" @@ -7695,7 +7707,6 @@ msgid "Upload file" msgstr "بارگذاری پرونده" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8038,8 +8049,8 @@ msgstr[0] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8434,41 +8445,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "تنها کاربران می تواند صندوق نامهٔ خودشان را بخوانند." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "صندوق دریافتی" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "پیام های وارد شونده ی شما" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "صندوق خروجی" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "پیام‌های فرستاده شدهٔ شما" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "نمی‌توان پیام را تجزیه کرد." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "یک کاربر ثبت نام شده نیستید" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "با عرض پوزش، این پست الکترونیک شما نیست." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "با عرض پوزش، اجازه‌ی ورودی پست الکترونیک وجود ندارد" -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "نوع پیام پشتیبانی نشده است: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8519,10 +8547,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "فرستادن یک پیام مستقیم" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "یک اپراتور را انتخاب کنید" @@ -8532,32 +8563,67 @@ msgstr "یک اپراتور را انتخاب کنید" msgid "No mutual subscribers." msgstr "تایید نشده!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "به" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "فرستادن" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "پیام" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "از" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "پست الکترونیکی" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "شما یک عضو این گروه نیستید." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "این پیام را پاک نکن" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8604,45 +8670,53 @@ msgstr "" "متاسفیم، دریافت محل جغرافیایی شما بیش از انتظار طول کشیده است، لطفا بعدا " "دوباره تلاش کنید." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. #, fuzzy msgid "N" msgstr "خیر" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "در" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "در زمینه" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "تکرار از" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "به این پیام پاسخ دهید" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "پاسخ" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "این پیام را پاک کن" @@ -8651,24 +8725,34 @@ msgstr "این پیام را پاک کن" msgid "Notice repeated." msgstr "پیام تکرار شد" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "یادآوری‌کردن به این کاربر" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "یادآوری‌کردن" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "یک یادآوری به این کاربر فرستاده شود" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8676,7 +8760,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "نمی‌توان اشتراک تازه‌ای افزود." #. TRANS: Menu item in personal group navigation menu. @@ -8716,6 +8802,10 @@ msgctxt "MENU" msgid "Messages" msgstr "پیام" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "پیام های وارد شونده ی شما" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8756,7 +8846,6 @@ msgid "Site configuration" msgstr "پیکربندی کاربر" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "خروج" @@ -8769,7 +8858,6 @@ msgid "Login to the site" msgstr "ورود به وب‌گاه" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "جست‌وجو" @@ -8856,19 +8944,21 @@ msgctxt "MENU" msgid "Popular" msgstr "محبوب" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "هیچ پیوستی وجود ندارد." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "این پیام تکرار شود؟" -msgid "Yes" -msgstr "بله" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "تکرار این پیام" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "دسترسی کاربر به گروه مسدود شود" @@ -8878,10 +8968,13 @@ msgstr "دسترسی کاربر به گروه مسدود شود" msgid "Page not found." msgstr "رابط مورد نظر پیدا نشد." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "صندوق دریافتی" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "آزاد سازی کاربر" @@ -8925,7 +9018,6 @@ msgid "Find groups on this site" msgstr "پیدا کردن گروه‌ها در این وب‌گاه" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "کمک" @@ -8979,9 +9071,11 @@ msgctxt "MENU" msgid "Badge" msgstr "نشان" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "بخش بی‌نام" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "بیش‌تر..." @@ -9069,9 +9163,13 @@ msgstr "اتصال‌ها" msgid "Authorized connected applications" msgstr "برنامه‌های وصل‌شدهٔ مجاز" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "ساکت کردن" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "ساکت کردن این کاربر" @@ -9128,18 +9226,21 @@ msgstr "دعوت‌کردن" msgid "Invite friends and colleagues to join you on %s." msgstr "به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "مشترک شدن این کاربر" -msgid "Subscribe" -msgstr "اشتراک" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "هیچ" @@ -9148,40 +9249,53 @@ msgstr "هیچ" msgid "Invalid theme name." msgstr "نام‌پرونده نادرست است." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "به روز رسانی چهره موفقیت آمیر نبود." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. #, fuzzy msgid "Error opening theme archive." msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور." @@ -9221,8 +9335,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "برگزیده‌کردن این پیام" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "خارج‌کردن این پیام از برگزیده‌ها" @@ -9233,8 +9348,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "شما قبلا آن پیام را تکرار کرده‌اید." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "قبلا آن پیام تکرار شده است." @@ -9380,15 +9496,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "بازگرداندن طرح‌های پیش‌فرض" +#~ msgid "Yes" +#~ msgstr "بله" -#~ msgid "Reset back to default" -#~ msgstr "برگشت به حالت پیش گزیده" - -#~ msgid "Save design" -#~ msgstr "ذخیره‌کردن طرح" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "همهٔ اعضا" +#~ msgid "Subscribe" +#~ msgstr "اشتراک" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index c8eae141b4..456eebf23e 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:11+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -141,6 +141,7 @@ msgstr "Sivua ei ole." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Käyttäjää ei ole." @@ -894,6 +895,7 @@ msgstr "Asiakasohjelman on annettava 'status'-parametri arvoineen." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1482,6 +1484,7 @@ msgstr "Älä estä tätä käyttäjää." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Kyllä" @@ -2431,6 +2434,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Etäpalvelu käyttää tuntematonta OMB-protokollan versiota." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Virhe tapahtui päivitettäessä etäprofiilia." @@ -4049,6 +4053,8 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tagit" @@ -4617,6 +4623,7 @@ msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5016,6 +5023,8 @@ msgstr "Jäsenet" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. #, fuzzy msgid "(None)" msgstr "(Tyhjä)" @@ -5980,6 +5989,7 @@ msgid "Accept" msgstr "Hyväksy" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Tilaa tämä käyttäjä" @@ -6450,6 +6460,7 @@ msgid "Unable to save tag." msgstr "Tagien tallennus epäonnistui." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. #, fuzzy msgid "You have been banned from subscribing." msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." @@ -6854,7 +6865,6 @@ msgid "Access configuration" msgstr "SMS vahvistus" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Käyttöoikeudet" @@ -7168,6 +7178,7 @@ msgid "AJAX error" msgstr "Ajax-virhe" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Komento suoritettu" @@ -7633,6 +7644,7 @@ msgid "Public" msgstr "Julkinen" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Poista" @@ -8009,8 +8021,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8324,41 +8336,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Saapuneet" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Sinulle saapuneet viestit" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Lähetetyt" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Lähettämäsi viestit" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Ei voitu lukea viestiä." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Tuo ei ole rekisteröitynyt käyttäjä." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Valitettavasti tuo ei ole oikea osoite sähköpostipäivityksille." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Valitettavasti päivitysten teko sähköpostilla ei ole sallittua." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "Kuvatiedoston formaattia ei ole tuettu." #. TRANS: Form legend for form to make a user a group admin. @@ -8408,10 +8437,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Lähetä suora viesti" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Valitse operaattori" @@ -8421,33 +8453,68 @@ msgstr "Valitse operaattori" msgid "No mutual subscribers." msgstr "Ei ole tilattu!." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Vastaanottaja" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Lähetä" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Viesti" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. #, fuzzy msgid "from" msgstr " lähteestä " -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Sähköposti" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Sinä et kuulu tähän ryhmään." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Älä poista tätä päivitystä" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8494,47 +8561,55 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. #, fuzzy msgid "N" msgstr "Ei" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. #, fuzzy msgid "in context" msgstr "Ei sisältöä!" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. #, fuzzy msgid "Repeated by" msgstr "Luotu" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Vastaus" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Poista tämä päivitys" @@ -8543,24 +8618,34 @@ msgstr "Poista tämä päivitys" msgid "Notice repeated." msgstr "Päivitys on poistettu." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Tönäise tätä käyttäjää" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Tönäise" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Lähetä tönäisy tälle käyttäjälle" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8568,7 +8653,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Ei voitu lisätä uutta tilausta." #. TRANS: Menu item in personal group navigation menu. @@ -8607,6 +8694,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Viesti" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Sinulle saapuneet viestit" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8648,7 +8739,6 @@ msgid "Site configuration" msgstr "SMS vahvistus" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Kirjaudu ulos" @@ -8749,21 +8839,22 @@ msgctxt "MENU" msgid "Popular" msgstr "Suosituimmat" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "Ei id parametria." +#. TRANS: For legend for notice repeat form. #, fuzzy msgid "Repeat this notice?" msgstr "Vastaa tähän päivitykseen" -msgid "Yes" -msgstr "Kyllä" - +#. TRANS: Button title to repeat a notice on notice repeat form. #, fuzzy -msgid "Repeat this notice" +msgid "Repeat this notice." msgstr "Vastaa tähän päivitykseen" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" @@ -8773,10 +8864,13 @@ msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" msgid "Page not found." msgstr "API-metodia ei löytynyt." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Saapuneet" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "Poista esto tältä käyttäjältä" @@ -8821,10 +8915,9 @@ msgid "Find groups on this site" msgstr "Etsi ryhmiä tästä palvelusta" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" -msgstr "Ohjeet" +msgstr "Ohje" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. #, fuzzy @@ -8874,9 +8967,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Tönäise" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Nimetön osa" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Lisää..." @@ -8965,10 +9060,13 @@ msgstr "Yhdistä" msgid "Authorized connected applications" msgstr "" +#. TRANS: Title of form to silence a user. #, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Palvelun ilmoitus" +#. TRANS: Description of form to silence a user. #, fuzzy msgid "Silence this user" msgstr "Estä tämä käyttäjä" @@ -9027,18 +9125,21 @@ msgstr "Kutsu" msgid "Invite friends and colleagues to join you on %s." msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Tilaa tämä käyttäjä" -msgid "Subscribe" -msgstr "Tilaa" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ei mitään" @@ -9047,19 +9148,26 @@ msgstr "Ei mitään" msgid "Invalid theme name." msgstr "Koko ei kelpaa." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "Profiilikuvan päivittäminen epäonnistui." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9067,21 +9175,27 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Tapahtui virhe, kun estoa poistettiin." @@ -9121,8 +9235,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Merkitse päivitys suosikkeihin" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Poista tämä päivitys suosikeista" @@ -9134,8 +9249,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Sinä kuulut jo tähän ryhmään." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Tätä päivitystä ei voi poistaa." @@ -9287,18 +9403,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Restore default designs" -#~ msgstr "Käytä oletusasetuksia" +#~ msgid "Yes" +#~ msgstr "Kyllä" -#, fuzzy -#~ msgid "Reset back to default" -#~ msgstr "Käytä oletusasetuksia" - -#, fuzzy -#~ msgid "Save design" -#~ msgstr "Ryhmän ulkoasu" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Kaikki jäsenet" +#~ msgid "Subscribe" +#~ msgstr "Tilaa" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index f6dc006b75..8d5e35497c 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -23,17 +23,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:50+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -147,6 +147,7 @@ msgstr "Page non trouvée." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Utilisateur non trouvé." @@ -913,6 +914,7 @@ msgstr "Le client doit fournir un paramètre « statut » avec une valeur." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1525,6 +1527,7 @@ msgstr "Ne pas bloquer cet utilisateur" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Oui" @@ -2491,6 +2494,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Le service distant utilise une version inconnue du protocole OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Erreur lors de la mise à jour du profil distant." @@ -4114,6 +4118,8 @@ msgstr "Partager ma localisation lorsque je poste des avis" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Balises" @@ -4695,6 +4701,7 @@ msgstr "URL de votre profil sur un autre service de micro-blogging compatible" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5102,6 +5109,8 @@ msgstr "Membres" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(aucun)" @@ -6090,6 +6099,7 @@ msgid "Accept" msgstr "Accepter" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "S’abonner à cet utilisateur" @@ -6581,6 +6591,7 @@ msgid "Unable to save tag." msgstr "Impossible d’enregistrer l’étiquette." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Il vous a été interdit de vous abonner." @@ -6964,7 +6975,6 @@ msgid "User configuration" msgstr "Configuration utilisateur" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Utilisateur" @@ -6974,7 +6984,6 @@ msgid "Access configuration" msgstr "Configuration d’accès" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Accès" @@ -6984,7 +6993,6 @@ msgid "Paths configuration" msgstr "Configuration des chemins" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Chemins" @@ -6994,7 +7002,6 @@ msgid "Sessions configuration" msgstr "Configuration des sessions" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sessions" @@ -7280,6 +7287,7 @@ msgid "AJAX error" msgstr "Erreur AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Commande complétée" @@ -7748,6 +7756,7 @@ msgid "Public" msgstr "Public" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Supprimer" @@ -7774,11 +7783,10 @@ msgid "Upload file" msgstr "Importer un fichier" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" -"Vous pouvez importer une image d’arrière plan personnelle. La taille " +"Vous pouvez importer votre image d’arrière plan personnelle. La taille " "maximale du fichier est de 2 Mo." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. @@ -8123,8 +8131,8 @@ msgstr[1] "%d o" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8522,9 +8530,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "L’accès à cette boîte de réception est réservé à son utilisateur." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8533,33 +8543,48 @@ msgstr "" "pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent " "vous envoyer des messages destinés à vous seul(e)." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Boîte de réception" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Vos messages reçus" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Boîte d’envoi" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Vos messages envoyés" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Impossible de déchiffrer ce message." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Ceci n’est pas un utilisateur inscrit." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Désolé, ceci n’est pas votre adresse de courriel entrant." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Désolé, la réception de courriels n’est pas permise." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Type de message non supporté : %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8613,10 +8638,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "« %s » n’est pas un type de fichier supporté sur ce serveur." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Envoyer un message direct" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Sélectionner le destinataire :" @@ -8624,32 +8652,68 @@ msgstr "Sélectionner le destinataire :" msgid "No mutual subscribers." msgstr "Aucun abonné réciproque." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "À" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Envoyer" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Message" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Courriel" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Vous n’êtes pas autorisé à supprimer ce groupe." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ne pas supprimer ce groupe" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8697,44 +8761,52 @@ msgstr "" "Désolé, l’obtention de votre localisation prend plus de temps que prévu. " "Veuillez réessayer plus tard." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "chez" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "dans le contexte" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repris par" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Répondre à cet avis" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Répondre" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Supprimer cet avis" @@ -8743,24 +8815,34 @@ msgstr "Supprimer cet avis" msgid "Notice repeated." msgstr "Avis repris" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Envoyer un clin d’œil à cet utilisateur" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Clin d’œil" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Envoyer un clin d’œil à cet utilisateur" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Erreur lors de l’insertion du nouveau profil." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Erreur lors de l’insertion de l’avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Erreur lors de l’insertion du profil distant." @@ -8768,7 +8850,9 @@ msgstr "Erreur lors de l’insertion du profil distant." msgid "Duplicate notice." msgstr "Avis en doublon." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Impossible d’insérer un nouvel abonnement." #. TRANS: Menu item in personal group navigation menu. @@ -8807,6 +8891,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Message" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Vos messages reçus" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8847,7 +8935,6 @@ msgid "Site configuration" msgstr "Configuration utilisateur" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Déconnexion" @@ -8860,7 +8947,6 @@ msgid "Login to the site" msgstr "Ouvrir une session" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Rechercher" @@ -8947,18 +9033,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Populaires" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Aucun argument de retour." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Reprendre cet avis ?" -msgid "Yes" -msgstr "Oui" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Reprendre cet avis" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Révoquer le rôle « %s » de cet utilisateur" @@ -8967,9 +9055,13 @@ msgstr "Révoquer le rôle « %s » de cet utilisateur" msgid "Page not found." msgstr "Page non trouvée." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Bac à sable" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Mettre cet utilisateur dans un bac à sable" @@ -9012,7 +9104,6 @@ msgid "Find groups on this site" msgstr "Rechercher des groupes sur ce site" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Aide" @@ -9066,9 +9157,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Insigne" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Section sans titre" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Plus..." @@ -9127,7 +9220,6 @@ msgid "URL shorteners" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" @@ -9137,7 +9229,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Suivi des avis par messagerie instantanée" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -9147,7 +9238,6 @@ msgid "Updates by SMS" msgstr "Suivi des avis par SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Connexions" @@ -9156,9 +9246,13 @@ msgstr "Connexions" msgid "Authorized connected applications" msgstr "Applications autorisées connectées" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silence" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Réduire cet utilisateur au silence" @@ -9215,18 +9309,21 @@ msgstr "Inviter" msgid "Invite friends and colleagues to join you on %s." msgstr "Inviter des amis et collègues à vous rejoindre dans %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "S’abonner à cet utilisateur" -msgid "Subscribe" -msgstr "S’abonner" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nuage de marques pour une personne (ajoutées par eux-même)" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nuage de marques pour une personne" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Aucun" @@ -9234,20 +9331,28 @@ msgstr "Aucun" msgid "Invalid theme name." msgstr "Nom de thème invalide." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Le serveur ne peut pas gérer l’import de thèmes sans le support du format " "ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Le fichier de thème est manquant ou le téléversement a échoué." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "L’enregistrement du thème a échoué." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Thème invalide : mauvaise arborescence." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9259,9 +9364,12 @@ msgstr[1] "" "Le thème téléversé est trop volumineux ; il doit occuper moins de %d octets " "une fois décompressé." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Archive de thème invalide : fichier css/display.css manquant" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9269,15 +9377,19 @@ msgstr "" "Le thème contient un nom de fichier ou de dossier invalide. Limitez-vous aux " "lettres ASCII et aux chiffres, caractère de soulignement et signe moins." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "Ce thème contient un nom d'extension de ficher dangereux; peut être " "dangereux." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Le thème contient un fichier de type « .%s », qui n'est pas autorisé." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Erreur lors de l’ouverture de l’archive du thème." @@ -9317,8 +9429,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Ajouter aux favoris" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Retirer des favoris" @@ -9330,8 +9443,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Vous avez déjà repris cet avis." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Vous avez déjà repris cet avis." @@ -9480,15 +9594,8 @@ msgstr "XML invalide, racine XRD manquante." msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." -#~ msgid "Restore default designs" -#~ msgstr "Restaurer les conceptions par défaut" +#~ msgid "Yes" +#~ msgstr "Oui" -#~ msgid "Reset back to default" -#~ msgstr "Revenir aux valeurs par défaut" - -#~ msgid "Save design" -#~ msgstr "Sauvegarder la conception" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Tous les membres" +#~ msgid "Subscribe" +#~ msgstr "S’abonner" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 5899ca6afb..5e41c557e3 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:15+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -136,6 +136,7 @@ msgstr "Esa páxina non existe." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Non existe tal usuario." @@ -893,6 +894,7 @@ msgstr "O cliente debe proporcionar un parámetro de \"estado\" cun valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1502,6 +1504,7 @@ msgstr "Non bloquear este usuario" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Si" @@ -2485,6 +2488,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "O servizo remoto utiliza unha versión descoñecida do protocolo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Houbo un erro ao actualizar o perfil remoto." @@ -4113,6 +4117,8 @@ msgstr "Compartir o lugar onde vivo ao publicar notas" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquetas" @@ -4698,6 +4704,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5104,6 +5111,8 @@ msgstr "Membros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Ningún)" @@ -6091,6 +6100,7 @@ msgid "Accept" msgstr "Aceptar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Subscribirse a este usuario" @@ -6578,6 +6588,7 @@ msgid "Unable to save tag." msgstr "Non se puido gardar a nota do sitio." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Prohibíuselle realizar subscricións de momento." @@ -7283,6 +7294,7 @@ msgid "AJAX error" msgstr "Houbo un erro de AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Completouse a orde" @@ -7747,6 +7759,7 @@ msgid "Public" msgstr "Públicas" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Borrar" @@ -7773,7 +7786,6 @@ msgid "Upload file" msgstr "Cargar un ficheiro" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8125,8 +8137,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8522,9 +8534,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Só o usuario pode ler as súas caixas de entrada." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8532,33 +8546,48 @@ msgstr "" "Non ten mensaxes privadas. Pode enviar mensaxes privadas para conversar con " "outros usuarios. A xente pode enviarlle mensaxes para que só as lea vostede." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Caixa de entrada" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "As mensaxes recibidas" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Caixa de saída" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "As mensaxes enviadas" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Non se puido analizar a mensaxe." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Non está rexistrado." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Ese non é o seu enderezo de correo electrónico para recibir correos." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Non se permite recibir correo electrónico." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Non se soporta o tipo de mensaxe: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8611,10 +8640,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "Neste servidor non se soporta o tipo de ficheiro \"%s\"." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Enviar unha nota directa" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Seleccionar unha licenza" @@ -8624,32 +8656,68 @@ msgstr "Seleccionar unha licenza" msgid "No mutual subscribers." msgstr "Non está subscrito!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "A" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Mensaxe" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Correo electrónico" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Vostede non pertence a este grupo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Non borrar esta nota" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8697,44 +8765,52 @@ msgstr "" "Estase tardando máis do esperado en obter a súa xeolocalización, vólvao " "intentar máis tarde" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "L" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "en" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "no contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetida por" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a esta nota" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Borrar esta nota" @@ -8743,24 +8819,34 @@ msgstr "Borrar esta nota" msgid "Notice repeated." msgstr "Repetiuse a nota" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Facerlle un aceno a este usuario" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Facer un aceno" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Facerlle un aceno a este usuario" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Houbo un erro ao inserir o novo perfil." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Houbo un erro ao inserir o avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Houbo un erro ao inserir o perfil remoto." @@ -8768,7 +8854,9 @@ msgstr "Houbo un erro ao inserir o perfil remoto." msgid "Duplicate notice." msgstr "Nota duplicada." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Non se puido inserir unha subscrición nova." #. TRANS: Menu item in personal group navigation menu. @@ -8808,6 +8896,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Mensaxe" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "As mensaxes recibidas" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8848,7 +8940,6 @@ msgid "Site configuration" msgstr "Configuración do usuario" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Saír" @@ -8863,7 +8954,6 @@ msgid "Login to the site" msgstr "Identificarse no sitio" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Buscar" @@ -8950,18 +9040,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Populares" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Sen argumentos \"return-to\"." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Quere repetir esta nota?" -msgid "Yes" -msgstr "Si" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repetir esta nota" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revogarlle o rol \"%s\" a este usuario" @@ -8971,9 +9063,13 @@ msgstr "Revogarlle o rol \"%s\" a este usuario" msgid "Page not found." msgstr "Non se atopou o método da API." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Illar" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Illar a este usuario" @@ -9016,7 +9112,6 @@ msgid "Find groups on this site" msgstr "Buscar grupos neste sitio" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Axuda" @@ -9070,9 +9165,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Insignia" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sección sen título" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Máis..." @@ -9160,9 +9257,13 @@ msgstr "Conexións" msgid "Authorized connected applications" msgstr "Aplicacións conectadas autorizadas" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silenciar a este usuario" @@ -9219,18 +9320,21 @@ msgstr "Convidar" msgid "Invite friends and colleagues to join you on %s." msgstr "Convide a amigos e compañeiros a unírselle en %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscribirse a este usuario" -msgid "Subscribe" -msgstr "Subscribirse" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nube de etiquetas que as persoas se puxeron a si mesmas" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nube de etiquetas que lle puxo a outras persoas" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ningún" @@ -9239,20 +9343,28 @@ msgstr "Ningún" msgid "Invalid theme name." msgstr "Nome de ficheiro incorrecto." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "O servidor non pode xestionar as cargas de temas visuais sen soporte para o " "formato ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "O ficheiro do tema visual non existe ou a subida fallou." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Non se puido gardar o tema visual." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema visual inválido: a estrutura do directorio é incorrecta" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9264,9 +9376,12 @@ msgstr[1] "" "O tema visual cargado é grande de máis; o tamaño descomprimido non pode " "superar os %d bytes." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Arquivo de tema visual inválido: falta o ficheiro css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9274,13 +9389,17 @@ msgstr "" "O tema visual contén un ficheiro inválido ou nome de cartafol incorrecto. " "Limíteo a letras ASCII, díxitos, barras baixas e signos menos." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "O tema visual contén nomes de extensión inseguros." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "O tema visual contén o tipo de ficheiro \".%s\". Non está permitido." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Houbo un erro ao abrir o arquivo do tema visual." @@ -9320,8 +9439,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Marcar esta nota como favorita" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Desmarcar esta nota como favorita" @@ -9333,8 +9453,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Xa repetiu esa nota." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Xa repetiu esa nota." @@ -9484,15 +9605,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Restaurar o deseño por defecto" +#~ msgid "Yes" +#~ msgstr "Si" -#~ msgid "Reset back to default" -#~ msgstr "Volver ao deseño por defecto" - -#~ msgid "Save design" -#~ msgstr "Gardar o deseño" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Todos os membros" +#~ msgid "Subscribe" +#~ msgstr "Subscribirse" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index a0cdd68ad9..1017a8b9fb 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:17+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -136,6 +136,7 @@ msgstr "Strona njeeksistuje." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Wužiwar njeeksistuje" @@ -878,6 +879,7 @@ msgstr "Klient dyrbi parameter 'status' z hódnotu podać." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1461,6 +1463,7 @@ msgstr "Tutoho wužiwarja njeblokować." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Haj" @@ -2385,6 +2388,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Zmylk při aktualizaciji zdaleneho profila." @@ -3907,6 +3911,8 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "" @@ -4426,6 +4432,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4803,6 +4810,8 @@ msgstr "Čłonojo" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Žadyn)" @@ -5717,6 +5726,7 @@ msgid "Accept" msgstr "Akceptować" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Tutoho wužiwarja abonować." @@ -6171,6 +6181,7 @@ msgid "Unable to save tag." msgstr "Njeje móžno, tafličku składować." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Abonowanje je ći zakazane." @@ -6848,6 +6859,7 @@ msgid "AJAX error" msgstr "Zmylk Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Přikaz wuwjedźeny" @@ -7326,6 +7338,7 @@ msgid "Public" msgstr "Zjawny" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Zničić" @@ -7352,7 +7365,6 @@ msgid "Upload file" msgstr "Dataju nahrać" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -7708,8 +7720,8 @@ msgstr[3] "%d B" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8006,9 +8018,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Jenož wužiwar móže swoje póstowe kašćiki čitać." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8017,33 +8031,48 @@ msgstr "" "wužiwarjow do konwersacije zaplesć. Ludźo móža ći powěsće pósłać, kotrež " "jenož ty móžeš widźeć." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Dochadny póst" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Twoje dochadźace powěsće" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Wuchadny póst" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Twoje pósłane powěsće" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Powěsć njeda so analyzować." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Žadyn zregistrowany wužiwar." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Wodaj, to twoja adresa za dochadźace e-mejle njeje." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Wodaj, dochadźaće e-mejle njejsu dowolene." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Njepodpěrany powěsćowy typ: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8097,10 +8126,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" njeje podpěrany datajowy typ na tutym serwerje." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Direktnu zdźělenku pósłać" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Přijimowarja wubrać:" @@ -8108,31 +8140,67 @@ msgstr "Přijimowarja wubrać:" msgid "No mutual subscribers." msgstr "Žani wzajomni abonenća." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Komu" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Pósłać" +#. TRANS: Header in message list. msgid "Messages" msgstr "Powěsće" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "wot" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "Web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mejl" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Njesměš tutu skupinu zhašeć." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Tutoho wužiwarja njezhašeć." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8180,44 +8248,52 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "J" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "W" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Z" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "w" -msgid "web" -msgstr "Web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "w konteksće" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Wospjetowany wot" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Na tutu zdźělenku wotmołwić" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Wotmołwić" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" @@ -8226,24 +8302,34 @@ msgstr "Tutu zdźělenku wušmórnyć" msgid "Notice repeated." msgstr "Zdźělenka wospjetowana" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Tutoho wužiwarja storčić" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Stork" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Tutomu wužiwarjej stork pósłać" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Zmylk při zasunjenju noweho profila." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Zmylk při zasunjenju awatara." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Zmylk při zasunjenju zdaleneho profila." @@ -8251,7 +8337,9 @@ msgstr "Zmylk při zasunjenju zdaleneho profila." msgid "Duplicate notice." msgstr "Dwójna zdźělenka." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Nowy abonement njeda so zasunyć." #. TRANS: Menu item in personal group navigation menu. @@ -8267,13 +8355,11 @@ msgid "Your profile" msgstr "Skupinski profil" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Wotmołwy" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Fawority" @@ -8290,6 +8376,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Powěsće" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Twoje dochadźace powěsće" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8330,7 +8420,6 @@ msgid "Site configuration" msgstr "Wužiwarska konfiguracija" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Wotzjewić" @@ -8345,7 +8434,6 @@ msgid "Login to the site" msgstr "Při sydle přizjewić" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Pytać" @@ -8431,18 +8519,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Woblubowany" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Žane wróćenske argumenty." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Tutu zdźělenku wospjetować?" -msgid "Yes" -msgstr "Haj" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Tutu zdźělenku wospjetować" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Rólu \"%s\" tutoho wužiwarja wotwołać" @@ -8451,9 +8541,13 @@ msgstr "Rólu \"%s\" tutoho wužiwarja wotwołać" msgid "Page not found." msgstr "Strona njenamakana." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Pěskowy kašćik" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Tutoho wužiwarja do pěskoweho kašćika pósłać" @@ -8496,7 +8590,6 @@ msgid "Find groups on this site" msgstr "Skupiny na tutym sydle pytać" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Pomoc" @@ -8550,9 +8643,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Plaketa" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Wotrězk bjez titula" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Wjace..." @@ -8611,7 +8706,6 @@ msgid "URL shorteners" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" @@ -8621,7 +8715,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Aktualizacije přez Instant Messenger (IM)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -8631,7 +8724,6 @@ msgid "Updates by SMS" msgstr "Aktualizacije přez SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Zwiski" @@ -8640,9 +8732,13 @@ msgstr "Zwiski" msgid "Authorized connected applications" msgstr "Awtorizowane zwjazane aplikacije" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Hubu zatykać" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Tutomu wužiwarjej hubu zatykać" @@ -8699,18 +8795,21 @@ msgstr "Přeprosyć" msgid "Invite friends and colleagues to join you on %s." msgstr "Přećelow a kolegow přeprosyć, so tebi na %s přidružić" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Tutoho wužiwarja abonować" -msgid "Subscribe" -msgstr "Abonować" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Žadyn" @@ -8718,18 +8817,26 @@ msgstr "Žadyn" msgid "Invalid theme name." msgstr "Njepłaćiwe šatowe mjeno." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Šatowa dataja faluje abo nahraće je so njeporadźiło." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Składowanje šata je so njeporadźiło." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Njepłaćiwy šat: špatna rjadowakowa struktura." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8739,21 +8846,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Njepłaćiwy šatowy archiw: falowaca css-dataja/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Šat wobsahuje njewěste datajowe sufiksy; to móhło njewěste być." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Šat wobsahuje dataju typa '.%s', kotryž njeje dowoleny." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Zmylk při wočinjenju šatoweho archiwa." @@ -8795,8 +8909,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Tutu zdźělenku faworitam přidać" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Tutu zdźělenku z faworitow wotstronić" @@ -8810,8 +8925,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Sy tutu zdźělenku hižo wospjetował." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Tuta zdźělenka bu hižo wospjetowana." @@ -8970,14 +9086,8 @@ msgstr "Njepłaćiwy XML, korjeń XRD faluje." msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" -#~ msgid "Restore default designs" -#~ msgstr "Standardne designy wobnowić" +#~ msgid "Yes" +#~ msgstr "Haj" -#~ msgid "Reset back to default" -#~ msgstr "Na standard wróćo stajić" - -#~ msgid "Save design" -#~ msgstr "Design składować" - -#~ msgid "Not an atom feed." -#~ msgstr "To Atomowy kanal njeje." +#~ msgid "Subscribe" +#~ msgstr "Abonować" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 1e2016da7c..830a0587fa 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:19+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -138,6 +138,7 @@ msgstr "Nincs ilyen lap." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Nincs ilyen felhasználó." @@ -889,6 +890,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1493,6 +1495,7 @@ msgstr "Ne blokkoljuk ezt a felhasználót" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Igen" @@ -2465,6 +2468,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Nem sikerült frissíteni a távoli profilt." @@ -4031,6 +4035,8 @@ msgstr "Tegyük közzé az aktuális tartózkodási helyem amikor híreket küld #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Címkék" @@ -4568,6 +4574,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4950,6 +4957,8 @@ msgstr "Tagok" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(nincs)" @@ -5883,6 +5892,7 @@ msgid "Accept" msgstr "Elfogadás" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Ezen felhasználók híreire már feliratkoztál:" @@ -6335,6 +6345,7 @@ msgid "Unable to save tag." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Eltiltottak a feliratkozástól." @@ -7019,6 +7030,7 @@ msgid "AJAX error" msgstr "Ajax-hiba" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "" @@ -7470,6 +7482,7 @@ msgid "Public" msgstr "" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Törlés" @@ -7846,8 +7859,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8206,9 +8219,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Csak a felhasználó láthatja a saját postaládáját." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8217,35 +8232,48 @@ msgstr "" "keveredj más felhasználókkal. Olyan üzenetet küldhetnek neked emberek, amit " "csak te láthatsz." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. #, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Homokozó" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "A bejövő üzeneteid" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. #, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "%s kimenő postafiókja" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "A küldött üzeneteid" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Nem sikerült az üzenetet feldolgozni." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Nem egy regisztrált felhasználó." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Sajnos az nem a te bejövő email-címed." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Sajnos a bejövő email nincs engedélyezve." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nem támogatott üzenet-típus: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8295,10 +8323,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Küldjünk egy üzenetet közvetlenül" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Válassz egy szolgáltatót" @@ -8308,32 +8339,67 @@ msgstr "Válassz egy szolgáltatót" msgid "No mutual subscribers." msgstr "Nem követed figyelemmel!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Címzett" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Üzenet" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "írta" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Nem vagy tagja ennek a csoportnak." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ne töröljük ezt a hírt" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8379,44 +8445,52 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "É" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "D" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "K" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Ny" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "előzmény" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Megismételte:" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Válaszoljunk erre a hírre" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Válasz" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Töröljük ezt a hírt" @@ -8425,24 +8499,34 @@ msgstr "Töröljük ezt a hírt" msgid "Notice repeated." msgstr "A hírt megismételtük" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Bökjük meg ezt a felhasználót" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Megbök" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Bökjük meg ezt a felhasználót" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8450,8 +8534,10 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." -msgstr "" +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." +msgstr "Nem sikerült beilleszteni a megerősítő kódot." #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -8490,6 +8576,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Üzenet" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "A bejövő üzeneteid" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8629,18 +8719,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Népszerű" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Megismételjük ezt a hírt?" -msgid "Yes" -msgstr "Igen" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Ismételjük meg ezt a hírt" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "" @@ -8650,9 +8742,13 @@ msgstr "" msgid "Page not found." msgstr "Az API-metódus nem található." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Homokozó" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "" @@ -8749,9 +8845,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Megbök" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Névtelen szakasz" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Tovább…" @@ -8838,9 +8936,13 @@ msgstr "Kapcsolatok" msgid "Authorized connected applications" msgstr "" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" -msgstr "" +msgstr "A webhely híre" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "" @@ -8900,38 +9002,48 @@ msgstr "" "Ezen űrlap segítségével meghívhatsz barátokat és kollégákat erre a " "szolgáltatásra." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "" -msgid "Subscribe" -msgstr "Kövessük" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" -msgstr "" +msgstr "(nincs)" #. TRANS: Server exception displayed if a theme name was invalid. #, fuzzy msgid "Invalid theme name." msgstr "Érvénytelen megjegyzéstartalom." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "" -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8939,21 +9051,27 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "" @@ -8993,8 +9111,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Kedvelem ezt a hírt" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Nem kedvelem ezt a hírt" @@ -9006,8 +9125,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ne töröljük ezt a hírt" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Már megismételted azt a hírt." @@ -9157,12 +9277,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Reset back to default" -#~ msgstr "Visszaállítás az alapértelmezettre" +#~ msgid "Yes" +#~ msgstr "Igen" -#~ msgid "Save design" -#~ msgstr "Design mentése" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Összes tag" +#~ msgid "Subscribe" +#~ msgstr "Kövessük" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index e148bcd033..979f2922e4 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -133,6 +133,7 @@ msgstr "Pagina non existe." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Iste usator non existe." @@ -889,6 +890,7 @@ msgstr "Le cliente debe fornir un parametro 'status' con un valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1483,6 +1485,7 @@ msgstr "Non blocar iste usator." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Si" @@ -2433,6 +2436,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Le servicio remote usa un version incognite del protocollo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Error durante le actualisation del profilo remote." @@ -4000,6 +4004,8 @@ msgstr "Divulgar mi loco actual quando io publica notas" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquettas" @@ -4554,6 +4560,7 @@ msgstr "URL de tu profilo in un altere servicio de microblogging compatibile." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriber" @@ -4946,6 +4953,8 @@ msgstr "Membros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Nulle)" @@ -5824,7 +5833,6 @@ msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Subscription predefinite invalide: \"%1$s\" non es usator." #. TRANS: Fieldset legend in user administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Profile" msgstr "Profilo" @@ -5895,6 +5903,7 @@ msgid "Accept" msgstr "Acceptar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Subscriber a iste usator." @@ -6306,9 +6315,9 @@ msgstr "Tu ha ja repetite iste nota." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). -#, fuzzy, php-format +#, php-format msgid "%1$s has no access to notice %2$d." -msgstr "Le usator non ha un ultime nota." +msgstr "%1$s non ha accesso al nota %2$d." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. @@ -6365,6 +6374,7 @@ msgid "Unable to save tag." msgstr "Impossibile salveguardar le etiquetta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Tu ha essite blocate del subscription." @@ -6393,7 +6403,6 @@ msgid "Could not delete subscription." msgstr "Non poteva deler subscription." #. TRANS: Activity title when subscribing to another person. -#, fuzzy msgctxt "TITLE" msgid "Follow" msgstr "Sequer" @@ -6462,23 +6471,19 @@ msgid "User deletion in progress..." msgstr "Deletion del usator in curso…" #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Edit profile settings." -msgstr "Modificar configuration de profilo" +msgstr "Modificar configuration de profilo." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Edit" msgstr "Modificar" #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Send a direct message to this user." -msgstr "Inviar un message directe a iste usator" +msgstr "Inviar un message directe a iste usator." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Message" msgstr "Message" @@ -6526,7 +6531,6 @@ msgid "Write a reply..." msgstr "Scriber un responsa..." #. TRANS: Tab on the notice form. -#, fuzzy msgctxt "TAB" msgid "Status" msgstr "Stato" @@ -6649,9 +6653,9 @@ msgid "No content for notice %s." msgstr "Nulle contento pro nota %s." #. TRANS: Exception thrown if no user is provided. %s is a user ID. -#, fuzzy, php-format +#, php-format msgid "No such user \"%s\"." -msgstr "Le usator %s non existe." +msgstr "Le usator \"%s\" non existe." #. TRANS: Client exception thrown when post to collection fails with a 400 status. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. @@ -6699,7 +6703,6 @@ msgstr "Impossibile deler configuration de apparentia." #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Initio" @@ -6708,16 +6711,14 @@ msgstr "Initio" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Home" msgstr "Initio" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" -msgstr "Administrator" +msgstr "Administration" #. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" @@ -6744,7 +6745,6 @@ msgid "User configuration" msgstr "Configuration del usator" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Usator" @@ -6754,7 +6754,6 @@ msgid "Access configuration" msgstr "Configuration del accesso" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Accesso" @@ -6764,7 +6763,6 @@ msgid "Paths configuration" msgstr "Configuration del camminos" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Camminos" @@ -6774,7 +6772,6 @@ msgid "Sessions configuration" msgstr "Configuration del sessiones" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sessiones" @@ -6784,7 +6781,6 @@ msgid "Edit site notice" msgstr "Modificar aviso del sito" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" msgstr "Aviso del sito" @@ -6794,7 +6790,6 @@ msgid "Snapshots configuration" msgstr "Configuration del instantaneos" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" msgstr "Instantaneos" @@ -6804,7 +6799,6 @@ msgid "Set site license" msgstr "Definir licentia del sito" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "Licentia" @@ -6814,7 +6808,6 @@ msgid "Plugins configuration" msgstr "Configuration del plug-ins" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Plugins" msgstr "Plug-ins" @@ -6973,9 +6966,8 @@ msgid "Save" msgstr "Salveguardar" #. TRANS: Name for an anonymous application in application list. -#, fuzzy msgid "Unknown application" -msgstr "Action incognite" +msgstr "Application incognite" #. TRANS: Message has a leading space and a trailing space. Used in application list. #. TRANS: Before this message the application name is put, behind it the organisation that manages it. @@ -7044,10 +7036,9 @@ msgid "Cancel join request" msgstr "Cancellar requesta de adhesion" #. TRANS: Button text for form action to cancel a subscription request. -#, fuzzy msgctxt "BUTTON" msgid "Cancel subscription request" -msgstr "Cancellar requesta de adhesion" +msgstr "Cancellar requesta de subscription" #. TRANS: Title for command results. msgid "Command results" @@ -7058,6 +7049,7 @@ msgid "AJAX error" msgstr "Error de AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Commando complete" @@ -7497,12 +7489,12 @@ msgstr "Error de base de datos" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" msgstr "Public" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Deler" @@ -7528,12 +7520,11 @@ msgid "Upload file" msgstr "Incargar file" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" -"Tu pote incargar tu imagine de fundo personal. Le dimension maximal del file " -"es 2MB." +"Tu pote actualisar tu imagine de fundo personal. Le dimension maximal del " +"file es 2MB." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7601,7 +7592,6 @@ msgstr "Il non ha un autor in le syndication." #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. -#, fuzzy msgid "Cannot import without a user." msgstr "Non pote importar sin usator." @@ -7610,7 +7600,6 @@ msgid "Feeds" msgstr "Syndicationes" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" msgstr "Totes" @@ -7624,12 +7613,10 @@ msgid "Tag" msgstr "Etiquetta" #. TRANS: Dropdown field title on gallery action page for a list containing tags. -#, fuzzy msgid "Choose a tag to narrow list." -msgstr "Selige etiquetta pro reducer lista" +msgstr "Selige un etiquetta pro reducer le lista." #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "Ir" @@ -7871,17 +7858,17 @@ msgstr[1] "%dB" #. TRANS: %3$s is the display name of an IM plugin. #, fuzzy, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" -"Le usator \"%s\" de %s ha dicite que tu pseudonymo %s pertine a ille/illa. " -"Si isto es correcte, tu pote confirmar lo con un clic super iste URL: %s . " -"(Si tu non pote cliccar super illo, copia-e-colla lo in le barra de adresse " -"de tu navigator del web.) Si iste usator non es tu, o si tu non requestava " -"iste confirmation, simplemente ignora iste message." +"Le usator \"%1$s\" de %2$s ha dicite que tu pseudonymo de %2$s pertine a " +"ille o illa. Si isto es correcte, tu pote confirmar lo con un clic super " +"iste URL: %3$s . (Si tu non pote cliccar super illo, copia-e-colla lo in le " +"barra de adresse de tu navigator del web.) Si iste usator non es tu, o si tu " +"non requestava iste confirmation, simplemente ignora iste message." #. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. #. TRANS: %d is the unknown inbox ID (number). @@ -7892,13 +7879,14 @@ msgstr "Fonte de cassa de entrata \"%s\" incognite" #. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. msgid "Queueing must be enabled to use IM plugins." msgstr "" +"Le functionalitate de caudas debe esser activate pro usar le plug-ins de " +"messageria instantanee." #. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. msgid "Transport cannot be null." -msgstr "" +msgstr "Le methodo de transporto non pote esser nulle." #. TRANS: Button text on form to leave a group. -#, fuzzy msgctxt "BUTTON" msgid "Leave" msgstr "Quitar" @@ -7967,19 +7955,19 @@ msgstr "%1$s seque ora tu notas in %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s would like to listen to your notices on %2$s." -msgstr "%1$s seque ora tu notas in %2$s." +msgstr "%1$s volerea sequer tu notas in %2$s." #. TRANS: Main body of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "" "%1$s would like to listen to your notices on %2$s. You may approve or reject " "their subscription at %3$s" msgstr "" -"%1$s vole adherer a tu gruppo %2$s in %3$s. Tu pote approbar o rejectar su " -"adhesion al gruppo a %4$s" +"%1$s volerea sequer tu notas in %2$s. Tu pote approbar o rejectar su " +"subscription %3$s" #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, @@ -8252,9 +8240,11 @@ msgstr "" "%1$s vole adherer a tu gruppo %2$s in %3$s. Tu pote approbar o rejectar su " "adhesion al gruppo a %4$s" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Solmente le usator pote leger su proprie cassas postal." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8263,33 +8253,48 @@ msgstr "" "altere usatores in conversation. Altere personas pote inviar te messages que " "solmente tu pote leger." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Cassa de entrata" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Tu messages recipite" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Cassa de exito" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Tu messages inviate" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Non comprendeva le syntaxe del message." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Non un usator registrate." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Pardono, isto non es tu adresse de e-mail entrante." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Pardono, le reception de e-mail non es permittite." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Typo de message non supportate: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8343,10 +8348,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" non es un typo de file supportate in iste servitor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Inviar un nota directe" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Selige destinatario:" @@ -8354,29 +8362,67 @@ msgstr "Selige destinatario:" msgid "No mutual subscribers." msgstr "Nulle subscriptores mutual." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "A" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Inviar" +#. TRANS: Header in message list. msgid "Messages" msgstr "Messages" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "via" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#, fuzzy +msgid "Cannot get author for activity." msgstr "Non pote determinar le autor pro le activitate." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "Le marcapaginas non es publicate in iste gruppo." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Le objecto non es inviate a iste usator." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#, fuzzy +msgid "Do not know how to handle this kind of target." msgstr "Non sape manear iste typo de destination." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8423,70 +8469,87 @@ msgstr "" "Pardono, le obtention de tu geolocalisation prende plus tempore que " "previste. Per favor reproba plus tarde." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "in" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "in contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetite per" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a iste nota" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Deler iste nota" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#, fuzzy msgid "Notice repeated." -msgstr "Nota repetite" +msgstr "Nota repetite." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Actualisar tu stato..." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Pulsar iste usator" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Pulsar" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Inviar un pulsata a iste usator" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Error durante le insertion del nove profilo." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Error durante le insertion del avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Error durante le insertion del profilo remote." @@ -8494,7 +8557,9 @@ msgstr "Error durante le insertion del profilo remote." msgid "Duplicate notice." msgstr "Nota duplicate." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Non poteva inserer nove subscription." #. TRANS: Menu item in personal group navigation menu. @@ -8509,29 +8574,29 @@ msgid "Your profile" msgstr "Tu profilo" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Responsas" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Favorites" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) -#, fuzzy msgctxt "FIXME" msgid "User" -msgstr "Usator" +msgstr "iste usator" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" msgstr "Messages" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Tu messages recipite" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8556,7 +8621,6 @@ msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Le descriptiones de plug-ins non es disponibile si disactivate.)" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" msgstr "Configurationes" @@ -8570,7 +8634,6 @@ msgid "Site configuration" msgstr "Configuration del sito" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Clauder session" @@ -8583,7 +8646,6 @@ msgid "Login to the site" msgstr "Authenticar te a iste sito" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cercar" @@ -8638,7 +8700,6 @@ msgstr "Methodo non implementate." #. TRANS: Menu item in search group navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Groups" msgstr "Gruppos" @@ -8648,7 +8709,6 @@ msgid "User groups" msgstr "Gruppos de usatores" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" msgstr "Etiquettas recente" @@ -8658,29 +8718,29 @@ msgid "Recent tags" msgstr "Etiquettas recente" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Featured" msgstr "In evidentia" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Nulle parametro return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repeter iste nota?" -msgid "Yes" -msgstr "Si" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repeter iste nota" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revocar le rolo \"%s\" de iste usator" @@ -8689,9 +8749,13 @@ msgstr "Revocar le rolo \"%s\" de iste usator" msgid "Page not found." msgstr "Pagina non trovate." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Cassa de sablo" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Mitter iste usator in le cassa de sablo" @@ -8710,7 +8774,6 @@ msgid "Search" msgstr "Cercar" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "People" msgstr "Personas" @@ -8720,7 +8783,6 @@ msgid "Find people on this site" msgstr "Cercar personas in iste sito" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Notices" msgstr "Notas" @@ -8734,68 +8796,60 @@ msgid "Find groups on this site" msgstr "Cercar gruppos in iste sito" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Adjuta" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy msgctxt "MENU" msgid "About" msgstr "A proposito" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy msgctxt "MENU" msgid "FAQ" msgstr "FAQ" #. TRANS: Secondary navigation menu item leading to Terms of Service. -#, fuzzy msgctxt "MENU" msgid "TOS" msgstr "CdS" #. TRANS: Secondary navigation menu item leading to privacy policy. -#, fuzzy msgctxt "MENU" msgid "Privacy" msgstr "Confidentialitate" #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. -#, fuzzy msgctxt "MENU" msgid "Source" msgstr "Fonte" #. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. -#, fuzzy msgctxt "MENU" msgid "Version" msgstr "Version" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy msgctxt "MENU" msgid "Contact" msgstr "Contacto" #. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy msgctxt "MENU" msgid "Badge" msgstr "Insignia" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Section sin titulo" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Plus…" #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Settings" msgstr "Configurationes" @@ -8805,7 +8859,6 @@ msgid "Change your profile settings" msgstr "Cambiar le optiones de tu profilo" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Avatar" msgstr "Avatar" @@ -8815,7 +8868,6 @@ msgid "Upload an avatar" msgstr "Incargar un avatar" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Password" msgstr "Contrasigno" @@ -8825,7 +8877,6 @@ msgid "Change your password" msgstr "Cambiar tu contrasigno" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Email" msgstr "E-mail" @@ -8839,7 +8890,6 @@ msgid "Design your profile" msgstr "Designar tu profilo" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "URL" msgstr "URL" @@ -8849,7 +8899,6 @@ msgid "URL shorteners" msgstr "Abbreviatores de URL" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "MI" @@ -8859,7 +8908,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Actualisationes per messageria instantanee (MI)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -8869,7 +8917,6 @@ msgid "Updates by SMS" msgstr "Actualisationes per SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Connexiones" @@ -8878,53 +8925,55 @@ msgstr "Connexiones" msgid "Authorized connected applications" msgstr "Applicationes autorisate connectite" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silentiar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silentiar iste usator" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscriptions" msgstr "Subscriptiones" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to." -msgstr "Personas que %s seque" +msgstr "Personas a qui %s es subscribite." #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Subscriptores" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s." -msgstr "Personas qui seque %s" +msgstr "Personas subscribite a %s." #. TRANS: Menu item in local navigation menu. #. TRANS: %d is the number of pending subscription requests. -#, fuzzy, php-format +#, php-format msgctxt "MENU" msgid "Pending (%d)" -msgstr "Membro pendente" +msgstr "Pendente (%d)" #. TRANS: Menu item title in local navigation menu. #, php-format msgid "Approve pending subscription requests." -msgstr "" +msgstr "Approbar requestas de subscription pendente." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Groups %s is a member of." -msgstr "Gruppos del quales %s es membro" +msgstr "Gruppos del quales %s es membro." #. TRANS: Menu item in local navigation menu. msgctxt "MENU" @@ -8933,22 +8982,25 @@ msgstr "Invitar" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Invite friends and colleagues to join you on %s." -msgstr "Invitar amicos e collegas a accompaniar te in %s" +msgstr "Invitar amicos e collegas a accompaniar te in %s." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscriber a iste usator" -msgid "Subscribe" -msgstr "Subscriber" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Etiquettario de personas como auto-etiquettate" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Etiquettario de personas como etiquettate" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nulle" @@ -8956,20 +9008,28 @@ msgstr "Nulle" msgid "Invalid theme name." msgstr "Nomine de apparentia invalide." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Iste servitor non pote manear le incargamento de apparentias sin supporto de " "ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Le file del apparentia manca o le incargamento ha fallite." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Salveguarda del apparentia fallite." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Apparentia invalide: mal structura de directorios." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8981,9 +9041,12 @@ msgstr[1] "" "Le apparentia incargate es troppo voluminose; debe occupar minus de %d bytes " "in forma non comprimite." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Archivo de apparentia invalide: manca le file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -8991,15 +9054,19 @@ msgstr "" "Le apparentia contine un nomine de file o dossier invalide. Limita te a " "litteras ASCII, digitos, sublineamento, e signo minus." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "Le thema contine nomines de extension de file insecur; pote esser insecur." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" "Le apparentia contine un file del typo '.%s', le qual non es permittite." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Error durante le apertura del archivo del apparentia." @@ -9037,8 +9104,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Tu ha favorite iste nota." -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Un persona ha favorite iste nota." @@ -9049,8 +9117,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Tu ha repetite iste nota." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Un persona ha repetite iste nota." @@ -9063,24 +9132,23 @@ msgstr "Qui scribe le plus" #. TRANS: Option in drop-down of potential addressees. msgctxt "SENDTO" msgid "Everyone" -msgstr "" +msgstr "Omnes" #. TRANS: Option in drop-down of potential addressees. #. TRANS: %s is a StatusNet sitename. #, php-format msgid "My colleagues at %s" -msgstr "" +msgstr "Mi collegas a %s" #. TRANS: Label for drop-down of potential addressees. -#, fuzzy msgctxt "LABEL" msgid "To:" -msgstr "A" +msgstr "A:" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. -#, fuzzy, php-format +#, php-format msgid "Unknown to value: \"%s\"." -msgstr "Verbo incognite: \"%s\"." +msgstr "Valor incognite de \"A:\": \"%s\"." #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" @@ -9195,14 +9263,8 @@ msgstr "XML invalide, radice XRD mancante." msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." -#~ msgid "Restore default designs" -#~ msgstr "Restaurar apparentias predefinite" +#~ msgid "Yes" +#~ msgstr "Si" -#~ msgid "Reset back to default" -#~ msgstr "Revenir al predefinitiones" - -#~ msgid "Save design" -#~ msgstr "Salveguardar apparentia" - -#~ msgid "Not an atom feed." -#~ msgstr "Non es un syndication Atom." +#~ msgid "Subscribe" +#~ msgstr "Subscriber" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 192da638cd..32e61c4f54 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:23+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -137,6 +137,7 @@ msgstr "Pagina inesistente." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Utente inesistente." @@ -906,6 +907,7 @@ msgstr "Il client deve fornire un parametro \"status\" con un valore." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1514,6 +1516,7 @@ msgstr "Non bloccare questo utente" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sì" @@ -2497,6 +2500,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Il servizio remoto usa una versione del protocollo OMB sconosciuta." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Errore nell'aggiornare il profilo remoto." @@ -4128,6 +4132,8 @@ msgstr "Condividi la mia posizione attuale quando invio messaggi" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etichette" @@ -4702,6 +4708,7 @@ msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5103,6 +5110,8 @@ msgstr "Membri" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(nessuno)" @@ -6084,6 +6093,7 @@ msgid "Accept" msgstr "Accetta" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Abbonati a questo utente" @@ -6572,6 +6582,7 @@ msgid "Unable to save tag." msgstr "Impossibile salvare l'etichetta." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Non ti è possibile abbonarti." @@ -7272,6 +7283,7 @@ msgid "AJAX error" msgstr "Errore di Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Comando completato" @@ -7734,6 +7746,7 @@ msgid "Public" msgstr "Pubblico" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Elimina" @@ -7760,7 +7773,6 @@ msgid "Upload file" msgstr "Carica file" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8108,8 +8120,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8506,9 +8518,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Solo l'utente può leggere la propria casella di posta." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8517,33 +8531,48 @@ msgstr "" "iniziare una conversazione con altri utenti. Altre persone possono mandare " "messaggi riservati solamente a te." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "In arrivo" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "I tuoi messaggi in arrivo" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Inviati" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "I tuoi messaggi inviati" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Impossibile analizzare il messaggio." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Non è un utente registrato." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Quella non è la tua email di ricezione." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Email di ricezione non consentita." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipo di messaggio non supportato: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8596,10 +8625,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" non è un tipo di file supportata su questo server." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Invia un messaggio diretto" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Seleziona licenza" @@ -8609,32 +8641,68 @@ msgstr "Seleziona licenza" msgid "No mutual subscribers." msgstr "Non hai l'abbonamento!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "A" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Invia" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Messaggio" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "via" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Email" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Non fai parte di questo gruppo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Non eliminare il messaggio" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8682,44 +8750,52 @@ msgstr "" "Il recupero della tua posizione geografica sta impiegando più tempo del " "previsto. Riprova più tardi." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "presso" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "in una discussione" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Ripetuto da" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Rispondi" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Elimina questo messaggio" @@ -8728,24 +8804,34 @@ msgstr "Elimina questo messaggio" msgid "Notice repeated." msgstr "Messaggio ripetuto" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Richiama questo utente" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Richiama" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Invia un richiamo a questo utente" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Errore nell'inserire il nuovo profilo." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Errore nell'inserire l'immagine." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Errore nell'inserire il profilo remoto." @@ -8753,7 +8839,9 @@ msgstr "Errore nell'inserire il profilo remoto." msgid "Duplicate notice." msgstr "Messaggio duplicato." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Impossibile inserire un nuovo abbonamento." #. TRANS: Menu item in personal group navigation menu. @@ -8793,6 +8881,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Messaggio" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "I tuoi messaggi in arrivo" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8833,7 +8925,6 @@ msgid "Site configuration" msgstr "Configurazione utente" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Esci" @@ -8846,7 +8937,6 @@ msgid "Login to the site" msgstr "Accedi al sito" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cerca" @@ -8933,18 +9023,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Famosi" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Nessun argomento return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Ripetere questo messaggio?" -msgid "Yes" -msgstr "Sì" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Ripeti questo messaggio" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoca il ruolo \"%s\" a questo utente" @@ -8954,9 +9046,13 @@ msgstr "Revoca il ruolo \"%s\" a questo utente" msgid "Page not found." msgstr "Metodo delle API non trovato." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Sandbox" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Metti questo utente nella \"sandbox\"" @@ -8999,7 +9095,6 @@ msgid "Find groups on this site" msgstr "Trova gruppi in questo sito" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Aiuto" @@ -9053,9 +9148,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Badge" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sezione senza nome" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Altro..." @@ -9143,9 +9240,13 @@ msgstr "Connessioni" msgid "Authorized connected applications" msgstr "Applicazioni collegate autorizzate" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Zittisci" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Zittisci questo utente" @@ -9202,18 +9303,21 @@ msgstr "Invita" msgid "Invite friends and colleagues to join you on %s." msgstr "Invita amici e colleghi a seguirti su %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Abbonati a questo utente" -msgid "Subscribe" -msgstr "Abbonati" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Insieme delle etichette delle persone come auto-etichettate" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Insieme delle etichette delle persone come etichettate" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nessuno" @@ -9222,19 +9326,27 @@ msgstr "Nessuno" msgid "Invalid theme name." msgstr "Nome file non valido." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Questo server non è in grado di gestire caricamenti senza il supporto ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Manca il file del tema o il caricamento non è riuscito." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Salvataggio del tema non riuscito." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema non valido: struttura directory non corretta." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9244,9 +9356,12 @@ msgstr[0] "" msgstr[1] "" "Il tema caricato è troppo grande, deve essere meno di %d byte non compresso." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "File di tema non valido: manca il file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9254,14 +9369,18 @@ msgstr "" "Il tema contiene file non o nomi di cartelle non validi. Utilizzare " "solamente caratteri ASCII, numeri, il trattino basso e il segno meno." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "Il tema contiene file con estensioni non sicure: potrebbe non essere sicuro." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Il tema contiene file di tipo \".%s\" che non sono supportati." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Errore nell'aprire il file del tema." @@ -9301,8 +9420,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Rendi questo messaggio un preferito" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Togli questo messaggio dai preferiti" @@ -9314,8 +9434,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Hai già ripetuto quel messaggio." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Hai già ripetuto quel messaggio." @@ -9465,15 +9586,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Ripristina i valori predefiniti" +#~ msgid "Yes" +#~ msgstr "Sì" -#~ msgid "Reset back to default" -#~ msgstr "Reimposta i valori predefiniti" - -#~ msgid "Save design" -#~ msgstr "Salva aspetto" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Tutti i membri" +#~ msgid "Subscribe" +#~ msgstr "Abbonati" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index d69940baf1..65f04cc3d3 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:47:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:25+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -139,6 +139,7 @@ msgstr "そのようなページはありません。" #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "そのようなユーザはいません。" @@ -898,6 +899,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1506,6 +1508,7 @@ msgstr "このユーザをアンブロックする" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "はい" @@ -2495,6 +2498,7 @@ msgstr "" "リモートサービスは、不明なバージョンの OMB プロトコルを使用しています。" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. #, fuzzy msgid "Error updating remote profile." msgstr "リモートプロファイル更新エラー" @@ -4121,6 +4125,8 @@ msgstr "つぶやきを投稿するときには私の現在の場所を共有し #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "タグ" @@ -4689,6 +4695,7 @@ msgstr "プロファイルサービスまたはマイクロブロギングサー #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5095,6 +5102,8 @@ msgstr "メンバー" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(なし)" @@ -6085,6 +6094,7 @@ msgid "Accept" msgstr "承認" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "このユーザーをフォロー" @@ -6558,6 +6568,7 @@ msgid "Unable to save tag." msgstr "タグをを保存できません。" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "あなたはフォローが禁止されました。" @@ -7263,6 +7274,7 @@ msgid "AJAX error" msgstr "Ajax エラー" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "コマンド完了" @@ -7722,6 +7734,7 @@ msgid "Public" msgstr "パブリック" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "削除" @@ -7748,7 +7761,6 @@ msgid "Upload file" msgstr "ファイルアップロード" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8090,8 +8102,8 @@ msgstr[0] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8459,9 +8471,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "ユーザだけがかれら自身のメールボックスを読むことができます。" +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8470,33 +8484,48 @@ msgstr "" "に引き込むプライベートメッセージを送ることができます。人々はあなただけへの" "メッセージを送ることができます。" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "受信箱" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "あなたの入ってくるメッセージ" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "送信箱" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "あなたが送ったメッセージ" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "メッセージを分析できませんでした。" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "登録ユーザではありません。" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "すみません、それはあなたの入って来るメールアドレスではありません。" +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "すみません、入ってくるメールは許可されていません。" -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "サポート外のメッセージタイプ: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8548,10 +8577,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "直接つぶやきを送る" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "キャリア選択" @@ -8561,33 +8593,68 @@ msgstr "キャリア選択" msgid "No mutual subscribers." msgstr "フォローしていません!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "To" +#. TRANS: Button text for sending a direct notice. #, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "投稿" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "メッセージ" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "from" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "メール" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "このグループのメンバーではありません。" +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "このつぶやきを削除できません。" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8634,48 +8701,56 @@ msgstr "" "すみません、あなたの位置を検索するのが予想より長くかかっています、後でもう一" "度試みてください" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. #, fuzzy msgid "N" msgstr "北" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. #, fuzzy msgid "S" msgstr "南" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. #, fuzzy msgid "E" msgstr "東" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. #, fuzzy msgid "W" msgstr "西" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "at" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "このつぶやきへ返信" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "返信" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "このつぶやきを削除" @@ -8684,24 +8759,34 @@ msgstr "このつぶやきを削除" msgid "Notice repeated." msgstr "つぶやきを繰り返しました" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "このユーザへ合図" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "合図" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "このユーザへ合図を送る" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8709,7 +8794,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "サブスクリプションを追加できません" #. TRANS: Menu item in personal group navigation menu. @@ -8748,6 +8835,10 @@ msgctxt "MENU" msgid "Messages" msgstr "メッセージ" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "あなたの入ってくるメッセージ" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8788,7 +8879,6 @@ msgid "Site configuration" msgstr "ユーザ設定" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "ロゴ" @@ -8888,18 +8978,20 @@ msgctxt "MENU" msgid "Popular" msgstr "人気" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "return-to 引数がありません。" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "このつぶやきを繰り返しますか?" -msgid "Yes" -msgstr "はい" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "このつぶやきを繰り返す" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "このグループからこのユーザをブロック" @@ -8909,9 +9001,13 @@ msgstr "このグループからこのユーザをブロック" msgid "Page not found." msgstr "API メソッドが見つかりません。" +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "サンドボックス" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "このユーザをサンドボックス" @@ -9007,9 +9103,11 @@ msgctxt "MENU" msgid "Badge" msgstr "バッジ" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "名称未設定のセクション" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "さらに..." @@ -9097,9 +9195,13 @@ msgstr "接続" msgid "Authorized connected applications" msgstr "承認された接続アプリケーション" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "サイレンス" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "このユーザをサイレンスに" @@ -9157,18 +9259,21 @@ msgstr "招待" msgid "Invite friends and colleagues to join you on %s." msgstr "友人や同僚が %s で加わるよう誘ってください。" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "このユーザーをフォロー" -msgid "Subscribe" -msgstr "フォロー" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "自己タグづけとしての人々タグクラウド" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "タグ付けとしての人々タグクラウド" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "なし" @@ -9177,40 +9282,53 @@ msgstr "なし" msgid "Invalid theme name." msgstr "不正なサイズ。" +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "アバターの更新に失敗しました。" -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "ブロックの削除エラー" @@ -9249,8 +9367,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "このつぶやきをお気に入りにする" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "このつぶやきのお気に入りをやめる" @@ -9261,8 +9380,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "すでにそのつぶやきを繰り返しています。" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "すでにつぶやきを繰り返しています。" @@ -9407,15 +9527,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "デフォルトデザインに戻す。" +#~ msgid "Yes" +#~ msgstr "はい" -#~ msgid "Reset back to default" -#~ msgstr "デフォルトへリセットする" - -#~ msgid "Save design" -#~ msgstr "デザインの保存" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "全てのメンバー" +#~ msgid "Subscribe" +#~ msgstr "フォロー" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index e500161cb4..12afe428e3 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:27+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -133,6 +133,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "ასეთი მომხმარებელი არ არსებობს." @@ -883,6 +884,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1484,6 +1486,7 @@ msgstr "არ დაბლოკო ეს მომხმარებელი #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "დიახ" @@ -2463,6 +2466,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "დაშორებული სერვისი OMB პროტოკოლის უცნობ ვერსიას იყენებს." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "შეცდომა დაშორებული პროფილის განახლებისას." @@ -4077,6 +4081,8 @@ msgstr "გააზიარე ჩემი მდებარეობა შ #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "სანიშნეები" @@ -4646,6 +4652,7 @@ msgstr "თქვენი პროფილის URL სხვა თავ #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5044,6 +5051,8 @@ msgstr "წევრები" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(არცერთი)" @@ -6007,6 +6016,7 @@ msgid "Accept" msgstr "მიღება" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "გამოიწერე ეს მომხმარებელი" @@ -6491,6 +6501,7 @@ msgid "Unable to save tag." msgstr "სანიშნეს დამახსოვრება ვერ ხერხდება." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "თქვენ აგეკრძალათ გამოწერა." @@ -7186,6 +7197,7 @@ msgid "AJAX error" msgstr "Ajax შეცდომა" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "ბრძანება დასრულდა" @@ -7641,6 +7653,7 @@ msgid "Public" msgstr "საჯარო" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "წაშლა" @@ -7667,7 +7680,6 @@ msgid "Upload file" msgstr "ფაილის ატვირთვა" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8010,8 +8022,8 @@ msgstr[0] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8384,9 +8396,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "მხოლოდ მომხმარებელს შეუძლია თავისი ფოსტის წაკითხვა." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8395,35 +8409,50 @@ msgstr "" "შეტყობინებები, რომ ჩაერთოთ საუბრებში სხვა ხალხთან. ხალხს შეუძლია " "გამოგიგზავნონ შეტყობინებები მხოლოდ თქვენ დასანახად." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "შემომავალი წერილების ყუთი" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "თქვენი შემომავალი შეტყობინებები" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "გამავალი წერილების ყუთი" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "თქვენი გაგზავნილი წერილები" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "შეტყობინების გაცრა (გა-parse-ვა) ვერ მოხერხდა." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "მომხმარებელი რეგისტრირებული არ არის." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "" "ბოდიში, მაგრამ ეს არ არის თქვენი რეგისტრირებული შემომავალი ელ. ფოსტის " "მისამართი." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "ბოდიში, შემომავალი ელ. ფოსტის მისამართი არ არის დაშვებული." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "შეტყობინების ტიპი არ არის მხარდაჭერილი: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8473,10 +8502,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "გააგზავნე პირდაპირი შეტყობინება" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "აირჩიეთ ოპერატორი" @@ -8486,32 +8518,67 @@ msgstr "აირჩიეთ ოპერატორი" msgid "No mutual subscribers." msgstr "არ გაქვთ გამოწერილი!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "ვის" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "გაგზავნა" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "შეტყობინება" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "ვისგან" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "ელ. ფოსტა" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "თვენ არ ხართ ამ ჯგუფის წევრი." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "არ წაშალო ეს შეტყობინება" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8558,44 +8625,52 @@ msgstr "" "ბოდიში, როგორც ჩანს ადგილმდებარეობის დადგენას ჩვეულებრივზე მეტი ხანი " "სჭირდება, გთხოვთ სცადოთ მოგვიანებით" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "ჩ" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "ს" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "ა" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "დ" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "უპასუხე ამ შეტყობინებას" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "პასუხი" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "შეტყობინების წაშლა" @@ -8604,24 +8679,33 @@ msgstr "შეტყობინების წაშლა" msgid "Notice repeated." msgstr "შეტყობინება გამეორებულია" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "" +#. TRANS: Button text to nudge/ping another user. +msgctxt "BUTTON" msgid "Nudge" msgstr "" -msgid "Send a nudge to this user" -msgstr "" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." +msgstr "გაუგზავნე პირდაპირი შეტყობინება ამ მომხმარებელს" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8629,7 +8713,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა." #. TRANS: Menu item in personal group navigation menu. @@ -8669,6 +8755,10 @@ msgctxt "MENU" msgid "Messages" msgstr "შეტყობინება" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "თქვენი შემომავალი შეტყობინებები" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8709,7 +8799,6 @@ msgid "Site configuration" msgstr "მომხმარებლის კონფიგურაცია" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "გასვლა" @@ -8724,7 +8813,6 @@ msgid "Login to the site" msgstr "საიტზე შესვლა" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "ძიება" @@ -8811,18 +8899,20 @@ msgctxt "MENU" msgid "Popular" msgstr "პოპულარული" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "გავიმეორო ეს შეტყობინება?" -msgid "Yes" -msgstr "დიახ" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "შეტყობინების გამეორება" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "ჩამოართვი \"%s\" როლი ამ მომხმარებელს" @@ -8832,9 +8922,13 @@ msgstr "ჩამოართვი \"%s\" როლი ამ მომხმ msgid "Page not found." msgstr "API მეთოდი ვერ მოიძებნა." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" -msgstr "" +msgstr "იზოლირების მოხსნა" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "ამ მომხმარებლის იზოლირება" @@ -8877,7 +8971,6 @@ msgid "Find groups on this site" msgstr "მოძებნე ჯგუფები ამ საიტზე" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "დახმარება" @@ -8931,9 +9024,11 @@ msgctxt "MENU" msgid "Badge" msgstr "იარლიყი" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "უსათაურო სექცია" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "მეტი..." @@ -9020,9 +9115,13 @@ msgstr "შეერთებები" msgid "Authorized connected applications" msgstr "ავტორიზირებული შეერთებული აპლიკაციები" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "დადუმება" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "ამ მომხმარებლის დადუმება" @@ -9079,18 +9178,21 @@ msgstr "მოწვევა" msgid "Invite friends and colleagues to join you on %s." msgstr "მოიწვიე მეგობრები და კოლეგები %s-ზე" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "გამოიწერე ეს მომხმარებელი" -msgid "Subscribe" -msgstr "გამოწერა" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "მომხმარებლების სანიშნეების ღრუბელი (თვითმონიშნული)" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "მომხმარებლების სანიშნეების ღრუბელი (როგორც სხვებმა მონიშნეს)" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "არაფერი" @@ -9099,18 +9201,26 @@ msgstr "არაფერი" msgid "Invalid theme name." msgstr "ფაილის არასწორი სახელი." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "ამ სერვერს არ შეუძლია თემების ატვირთვა ZIP-ის მხარდაჭერის გარეშე." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "თემის ფაილი არ არის, ან ატვირთვა ვერ მოხერხდა." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "თემის შენახვა ჩაიშალა." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "არასწორი თემა: დირექტორიების არასწორი სტრუქტურა." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9118,9 +9228,12 @@ msgid_plural "" msgstr[0] "" "ატვირთული თემა ძალიან დიდია; შეუკუმშავი უნდა იყოს %d ბაიტზე ნაკლები." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "თემის არასწორი არქივი: ფაილი css/display.css არ არის" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9128,14 +9241,18 @@ msgstr "" "თემა შეიცავს ფაილის ან საქაღალდის არასწორ სახელს. გამოიყენეთ ASCII ასოები, " "ციფრები, ქვედა ტირე, და მინუსის ნიშანი." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "თემა ფაილის გაფართოებების საშიშ სახელებს შეიცავს; შეიძლება არ იყოს უსაფრთხო." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "თემა შეიცავს ფაილის ტიპს '.%s', რომელიც აკრძალულია." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "თემის არქივის გახსნისას მოხდა შეცდომა." @@ -9174,8 +9291,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "ჩაამატე რჩეულებში ეს შეტყობინება" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "ამოშალე რჩეულებიდან ეს შეტყობინება" @@ -9186,8 +9304,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "ეს შეტყობინება უკვე გამეორებულია." @@ -9333,11 +9452,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "დააბრუნე პირვანდელი დიზაინი" +#~ msgid "Yes" +#~ msgstr "დიახ" -#~ msgid "Reset back to default" -#~ msgstr "პირვანდელის პარამეტრების დაბრუნება" - -#~ msgid "Save design" -#~ msgstr "შეინახე დიზაინი" +#~ msgid "Subscribe" +#~ msgstr "გამოწერა" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 6980266a7a..5f2936d1c6 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:29+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -135,6 +135,7 @@ msgstr "해당하는 페이지 없음" #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "해당하는 이용자 없음" @@ -889,6 +890,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1492,6 +1494,7 @@ msgstr "이용자를 차단하지 않는다." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "예" @@ -2462,6 +2465,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "OMB 프로토콜의 알려지지 않은 버전" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. #, fuzzy msgid "Error updating remote profile." msgstr "리모트 프로필 업데이트 오류" @@ -4056,6 +4060,8 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "태그" @@ -4610,6 +4616,7 @@ msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4996,6 +5003,8 @@ msgstr "회원" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(없음)" @@ -5943,6 +5952,7 @@ msgid "Accept" msgstr "수락" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "이 회원을 구독합니다." @@ -6419,6 +6429,7 @@ msgid "Unable to save tag." msgstr "태그를 저장할 수 없습니다." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "귀하는 구독이 금지되었습니다." @@ -6804,7 +6815,6 @@ msgid "User configuration" msgstr "메일 주소 확인" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "사용자" @@ -6814,7 +6824,6 @@ msgid "Access configuration" msgstr "메일 주소 확인" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "접근" @@ -6834,7 +6843,6 @@ msgid "Sessions configuration" msgstr "메일 주소 확인" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "세션" @@ -7120,6 +7128,7 @@ msgid "AJAX error" msgstr "Ajax 에러입니다." #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "실행 완료" @@ -7576,6 +7585,7 @@ msgid "Public" msgstr "공개" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "삭제" @@ -7602,7 +7612,6 @@ msgid "Upload file" msgstr "실행 실패" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "개인 아바타를 올릴 수 있습니다. 최대 파일 크기는 2MB입니다." @@ -7942,8 +7951,8 @@ msgstr[0] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8243,41 +8252,58 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "받은 쪽지함" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "받은 메시지" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "보낸 쪽지함" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "보낸 메시지" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "메시지를 분리할 수 없습니다." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "가입된 사용자가 아닙니다." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "죄송합니다. 귀하의 이메일이 아닙니다." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "죄송합니다. 이메일이 허용되지 않습니다." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "지원하지 않는 그림 파일 형식입니다." #. TRANS: Form legend for form to make a user a group admin. @@ -8327,10 +8353,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "직접 메시지 보내기" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "라이선스 선택" @@ -8340,32 +8369,68 @@ msgstr "라이선스 선택" msgid "No mutual subscribers." msgstr "구독하고 있지 않습니다!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "받는 이" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "보내기" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "메시지" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "방법" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "웹" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "메일" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "이 통지를 지울 수 없습니다." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8410,44 +8475,52 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "북" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "남" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "동" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "서" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "위치" -msgid "web" -msgstr "웹" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "문맥" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "재전송됨" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "답장하기" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "이 게시글 삭제하기" @@ -8456,24 +8529,34 @@ msgstr "이 게시글 삭제하기" msgid "Notice repeated." msgstr "게시글이 등록되었습니다." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "이 사용자 찔러 보기" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "찔러 보기" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "이 사용자에게 찔러 보기 메시지 보내기" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8481,7 +8564,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "예약 구독을 추가 할 수 없습니다." #. TRANS: Menu item in personal group navigation menu. @@ -8521,6 +8606,10 @@ msgctxt "MENU" msgid "Messages" msgstr "메시지" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "받은 메시지" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8562,7 +8651,6 @@ msgid "Site configuration" msgstr "메일 주소 확인" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "로그아웃" @@ -8575,7 +8663,6 @@ msgid "Login to the site" msgstr "이 사이트에 로그인" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "검색" @@ -8662,20 +8749,21 @@ msgctxt "MENU" msgid "Popular" msgstr "인기있는" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "첨부문서 없음" +#. TRANS: For legend for notice repeat form. #, fuzzy msgid "Repeat this notice?" msgstr "이 게시글에 대해 답장하기" -msgid "Yes" -msgstr "예" - +#. TRANS: Button title to repeat a notice on notice repeat form. #, fuzzy -msgid "Repeat this notice" +msgid "Repeat this notice." msgstr "이 게시글에 대해 답장하기" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "그룹 이용자는 차단해제" @@ -8685,10 +8773,13 @@ msgstr "그룹 이용자는 차단해제" msgid "Page not found." msgstr "API 메서드 발견 안 됨." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "받은 쪽지함" +#. TRANS: Description of form to sandbox a user. #, fuzzy msgid "Sandbox this user" msgstr "이 사용자를 차단해제합니다." @@ -8732,7 +8823,6 @@ msgid "Find groups on this site" msgstr "이 사이트에서 그룹 찾기" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "도움말" @@ -8786,9 +8876,11 @@ msgctxt "MENU" msgid "Badge" msgstr "배지" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "제목없는 섹션" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "더 보기..." @@ -8868,7 +8960,6 @@ msgid "Updates by SMS" msgstr "SMS에 의한 업데이트" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "연결" @@ -8878,10 +8969,13 @@ msgstr "연결" msgid "Authorized connected applications" msgstr "응용프로그램 삭제" +#. TRANS: Title of form to silence a user. #, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "사이트 공지" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "이 사용자 삭제" @@ -8938,18 +9032,21 @@ msgstr "초대" msgid "Invite friends and colleagues to join you on %s." msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "이 회원을 구독합니다." -msgid "Subscribe" -msgstr "구독" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "없음" @@ -8958,40 +9055,53 @@ msgstr "없음" msgid "Invalid theme name." msgstr "옳지 않은 크기" +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "아바타 업데이트 실패" -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "차단 제거 에러!" @@ -9030,8 +9140,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "이 게시글을 좋아합니다." +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "이 게시글 좋아하기 취소" @@ -9042,8 +9153,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "이미 재전송된 소식입니다." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "이미 재전송된 소식입니다." @@ -9189,9 +9301,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Save design" -#~ msgstr "디자인 저장" +#~ msgid "Yes" +#~ msgstr "예" -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "모든 회원" +#~ msgid "Subscribe" +#~ msgstr "구독" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index c4d0cb7d63..55221e84ac 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -136,6 +136,7 @@ msgstr "Нема таква страница." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Нема таков корисник." @@ -374,22 +375,22 @@ msgstr "Не успеа одблокирањето на корисникот." #. TRANS: Title. %s is a user nickname. #, php-format msgid "Direct messages from %s" -msgstr "Директни пораки од %s" +msgstr "Непосредни пораки од %s" #. TRANS: Subtitle. %s is a user nickname. #, php-format msgid "All the direct messages sent from %s" -msgstr "Сите директни пораки испратени од %s" +msgstr "Сите непосредни пораки испратени од %s" #. TRANS: Title. %s is a user nickname. #, php-format msgid "Direct messages to %s" -msgstr "Директни пораки до %s" +msgstr "Непосредни пораки за %s" #. TRANS: Subtitle. %s is a user nickname. #, php-format msgid "All the direct messages sent to %s" -msgstr "Сите директни пораки испратени до %s" +msgstr "Сите непосредни пораки испратени до %s" #. TRANS: Client error displayed when no message text was submitted (406). msgid "No message text!" @@ -892,6 +893,7 @@ msgstr "Клиентот мора да укаже вредност за пара #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1433,7 +1435,7 @@ msgstr "" "Можете да зачувате резервна верзија на Вашите податоци во сметката во " "форматот Activity Streams. Ова е " "експериментална функција која прави нецелосна резерва. Во резервата нема да " -"се зачуваат лични податоци како е-пошта и адреса за IM. Покрај ова, во " +"се зачуваат лични податоци како е-пошта и адреса за НП. Покрај ова, во " "резервата не се зачувуваат и подигнатите податотеки и непосредните пораки." #. TRANS: Submit button to backup an account on the backup account page. @@ -1486,6 +1488,7 @@ msgstr "Не го блокирај корисников." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1609,11 +1612,11 @@ msgstr "Оваа адреса веќе е потврдена." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. msgid "Could not update user IM preferences." -msgstr "Не можев да ги подновам нагодувањата за IM." +msgstr "Не можев да ги подновам нагодувањата за НП." #. TRANS: Server error displayed when adding IM preferences fails. msgid "Could not insert user IM preferences." -msgstr "Не можев да се вметнам кориснички нагодувања за IM." +msgstr "Не можев да се вметнам кориснички нагодувања за НП." #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. @@ -2436,6 +2439,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Далечинската служба користи непозната верзија на OMB протокол." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Грешка во подновувањето на далечинскиот профил." @@ -2718,7 +2722,7 @@ msgstr "Грешка при отстранување на блокот." #. TRANS: Title for Instant Messaging settings. msgid "IM settings" -msgstr "Нагодувања за IM" +msgstr "Нагодувања за НП" #. TRANS: Instant messaging settings page instructions. #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. @@ -2733,7 +2737,7 @@ msgstr "" #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." -msgstr "IM е недостапно." +msgstr "НП е недостапно." #. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed. #, php-format @@ -2753,7 +2757,7 @@ msgstr "" #. TRANS: Field label for IM address. msgid "IM address" -msgstr "IM адреса" +msgstr "НП-адреса" #. TRANS: Field title for IM address. %s is the IM service name. #, php-format @@ -2762,7 +2766,7 @@ msgstr "%s прекар." #. TRANS: Header for IM preferences form. msgid "IM Preferences" -msgstr "Нагодувања на IM" +msgstr "Нагодувања за НП" #. TRANS: Checkbox label in IM preferences form. msgid "Send me notices" @@ -2782,7 +2786,7 @@ msgstr "Објави MicroID" #. TRANS: Server error thrown on database error updating IM preferences. msgid "Could not update IM preferences." -msgstr "Не можев да ги подновам нагодувањата за IM." +msgstr "Не можев да ги подновам нагодувањата за НП." #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2811,11 +2815,11 @@ msgstr "Прекарот му припаѓа на друг корисник." #. TRANS: Message given saving valid IM address that is to be confirmed. msgid "A confirmation code was sent to the IM address you added." -msgstr "Испративме потврден код на IM-адресата што ја додадовте." +msgstr "Испративме потврден код на НП-адресата што ја додадовте." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. msgid "That is the wrong IM address." -msgstr "Ова е погрешната IM адреса." +msgstr "Ова е погрешната НП-адреса." #. TRANS: Server error thrown on database error canceling IM address confirmation. msgid "Could not delete confirmation." @@ -2823,7 +2827,7 @@ msgstr "Не можев да ја избришам потврдата." #. TRANS: Message given after successfully canceling IM address confirmation. msgid "IM confirmation cancelled." -msgstr "Потврдата на IM е откажана." +msgstr "Потврдата на НП е откажана." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. @@ -2832,7 +2836,7 @@ msgstr "Тоа не е Вашиот прекар." #. TRANS: Message given after successfully removing a registered Instant Messaging address. msgid "The IM address was removed." -msgstr "IM-адресата е отстранета." +msgstr "НП-адресата е отстранета." #. TRANS: Title for all but the first page of the inbox page. #. TRANS: %1$s is the user's nickname, %2$s is the page number. @@ -4012,6 +4016,8 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Ознаки" @@ -4484,7 +4490,7 @@ msgid "" "email address, IM address, and phone number." msgstr "" "Мојот текст и податотеки се достапни под %s, освен следниве приватни " -"податоци: лозинка, е-пошта, IM-адреса и телефонски број." +"податоци: лозинка, е-пошта, НП-адреса и телефонски број." #. TRANS: Text displayed after successful account registration. #. TRANS: %1$s is the registered nickname, %2$s is the profile URL. @@ -4570,6 +4576,7 @@ msgstr "!URL на Вашиот профил на друга складна сл #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Претплати се" @@ -4966,6 +4973,8 @@ msgstr "Членови" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Нема)" @@ -5063,9 +5072,9 @@ msgstr "Забелешки од %1$s означени со %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "Забелешки на %2$s, означени со %2$s, страница %3$d" +msgstr "Забелешки на %1$s означени со %2$s, страница %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. @@ -5450,7 +5459,6 @@ msgid "No code entered." msgstr "Нема внесено код." #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Снимки" @@ -5472,7 +5480,6 @@ msgid "Invalid snapshot report URL." msgstr "Неважечки URL за извештај од снимката." #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "Снимки" @@ -5490,33 +5497,29 @@ msgid "Data snapshots" msgstr "Снимки од податоци" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." msgstr "" -"Кога да им се испраќаат статистички податоци на status.net опслужувачите" +"Кога да им се испраќаат статистички податоци на опслужувачите na status.net." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Честота" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." -msgstr "Ќе се испраќаат снимки на секои N посети" +msgstr "Снимките ќе се испраќаат на секои N посети." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL на извештајот" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." -msgstr "Снимките ќе се испраќаат на оваа URL-адреса" +msgstr "Снимките ќе се испраќаат на оваа URL-адреса." #. TRANS: Title for button to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." -msgstr "Зачувај поставки за снимки" +msgstr "Зачувај поставки за снимки." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5533,21 +5536,19 @@ msgstr "Можете да одобрувате само Ваши претпла #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "Членови на групата %s што чекаат одобрение" +msgstr "%s претплатници чекаат на одобрение" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "Членови на групата %1$s што чекаат одобрение, страница %2$d" +msgstr "%1$s претплатници чекаат на одобрение, страница %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "" -"Список на корисниците што чекаат одобрение за да се зачленат во групата." +msgstr "Список на корисниците што чекаат одобрение за да се претплатат на Вас." #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -5658,7 +5659,7 @@ msgstr "Канал со забелешки за %s (Atom)" #. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list. msgid "IM" -msgstr "IM" +msgstr "НП" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. msgid "SMS" @@ -5722,7 +5723,6 @@ msgstr "" "претплатени на Вас." #. TRANS: Title of "tag other users" page. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "Ознаки" @@ -5819,14 +5819,12 @@ msgid "URL shortening service is too long (maximum 50 characters)." msgstr "Услугата за скратување на URL-адреси е предолга (највеќе до 50 знаци)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum URL length." msgstr "Неважечки број за максимална должина на URL-адреса." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#, fuzzy msgid "Invalid number for maximum notice length." -msgstr "Неважечки број за макс. должина на забелешка." +msgstr "Неважечки број за максимална должина на забелешка." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." @@ -5858,7 +5856,6 @@ msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Неважечки опис по основно: „%1$s“ не е корисник." #. TRANS: Fieldset legend in user administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Profile" msgstr "Профил" @@ -5929,6 +5926,7 @@ msgid "Accept" msgstr "Прифати" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Претплати се на корисников." @@ -6275,7 +6273,7 @@ msgstr "Никаде не е пронајдено име на базата ил #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. msgid "You are banned from sending direct messages." -msgstr "Забрането Ви е испраќање на директни пораки." +msgstr "Забрането Ви е испраќање на непосредни пораки." #. TRANS: Message given when a message could not be stored on the server. msgid "Could not insert message." @@ -6324,23 +6322,21 @@ msgid "You are banned from posting notices on this site." msgstr "Забрането Ви е да објавувате забелешки на ова мрежно место." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. -#, fuzzy msgid "Cannot repeat; original notice is missing or deleted." -msgstr "Не можете да ја повторувате сопствената забелешка." +msgstr "" +"Не може да се повтори. Изворната забелешка недостасува или е избришана." #. TRANS: Client error displayed when trying to repeat an own notice. msgid "You cannot repeat your own notice." msgstr "Не можете да повторувате сопствена забелешка." #. TRANS: Client error displayed when trying to repeat a non-public notice. -#, fuzzy msgid "Cannot repeat a private notice." -msgstr "Не можете да ја повторувате сопствената забелешка." +msgstr "Не можете да повторите приватна забелешка." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#, fuzzy msgid "Cannot repeat a notice you cannot read." -msgstr "Не можете да ја повторувате сопствената забелешка." +msgstr "Не можете да повторите забелешка што не можете да ја читате." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." @@ -6348,9 +6344,9 @@ msgstr "Веќе ја имате повторено таа забелешка." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). -#, fuzzy, php-format +#, php-format msgid "%1$s has no access to notice %2$d." -msgstr "Корисникот нема последна забелешка" +msgstr "%1$s нема пристап до забелешката %2$d." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. @@ -6409,6 +6405,7 @@ msgid "Unable to save tag." msgstr "Не можам да ја зачувам ознаката." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Блокирани сте од претплаќање." @@ -6437,7 +6434,6 @@ msgid "Could not delete subscription." msgstr "Не можам да ја избришам претплатата." #. TRANS: Activity title when subscribing to another person. -#, fuzzy msgctxt "TITLE" msgid "Follow" msgstr "Следи" @@ -6506,23 +6502,19 @@ msgid "User deletion in progress..." msgstr "Бришењето на корисникот е во тек..." #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Edit profile settings." -msgstr "Уреди нагодувања на профилот" +msgstr "Уреди нагодувања на профилот." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Edit" msgstr "Уреди" #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Send a direct message to this user." -msgstr "Испрати му директна порака на корисников" +msgstr "Испрати му непосредна порака на корисников." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Message" msgstr "Порака" @@ -6570,7 +6562,6 @@ msgid "Write a reply..." msgstr "Напишете одговор..." #. TRANS: Tab on the notice form. -#, fuzzy msgctxt "TAB" msgid "Status" msgstr "Статус" @@ -6692,9 +6683,9 @@ msgid "No content for notice %s." msgstr "Нема содржина за забелешката %s." #. TRANS: Exception thrown if no user is provided. %s is a user ID. -#, fuzzy, php-format +#, php-format msgid "No such user \"%s\"." -msgstr "Нема корисник по име %s." +msgstr "Нема корисник по име „%s“." #. TRANS: Client exception thrown when post to collection fails with a 400 status. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. @@ -6742,25 +6733,22 @@ msgstr "Не можам да ги избришам нагодувањата за #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" -msgstr "Домашна страница" +msgstr "Почетна" #. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Home" -msgstr "Домашна страница" +msgstr "Почетна" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" -msgstr "Администратор" +msgstr "Админ" #. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" @@ -6787,7 +6775,6 @@ msgid "User configuration" msgstr "Кориснички поставки" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Корисник" @@ -6797,7 +6784,6 @@ msgid "Access configuration" msgstr "Поставки на пристапот" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Пристап" @@ -6807,7 +6793,6 @@ msgid "Paths configuration" msgstr "Поставки на патеки" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Патеки" @@ -6817,7 +6802,6 @@ msgid "Sessions configuration" msgstr "Поставки на сесиите" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Сесии" @@ -6827,7 +6811,6 @@ msgid "Edit site notice" msgstr "Уреди објава за мрежното место" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" msgstr "Напомена за мрежното место" @@ -6837,7 +6820,6 @@ msgid "Snapshots configuration" msgstr "Поставки за снимки" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" msgstr "Снимки" @@ -6847,7 +6829,6 @@ msgid "Set site license" msgstr "Постави лиценца за мреж. место" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "Лиценца" @@ -6857,7 +6838,6 @@ msgid "Plugins configuration" msgstr "Поставки за приклучоци" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Plugins" msgstr "Приклучоци" @@ -7012,9 +6992,8 @@ msgid "Save" msgstr "Зачувај" #. TRANS: Name for an anonymous application in application list. -#, fuzzy msgid "Unknown application" -msgstr "Непознато дејство" +msgstr "Непознат приложен програм" #. TRANS: Message has a leading space and a trailing space. Used in application list. #. TRANS: Before this message the application name is put, behind it the organisation that manages it. @@ -7083,10 +7062,9 @@ msgid "Cancel join request" msgstr "Откажи барање за членство" #. TRANS: Button text for form action to cancel a subscription request. -#, fuzzy msgctxt "BUTTON" msgid "Cancel subscription request" -msgstr "Откажи барање за членство" +msgstr "Откажи барање за претплата" #. TRANS: Title for command results. msgid "Command results" @@ -7097,6 +7075,7 @@ msgid "AJAX error" msgstr "AJAX-грешка" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Наредбата е завршена" @@ -7211,8 +7190,8 @@ msgid "" "%s is a remote profile; you can only send direct messages to users on the " "same server." msgstr "" -"%s е далечински профил; можете да праќате директни пораки само до корисници " -"на истиот опслужувач." +"%s е далечински профил; можете да праќате непосредни пораки само до " +"корисници на истиот опслужувач." #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. @@ -7540,12 +7519,12 @@ msgstr "Грешка во базата на податоци" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" -msgstr "Јавен" +msgstr "Јавна" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Избриши" @@ -7571,12 +7550,11 @@ msgid "Upload file" msgstr "Подигање" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" -"Можете да подигнете Ваша лична позадинска слика. Максималната дозволена " -"големина изнесува 2 МБ." +"Можете да подигнете лична позадинска слика. Максималната дозволена големина " +"изнесува 2МБ." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7644,7 +7622,6 @@ msgstr "Нема автор во емитувањето." #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. -#, fuzzy msgid "Cannot import without a user." msgstr "Не можам да увезам без корисник." @@ -7653,10 +7630,9 @@ msgid "Feeds" msgstr "Канали" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" -msgstr "Сè" +msgstr "Сите" #. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" @@ -7667,12 +7643,10 @@ msgid "Tag" msgstr "Ознака" #. TRANS: Dropdown field title on gallery action page for a list containing tags. -#, fuzzy msgid "Choose a tag to narrow list." -msgstr "Одберете ознака за да го ограничите списокот" +msgstr "Одберете ознака за да го ограничите списокот." #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "Оди" @@ -7914,17 +7888,17 @@ msgstr[1] "%d Б" #. TRANS: %3$s is the display name of an IM plugin. #, fuzzy, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" -"Корисникот „%s“ на %s има изјавено дека Вашиот прекар на %s е негов. Ако ова " -"е вистина, можете да потврдите стискајќи на оваа URL-адреса: %s . (Ако не " -"можете да јс стиснете, прекопирајте ја во адресната лента на прелистувачот). " -"Ако ова не сте Вие, или ако не ја имате побарано оваа потврда, слободно " -"занемарете ја поракава." +"Корисникот „%1$s“ на %2$s има изјавено дека Вашиот прекар на %2$s е всушност " +"негов. Ако ова е вистина, можете да потврдите стискајќи на оваа URL-адреса: %" +"3$s . (Ако не можете да ја стиснете, прекопирајте ја во адресната лента на " +"прелистувачот). Ако ова не сте Вие, или ако не ја имате побарано оваа " +"потврда, слободно занемарете ја поракава." #. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. #. TRANS: %d is the unknown inbox ID (number). @@ -7935,13 +7909,13 @@ msgstr "Непознат извор на приемна пошта %d." #. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. msgid "Queueing must be enabled to use IM plugins." msgstr "" +"За да можете да користите приклучоци за НП мора да овозможите ред на чекање." #. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. msgid "Transport cannot be null." -msgstr "" +msgstr "Преносот не може да биде ништо." #. TRANS: Button text on form to leave a group. -#, fuzzy msgctxt "BUTTON" msgid "Leave" msgstr "Напушти" @@ -8011,19 +7985,19 @@ msgstr "%1$s сега ги следи Вашите забелешки на %2$s. #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s would like to listen to your notices on %2$s." -msgstr "%1$s сега ги следи Вашите забелешки на %2$s." +msgstr "%1$s сака да ги следи Вашите забелешки на %2$s." #. TRANS: Main body of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "" "%1$s would like to listen to your notices on %2$s. You may approve or reject " "their subscription at %3$s" msgstr "" -"%1$s сака да се зачлени во Вашата група %2$s на %3$s. Можете да го одобрите " -"или одбиете барањето на %4$s" +"%1$s сака да ги следи Вашите забелешки на %2$s. Одобрете го или одбијте го " +"барањето на %3$s" #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, @@ -8173,7 +8147,7 @@ msgstr "" #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. #, php-format msgid "%1$s (@%2$s) added your notice as a favorite" -msgstr "%1$s (@%2$s) ја бендиса вашата забелешка" +msgstr "%1$s (@%2$s) ја бендиса Вашата забелешка" #. TRANS: Body for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created, @@ -8297,9 +8271,11 @@ msgstr "" "%1$s сака да се зачлени во Вашата група %2$s на %3$s. Можете да го одобрите " "или одбиете барањето на %4$s" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Само корисникот може да го чита своето сандаче." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8308,33 +8284,48 @@ msgstr "" "впуштите во разговор со други корисници. Луѓето можат да Ви испраќаат пораки " "што ќе можете да ги видите само Вие." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Примени" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Ваши приемни пораки" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "За праќање" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Ваши испратени пораки" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Не можев да ја парсирам пораката." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Тоа не е регистриран корисник." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Жалиме, но тоа не е Вашата приемна е-поштенска адреса." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Жалиме, приемната пошта не е дозволена." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Неподдржан формат на порака: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8388,10 +8379,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "„%s„ не е поддржан податотечен тип на овој опслужувач." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Испрати директна забелешка" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Оберете примач:" @@ -8399,29 +8393,67 @@ msgstr "Оберете примач:" msgid "No mutual subscribers." msgstr "Нема заемни претплатници." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "За" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Испрати" +#. TRANS: Header in message list. msgid "Messages" msgstr "Пораки" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "од" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "интернет" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Е-пошта" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#, fuzzy +msgid "Cannot get author for activity." msgstr "Не можам да го добијам авторот за активноста." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "На оваа група не е објавен одбележувач." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Објектот не му е испратен на овој корисник." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#, fuzzy +msgid "Do not know how to handle this kind of target." msgstr "Не знам како да работам со ваква одредница." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8468,70 +8500,87 @@ msgstr "" "Жалиме, но добивањето на Вашата местоположба трае подолго од очекуваното. " "Обидете се подоцна." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "С" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Ј" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "И" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "З" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "во" -msgid "web" -msgstr "интернет" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "во контекст" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Повторено од" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Одговори на забелешкава" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Одговор" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Избриши ја оваа забелешка" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#, fuzzy msgid "Notice repeated." -msgstr "Забелешката е повторена" +msgstr "Забелешката е повторена." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Подновете си го статусот..." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Подбуцни го корисников" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Подбуцни" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Испрати подбуцнување на корисников" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Грешка при вметнувањето на новиот профил." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Грешка при вметнувањето на аватарот." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Грешка при вметнувањето на далечинскиот профил." @@ -8539,7 +8588,9 @@ msgstr "Грешка при вметнувањето на далечинскио msgid "Duplicate notice." msgstr "Дуплирана забелешка." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Не може да се внесе нова претплата." #. TRANS: Menu item in personal group navigation menu. @@ -8554,29 +8605,29 @@ msgid "Your profile" msgstr "Профил на група" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Одговори" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Бендисани" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) -#, fuzzy msgctxt "FIXME" msgid "User" msgstr "Корисник" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" msgstr "Пораки" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Ваши приемни пораки" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8601,10 +8652,9 @@ msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Описите на приклучоците не се достапни ако е оневозможено.)" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "Нагодувања за СМС" +msgstr "Нагодувања" #. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" @@ -8615,7 +8665,6 @@ msgid "Site configuration" msgstr "Поставки на мреж. место" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Одјава" @@ -8628,7 +8677,6 @@ msgid "Login to the site" msgstr "Најава" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Барај" @@ -8683,7 +8731,6 @@ msgstr "Неимплементиран метод." #. TRANS: Menu item in search group navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Groups" msgstr "Групи" @@ -8693,7 +8740,6 @@ msgid "User groups" msgstr "Кориснички групи" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" msgstr "Скорешни ознаки" @@ -8703,29 +8749,29 @@ msgid "Recent tags" msgstr "Скорешни ознаки" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Featured" msgstr "Избрани" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" msgstr "Популарно" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Нема return-to аргументи." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Да ја повторам белешкава?" -msgid "Yes" -msgstr "Да" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Повтори ја забелешкава" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Одземи му ја улогата „%s“ на корисников" @@ -8734,9 +8780,13 @@ msgstr "Одземи му ја улогата „%s“ на корисников msgid "Page not found." msgstr "Страницата не е пронајдена." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Песок" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Стави го корисников во песочен режим" @@ -8755,7 +8805,6 @@ msgid "Search" msgstr "Пребарај" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "People" msgstr "Луѓе" @@ -8765,7 +8814,6 @@ msgid "Find people on this site" msgstr "Пронајдете луѓе на ова мрежно место" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Notices" msgstr "Забелешки" @@ -8779,78 +8827,69 @@ msgid "Find groups on this site" msgstr "Пронајдете групи на ова мрежно место" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Помош" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy msgctxt "MENU" msgid "About" msgstr "За нас" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy msgctxt "MENU" msgid "FAQ" msgstr "ЧПП" #. TRANS: Secondary navigation menu item leading to Terms of Service. -#, fuzzy msgctxt "MENU" msgid "TOS" -msgstr "Услови" +msgstr "Услови на услугата" #. TRANS: Secondary navigation menu item leading to privacy policy. -#, fuzzy msgctxt "MENU" msgid "Privacy" msgstr "Приватност" #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. -#, fuzzy msgctxt "MENU" msgid "Source" -msgstr "Изворен код" +msgstr "Извор" #. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. -#, fuzzy msgctxt "MENU" msgid "Version" msgstr "Верзија" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy msgctxt "MENU" msgid "Contact" msgstr "Контакт" #. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy msgctxt "MENU" msgid "Badge" msgstr "Значка" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Заглавие без наслов" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Повеќе..." #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Settings" -msgstr "Нагодувања за СМС" +msgstr "Нагодувања" #. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Смени профилни нагодувања" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Avatar" msgstr "Аватар" @@ -8860,7 +8899,6 @@ msgid "Upload an avatar" msgstr "Подигни аватар" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Password" msgstr "Лозинка" @@ -8870,7 +8908,6 @@ msgid "Change your password" msgstr "Смени лозинка" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Email" msgstr "Е-пошта" @@ -8884,7 +8921,6 @@ msgid "Design your profile" msgstr "Наместете изглед на Вашиот профил" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "URL" msgstr "URL" @@ -8894,17 +8930,15 @@ msgid "URL shorteners" msgstr "Скратувачи на URL" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" #. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" -msgstr "Подновувања преку инстант-пораки (IM)" +msgstr "Подновувања преку непосредни пораки (НП)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "СМС" @@ -8914,51 +8948,52 @@ msgid "Updates by SMS" msgstr "Подновувања по СМС" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" -msgstr "Сврзувања" +msgstr "Поврзувања" #. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Овластени поврзани програми" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Замолчи" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Замолчи го овој корисник" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscriptions" msgstr "Претплати" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to." -msgstr "Луѓе на кои е претплатен корисникот %s" +msgstr "Луѓе на кои е претплатен корисникот %s." #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Претплатници" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s." -msgstr "Луѓе претплатени на %s" +msgstr "Луѓе претплатени на %s." #. TRANS: Menu item in local navigation menu. #. TRANS: %d is the number of pending subscription requests. -#, fuzzy, php-format +#, php-format msgctxt "MENU" msgid "Pending (%d)" -msgstr "Член во исчекување (%d)" +msgstr "Во исчекување (%d)" #. TRANS: Menu item title in local navigation menu. #, php-format @@ -8967,9 +9002,9 @@ msgstr "Одобри барања за претплата во исчекува #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Groups %s is a member of." -msgstr "Групи кадешто членува %s" +msgstr "Групи кадешто членува %s." #. TRANS: Menu item in local navigation menu. msgctxt "MENU" @@ -8978,22 +9013,25 @@ msgstr "Покани" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Invite friends and colleagues to join you on %s." -msgstr "Поканете пријатели и колеги да Ви се придружат на %s" +msgstr "Поканете пријатели и колеги да Ви се придружат на %s." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Претплати се на корисников" -msgid "Subscribe" -msgstr "Претплати се" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Облак од самоозначени ознаки за луѓе" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Облак од ознаки за луѓе" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Без ознаки" @@ -9001,19 +9039,27 @@ msgstr "Без ознаки" msgid "Invalid theme name." msgstr "Неважечко име за изгледот." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Опслужувачот не може да се справи со подигања на изгледи без ZIP-поддршка." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Податотеката за изгледот недостасува или подигањето не успеало." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Зачувувањето на мотивот не успеа." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Неважечки изглед: лош состав на папката." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9023,9 +9069,12 @@ msgstr[0] "" msgstr[1] "" "Подигнатиот изглед е преголем; мора да биде помал од %d бајти (ненабиен)." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Неважечки архив за изглеедот: недостасува податотеката css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9033,13 +9082,17 @@ msgstr "" "Изгледот содржи неважечки назив на податотека или папка. Дозволени се само " "ASCII-букви, бројки, долна црта и знак за минус." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Овој изглед содржи небезбедни податотечни наставки." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Изгледот содржи податотека од типот „.%s“, која не е дозволена." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Грешка при отворањето на архивот за мотив." @@ -9077,8 +9130,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Ја бендисавте забелешкава." -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Белешкава ја бендиса едно лице." @@ -9089,8 +9143,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ја повторивте забелешкава." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Забелешкава ја има повторено едно лице." @@ -9103,13 +9158,13 @@ msgstr "Најактивни објавувачи" #. TRANS: Option in drop-down of potential addressees. msgctxt "SENDTO" msgid "Everyone" -msgstr "" +msgstr "Сите" #. TRANS: Option in drop-down of potential addressees. #. TRANS: %s is a StatusNet sitename. #, php-format msgid "My colleagues at %s" -msgstr "" +msgstr "Моите колеги на %s" #. TRANS: Label for drop-down of potential addressees. msgctxt "LABEL" @@ -9235,14 +9290,8 @@ msgstr "Неважечки XML. Нема XRD-корен." msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." -#~ msgid "Restore default designs" -#~ msgstr "Врати основно-зададени нагодувања" +#~ msgid "Yes" +#~ msgstr "Да" -#~ msgid "Reset back to default" -#~ msgstr "Врати по основно" - -#~ msgid "Save design" -#~ msgstr "Зачувај изглед" - -#~ msgid "Not an atom feed." -#~ msgstr "Ова не е Atom-канал." +#~ msgid "Subscribe" +#~ msgstr "Претплати се" diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 94f362ad0a..5e8e67ad65 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:33+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -133,6 +133,7 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "അങ്ങനെ ഒരു ഉപയോക്താവില്ല." @@ -862,6 +863,7 @@ msgstr "ക്ലയന്റ് 'status' ചരത്തിന് ഒരു വ #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1444,6 +1446,7 @@ msgstr "ഈ ഉപയോക്താവിനെ തടയരുത്." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "അതെ" @@ -2388,6 +2391,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "വിദൂര സേവനം അപരിചിതമായ ഒ.എം.ബി. പ്രോട്ടോകോൾ ഉപയോഗിക്കുന്നു." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "" @@ -3933,6 +3937,8 @@ msgstr "അറിയിപ്പുകൾ പ്രസിദ്ധീകരി #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "റ്റാഗുകൾ" @@ -4466,6 +4472,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4848,6 +4855,8 @@ msgstr "അംഗങ്ങൾ" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(ഒന്നുമില്ല)" @@ -5775,6 +5784,7 @@ msgid "Accept" msgstr "സ്വീകരിക്കുക" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "ഈ ഉപയോക്താവിന്റെ വരിക്കാരൻ/വരിക്കാരി ആകുക." @@ -6227,6 +6237,7 @@ msgid "Unable to save tag." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "" @@ -6901,6 +6912,7 @@ msgid "AJAX error" msgstr "അജാക്സ് പിഴവ്" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "" @@ -7353,6 +7365,7 @@ msgid "Public" msgstr "സാർവ്വജനികം" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "മായ്ക്കുക" @@ -7720,8 +7733,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8018,9 +8031,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "ഉപയോക്താവിനു മാത്രമേ അദ്ദേഹത്തിന്റെ സ്വന്തം മെയിൽബോക്സ് വായിക്കാനാകൂ." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8029,33 +8044,48 @@ msgstr "" "സന്ദേശങ്ങൾ അയയ്ക്കാവുന്നതാണ്. താങ്കൾക്ക് മാത്രം കാണാവുന്ന സന്ദേശങ്ങൾ അയയ്ക്കാൻ മറ്റുള്ളവർക്കും " "കഴിയുന്നതാണ്." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "ഇൻബോക്സ്" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "താങ്കൾക്ക് വരുന്ന സന്ദേശങ്ങൾ" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "ഔട്ട്ബോക്സ്" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "താങ്കൾ അയച്ച സന്ദേശങ്ങൾ" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "അംഗത്വമുള്ള ഉപയോക്താവല്ല." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "ക്ഷമിക്കുക, അത് താങ്കളുടെ ഇൻകമിങ് ഇമെയിൽ വിലാസം അല്ല." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "ക്ഷമിക്കുക, ഇങ്ങോട്ട് ഇമെയിൽ അനുവദിച്ചിട്ടില്ല." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "പിന്തുണയില്ലാത്ത തരം സന്ദേശം: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8106,10 +8136,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" എന്ന തരം പ്രമാണത്തിന് ഈ സെർവറിൽ പിന്തുണയില്ല." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "അറിയിപ്പ് നേരിട്ട് അയയ്ക്കുക" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "സ്വീകർത്താവിനെ തിരഞ്ഞെടുക്കുക:" @@ -8117,31 +8150,67 @@ msgstr "സ്വീകർത്താവിനെ തിരഞ്ഞെടു msgid "No mutual subscribers." msgstr "" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "സ്വീകർത്താവ്" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "അയക്കുക" +#. TRANS: Header in message list. msgid "Messages" msgstr "സന്ദേശങ്ങൾ" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "അയച്ചത്" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "വെബ്" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "ഇമെയിൽ" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "ഈ സംഘത്തെ മായ്ക്കരുത്." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യരുത്." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8189,44 +8258,52 @@ msgstr "" "ക്ഷമിക്കുക, താങ്കളുടെ പ്രദേശം കണ്ടെത്താൻ പ്രതീക്ഷിച്ചതിലധികം സമയം എടുക്കുന്നു, ദയവായി പിന്നീട് " "വീണ്ടും ശ്രമിക്കുക" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "വ" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "തെ" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "കി" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "പ" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" +#. TRANS: Followed by geo location. msgid "at" msgstr "" -msgid "web" -msgstr "വെബ്" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "ആവർത്തിച്ചത്" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "ഈ അറിയിപ്പിന് മറുപടിയിടുക" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "മറുപടി" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക" @@ -8235,24 +8312,33 @@ msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക" msgid "Notice repeated." msgstr "അറിയിപ്പ് ആവർത്തിച്ചിരിക്കുന്നു" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "" +#. TRANS: Button text to nudge/ping another user. +msgctxt "BUTTON" msgid "Nudge" msgstr "" -msgid "Send a nudge to this user" -msgstr "" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." +msgstr "ഈ ഉപയോക്താവിന് നേരിട്ട് സന്ദേശമയയ്ക്കുക" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8260,8 +8346,10 @@ msgstr "" msgid "Duplicate notice." msgstr "അറിയിപ്പിന്റെ പകർപ്പ്." -msgid "Couldn't insert new subscription." -msgstr "" +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." +msgstr "സന്ദേശം ഉൾപ്പെടുത്താൻ കഴിഞ്ഞില്ല." #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -8276,7 +8364,6 @@ msgid "Your profile" msgstr "അജ്ഞാതമായ കുറിപ്പ്." #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "മറുപടികൾ" @@ -8299,6 +8386,10 @@ msgctxt "MENU" msgid "Messages" msgstr "സന്ദേശങ്ങൾ" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "താങ്കൾക്ക് വരുന്ന സന്ദേശങ്ങൾ" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8339,7 +8430,6 @@ msgid "Site configuration" msgstr "ഉപയോക്തൃ ക്രമീകരണം" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "ലോഗൗട്ട്" @@ -8354,7 +8444,6 @@ msgid "Login to the site" msgstr "സൈറ്റിലേക്ക് പ്രവേശിക്കുക" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "തിരയുക" @@ -8441,18 +8530,20 @@ msgctxt "MENU" msgid "Popular" msgstr "ജനപ്രിയം" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "ഈ അറിയിപ്പ് ആവർത്തിക്കണോ?" -msgid "Yes" -msgstr "അതെ" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "ഈ അറിയിപ്പ് ആവർത്തിക്കുക" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "" @@ -8461,9 +8552,13 @@ msgstr "" msgid "Page not found." msgstr "താൾ കണ്ടെത്താനായില്ല." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "എഴുത്തുകളരി" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "ഈ ഉപയോക്താവിന്റെ എഴുത്തുകളരി" @@ -8506,7 +8601,6 @@ msgid "Find groups on this site" msgstr "ഈ സൈറ്റിലെ സംഘങ്ങൾ കണ്ടെത്തുക" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "സഹായം" @@ -8558,9 +8652,11 @@ msgctxt "MENU" msgid "Badge" msgstr "" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "തലക്കെട്ടില്ലാത്ത ഭാഗം" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "കൂടുതൽ..." @@ -8628,7 +8724,6 @@ msgid "Updates by instant messenger (IM)" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "എസ്.എം.എസ്." @@ -8638,7 +8733,6 @@ msgid "Updates by SMS" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "ബന്ധങ്ങൾ" @@ -8647,9 +8741,13 @@ msgstr "ബന്ധങ്ങൾ" msgid "Authorized connected applications" msgstr "" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "നിശബ്ദമാക്കുക" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "ഈ ഉപയോക്താവിനെ നിശബ്ദനാക്കുക" @@ -8706,18 +8804,21 @@ msgstr "ക്ഷണിക്കുക" msgid "Invite friends and colleagues to join you on %s." msgstr "%s-ൽ നമ്മോടൊപ്പം ചേരാൻ സുഹൃത്തുക്കളേയും സഹപ്രവർത്തകരേയും ക്ഷണിക്കുക" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "ഈ ഉപയോക്താവിന്റെ വരിക്കാരൻ/വരിക്കാരി ആകുക" -msgid "Subscribe" -msgstr "വരിക്കാരാകുക" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "ഒന്നുമില്ല" @@ -8725,18 +8826,25 @@ msgstr "ഒന്നുമില്ല" msgid "Invalid theme name." msgstr "ദൃശ്യരൂപത്തിന്റെ പേര് അസാധുവാണ്." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "ദൃശ്യരൂപത്തിനുള്ള പ്രമാണം ലഭ്യമല്ല അല്ലെങ്കിൽ അപ്‌ലോഡ് പരാജയപ്പെട്ടു." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "ദൃശ്യരൂപം സേവ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8744,21 +8852,27 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "" @@ -8798,8 +8912,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "സൈറ്റ് അറിയിപ്പ് സേവ് ചെയ്യാനായില്ല." @@ -8811,8 +8926,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." @@ -8960,14 +9076,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക" +#~ msgid "Yes" +#~ msgstr "അതെ" -#~ msgid "Reset back to default" -#~ msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക" - -#~ msgid "Save design" -#~ msgstr "രൂപകല്പന സേവ്‌ ചെയ്യുക" - -#~ msgid "Not an atom feed." -#~ msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല." +#~ msgid "Subscribe" +#~ msgstr "വരിക്കാരാകുക" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index ee1f0d3c77..24ea5999a5 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:37+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -136,6 +136,7 @@ msgstr "Ingen slik side." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Ingen slik bruker." @@ -893,6 +894,7 @@ msgstr "Klienten må angi en 'status'-parameter med en verdi." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1492,6 +1494,7 @@ msgstr "Ikke blokker denne brukeren" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -2463,6 +2466,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Fjerntjeneste bruker ukjent versjon av OMB-protokollen." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Feil ved oppdatering av fjernprofil." @@ -4056,6 +4060,8 @@ msgstr "Del min nåværende plassering når jeg poster notiser" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Tagger" @@ -4627,6 +4633,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5028,6 +5035,8 @@ msgstr "Medlemmer" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Ingen)" @@ -5989,6 +5998,7 @@ msgid "Accept" msgstr "Godta" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Abonner på denne brukeren" @@ -6452,6 +6462,7 @@ msgid "Unable to save tag." msgstr "Kunne ikke lagre nettstedsnotis." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. #, fuzzy msgid "You have been banned from subscribing." msgstr "Brukeren har blokkert deg fra å abonnere." @@ -6866,7 +6877,6 @@ msgid "Sessions configuration" msgstr "Tilgangskonfigurasjon" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Økter" @@ -7153,6 +7163,7 @@ msgid "AJAX error" msgstr "Ajax-feil" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Kommando fullført" @@ -7617,6 +7628,7 @@ msgid "Public" msgstr "Offentlig" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Slett" @@ -7991,8 +8003,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8383,9 +8395,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Bare brukeren kan lese sine egne postbokser." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8394,35 +8408,50 @@ msgstr "" "engasjere andre brukere i en samtale. Personer kan sende deg meldinger som " "bare du kan se." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Innboks" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Dine innkommende meldinger" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Utboks" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Dine sendte meldinger" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Kunne ikke tolke meldingen." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Ikke en registrert bruker." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. #, fuzzy msgid "Sorry, that is not your incoming email address." msgstr "Det er ikke din e-postadresse." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. #, fuzzy msgid "Sorry, no incoming email allowed." msgstr "Ingen innkommende e-postadresse." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Meldingstypen støttes ikke: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8472,10 +8501,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Send en direktenotis" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Velg lisens" @@ -8485,32 +8517,67 @@ msgstr "Velg lisens" msgid "No mutual subscribers." msgstr "Alle abonnementer" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Til" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Send" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Melding" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "fra" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" msgstr "" +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-post" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Du har ikke tillatelse til å slette denne gruppen." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ikke slett denne gruppen" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8558,45 +8625,53 @@ msgstr "" "Beklager, henting av din geoposisjon tar lenger tid enn forventet, prøv " "igjen senere" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "Ø" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "V" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "på" -msgid "web" -msgstr "" - +#. TRANS: Addition in notice list item if notice is part of a conversation. #, fuzzy msgid "in context" msgstr "Inget innhold." +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetert av" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Svar på denne notisen" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Svar" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Slett denne notisen" @@ -8605,24 +8680,34 @@ msgstr "Slett denne notisen" msgid "Notice repeated." msgstr "Notis repetert" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Knuff denne brukeren" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Knuff" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Send et knuff til denne brukeren" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8630,8 +8715,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. #, fuzzy -msgid "Couldn't insert new subscription." +msgid "Could not insert new subscription." msgstr "Kunne ikke sette inn bekreftelseskode." #. TRANS: Menu item in personal group navigation menu. @@ -8670,6 +8756,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Melding" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Dine innkommende meldinger" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, fuzzy, php-format msgid "Tags in %s's notices" @@ -8710,7 +8800,6 @@ msgid "Site configuration" msgstr "Brukerkonfigurasjon" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logg ut" @@ -8725,7 +8814,6 @@ msgid "Login to the site" msgstr "Log inn på nettstedet" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Søk" @@ -8813,19 +8901,21 @@ msgctxt "MENU" msgid "Popular" msgstr "Populære notiser" +#. TRANS: Client error displayed when return-to was defined without a target. #, fuzzy msgid "No return-to arguments." msgstr "Ingen vedlegg." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repeter denne notisen?" -msgid "Yes" -msgstr "Ja" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repeter denne notisen" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Blokker denne brukeren fra denne gruppen" @@ -8835,10 +8925,13 @@ msgstr "Blokker denne brukeren fra denne gruppen" msgid "Page not found." msgstr "API-metode ikke funnet!" +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Innboks" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Opphev blokkering av denne brukeren" @@ -8881,7 +8974,6 @@ msgid "Find groups on this site" msgstr "Finn grupper på dette nettstedet" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjelp" @@ -8934,10 +9026,12 @@ msgctxt "MENU" msgid "Badge" msgstr "Knuff" +#. TRANS: Default title for section/sidebar widget. #, fuzzy msgid "Untitled section" msgstr "Side uten tittel" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mer..." @@ -9025,10 +9119,13 @@ msgstr "Tilkoblinger" msgid "Authorized connected applications" msgstr "Tilkoblede program" +#. TRANS: Title of form to silence a user. #, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Nettstedsnotis" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Slett denne brukeren" @@ -9085,18 +9182,21 @@ msgstr "Inviter" msgid "Invite friends and colleagues to join you on %s." msgstr "Inviter venner og kollegaer til å bli med deg på %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Abonner på denne brukeren" -msgid "Subscribe" -msgstr "Abonner" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ingen" @@ -9105,19 +9205,26 @@ msgstr "Ingen" msgid "Invalid theme name." msgstr "Ugyldig filnavn." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. #, fuzzy msgid "Failed saving theme." msgstr "Oppdatering av avatar mislyktes." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9125,21 +9232,27 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. #, fuzzy msgid "Error opening theme archive." msgstr "Feil ved oppdatering av fjernprofil." @@ -9180,8 +9293,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Repeter denne notisen" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Slett denne notisen" @@ -9193,8 +9307,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Du har allerede gjentatt den notisen." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Allerede gjentatt den notisen." @@ -9345,15 +9460,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Gjenopprett standardutseende" +#~ msgid "Yes" +#~ msgstr "Ja" -#~ msgid "Reset back to default" -#~ msgstr "Tilbakestill til standardverdier" - -#~ msgid "Save design" -#~ msgstr "Lagre utseende" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Alle medlemmer" +#~ msgid "Subscribe" +#~ msgstr "Abonner" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 5e2f931af4..6eb62b802a 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -136,9 +136,10 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." -msgstr "Onbekende gebruiker." +msgstr "Deze gebruiker bestaat niet." #. TRANS: Page title. %1$s is user nickname, %2$d is page number #, php-format @@ -902,6 +903,7 @@ msgstr "De client moet een parameter \"status\" met een waarde opgeven." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1504,6 +1506,7 @@ msgstr "Deze gebruiker niet blokkeren." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -2463,6 +2466,7 @@ msgstr "" "De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "" "Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." @@ -3332,7 +3336,7 @@ msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." #. TRANS: Page title after sending a direct message. msgid "Message sent" -msgstr "Bericht verzonden." +msgstr "Bericht verzonden" #. TRANS: Confirmation text after sending a direct message. #. TRANS: %s is the direct message recipient. @@ -4043,6 +4047,8 @@ msgstr "Mijn huidige locatie weergeven bij het plaatsen van mededelingen" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Labels" @@ -4602,6 +4608,7 @@ msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Abonneren" @@ -4999,6 +5006,8 @@ msgstr "Leden" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(geen)" @@ -5884,7 +5893,6 @@ msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker." #. TRANS: Fieldset legend in user administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Profile" msgstr "Profiel" @@ -5956,6 +5964,7 @@ msgid "Accept" msgstr "Aanvaarden" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Op deze gebruiker abonneren." @@ -6439,6 +6448,7 @@ msgid "Unable to save tag." msgstr "Het was niet mogelijk om het label op te slaan." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "U mag zich niet abonneren." @@ -6597,7 +6607,6 @@ msgid "Write a reply..." msgstr "Schrijf een antwoord..." #. TRANS: Tab on the notice form. -#, fuzzy msgctxt "TAB" msgid "Status" msgstr "Status" @@ -6725,9 +6734,9 @@ msgid "No content for notice %s." msgstr "Geen inhoud voor mededeling %s." #. TRANS: Exception thrown if no user is provided. %s is a user ID. -#, fuzzy, php-format +#, php-format msgid "No such user \"%s\"." -msgstr "De gebruiker %s bestaat niet." +msgstr "De gebruiker \"%s\" bestaat niet." #. TRANS: Client exception thrown when post to collection fails with a 400 status. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. @@ -6775,25 +6784,22 @@ msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" -msgstr "Start" +msgstr "Hoofdmenu" #. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Home" -msgstr "Start" +msgstr "Hoofdmenu" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" -msgstr "Beheerder" +msgstr "Beheer" #. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" @@ -6820,17 +6826,15 @@ msgid "User configuration" msgstr "Gebruikersinstellingen" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" -msgstr "Gebruiker" +msgstr "Gebruikers" #. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" msgstr "Toegangsinstellingen" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Toegang" @@ -6840,7 +6844,6 @@ msgid "Paths configuration" msgstr "Padinstellingen" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Paden" @@ -6850,7 +6853,6 @@ msgid "Sessions configuration" msgstr "Sessieinstellingen" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sessies" @@ -6860,7 +6862,6 @@ msgid "Edit site notice" msgstr "Websitebrede mededeling opslaan" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" msgstr "Mededeling van de website" @@ -6870,7 +6871,6 @@ msgid "Snapshots configuration" msgstr "Snapshotinstellingen" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" msgstr "Snapshots" @@ -6880,7 +6880,6 @@ msgid "Set site license" msgstr "Sitelicentie instellen" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "Licentie" @@ -6890,7 +6889,6 @@ msgid "Plugins configuration" msgstr "Plug-ininstellingen" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Plugins" msgstr "Plug-ins" @@ -7048,9 +7046,8 @@ msgid "Save" msgstr "Opslaan" #. TRANS: Name for an anonymous application in application list. -#, fuzzy msgid "Unknown application" -msgstr "Onbekende handeling" +msgstr "Onbekende toepassing" #. TRANS: Message has a leading space and a trailing space. Used in application list. #. TRANS: Before this message the application name is put, behind it the organisation that manages it. @@ -7132,6 +7129,7 @@ msgid "AJAX error" msgstr "Er is een Ajax-fout opgetreden" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Het commando is uitgevoerd" @@ -7583,12 +7581,12 @@ msgstr "Databasefout" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" msgstr "Openbaar" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Verwijderen" @@ -7614,12 +7612,11 @@ msgid "Upload file" msgstr "Bestand uploaden" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" "U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale " -"bestandsgroote is 2 megabyte." +"bestandsgrootte is 2 megabyte." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7687,7 +7684,6 @@ msgstr "Er staat geen auteur in de feed." #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. -#, fuzzy msgid "Cannot import without a user." msgstr "Het is niet mogelijk te importeren zonder gebruiker." @@ -7696,7 +7692,6 @@ msgid "Feeds" msgstr "Feeds" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" msgstr "Alle" @@ -7710,12 +7705,10 @@ msgid "Tag" msgstr "Label" #. TRANS: Dropdown field title on gallery action page for a list containing tags. -#, fuzzy msgid "Choose a tag to narrow list." -msgstr "Kies een label om de lijst kleiner te maken" +msgstr "Kies een label om de lijst kleiner te maken." #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "OK" @@ -7956,17 +7949,18 @@ msgstr[1] "%d bytes" #. TRANS: %3$s is the display name of an IM plugin. #, fuzzy, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" -"Gebruiker \"%s\" op de site %s heeft aangegeven dat de schermnaam %s van hem " -"is. Als dat klopt, dan kunt u dit bevestigen door op deze verwijzing te " -"klikken: %s. Als u hier niet op kunt klikken, kopieer en plak deze " -"verwijzing naar in de adresbalk van uw webbrowser. Als u deze gebruiker niet " -"bent, of u hebt niet om deze bevestiging gevraagd, negeer dit bericht dan." +"De gebruiker \"%1$s\" op de site %2$s heeft aangegeven dat uw %2$s-" +"schermnaam van hem of haar is. Als dat klopt, dan kunt u dit bevestigen door " +"op deze verwijzing te klikken: %3$s . (Als u hier niet op kunt klikken, " +"kopieer en plak deze verwijzing dan in de adresbalk van uw webbrowser.) Als " +"u deze gebruiker niet bent, of u niet om deze bevestiging hebt gevraagd, " +"negeer dit bericht dan." #. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. #. TRANS: %d is the unknown inbox ID (number). @@ -7976,14 +7970,13 @@ msgstr "Onbekende bron Postvak IN %d." #. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. msgid "Queueing must be enabled to use IM plugins." -msgstr "" +msgstr "Wachtrijen moeten zijn ingeschakeld om IM-plugins te kunnen gebruiken." #. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. msgid "Transport cannot be null." -msgstr "" +msgstr "Er moet een transportmethode worden opgegeven." #. TRANS: Button text on form to leave a group. -#, fuzzy msgctxt "BUTTON" msgid "Leave" msgstr "Verlaten" @@ -8341,9 +8334,11 @@ msgstr "" "%1$s wil lid worden van de groep %2$s op %3$s. U kunt dit verzoek accepteren " "of weigeren via de volgende verwijzing: %4$s." +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Gebruikers kunnen alleen hun eigen postvakken lezen." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8351,33 +8346,48 @@ msgstr "" "U hebt geen privéberichten. U kunt privéberichten verzenden aan andere " "gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Postvak IN" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Uw inkomende berichten" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Postvak UIT" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Uw verzonden berichten" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Het was niet mogelijk het bericht te verwerken." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Geen geregistreerde gebruiker" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Dit is niet uw inkomende e-mailadres." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Inkomende e-mail is niet toegestaan." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Niet ondersteund berichttype: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8431,10 +8441,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" is geen ondersteund bestandstype op deze server." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Directe mededeling verzenden" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Selecteer ontvanger:" @@ -8442,29 +8455,67 @@ msgstr "Selecteer ontvanger:" msgid "No mutual subscribers." msgstr "Geen wederzijdse abonnees." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Aan" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Verzenden" +#. TRANS: Header in message list. msgid "Messages" msgstr "Berichten" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "van" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#, fuzzy +msgid "Cannot get author for activity." msgstr "Het was niet mogelijk de auteur te achterhalen voor de activiteit." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "De bladwijzer is niet aan deze groep verzonden." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Het object is niet aan deze gebruiker verzonden." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#, fuzzy +msgid "Do not know how to handle this kind of target." msgstr "Het is niet bekend hoe dit doel afgehandeld moet worden." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8511,44 +8562,52 @@ msgstr "" "Het ophalen van uw geolocatie duurt langer dan verwacht. Probeer het later " "nog eens" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Z" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "O" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "op" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "in context" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Herhaald door" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Op deze mededeling antwoorden" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Antwoorden" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Deze mededeling verwijderen" @@ -8556,24 +8615,34 @@ msgstr "Deze mededeling verwijderen" msgid "Notice repeated." msgstr "Mededeling herhaald." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Werk uw status bij..." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Deze gebruiker porren" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Porren" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Deze gebruiker porren" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Fout tijdens het invoegen van een nieuw profiel." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Fout bij het invoegen van de avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Fout bij het invoegen van het profiel van een andere server." @@ -8581,7 +8650,9 @@ msgstr "Fout bij het invoegen van het profiel van een andere server." msgid "Duplicate notice." msgstr "Dubbele mededeling." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." #. TRANS: Menu item in personal group navigation menu. @@ -8596,29 +8667,29 @@ msgid "Your profile" msgstr "Uw profiel" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Antwoorden" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Favorieten" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) -#, fuzzy msgctxt "FIXME" msgid "User" -msgstr "Gebruiker" +msgstr "deze gebruiker" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" msgstr "Berichten" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Uw inkomende berichten" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8643,10 +8714,9 @@ msgid "(Plugin descriptions unavailable when disabled.)" msgstr "Plug-inbeschrijvingen zijn niet beschikbaar als uitgeschakeld." #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "SMS-instellingen" +msgstr "Instellingen" #. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" @@ -8657,7 +8727,6 @@ msgid "Site configuration" msgstr "Siteinstellingen" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Afmelden" @@ -8670,7 +8739,6 @@ msgid "Login to the site" msgstr "Bij de site aanmelden" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Zoeken" @@ -8734,7 +8802,6 @@ msgid "User groups" msgstr "Gebruikersgroepen" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" msgstr "Recente labels" @@ -8744,29 +8811,29 @@ msgid "Recent tags" msgstr "Recente labels" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Featured" msgstr "Uitgelicht" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" msgstr "Populair" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Er zijn geen \"terug naar\"-parameters opgegeven." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Deze mededeling herhalen?" -msgid "Yes" -msgstr "Ja" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Deze mededeling herhalen" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "De gebruikersrol \"%s\" voor deze gebruiker intrekken" @@ -8775,9 +8842,13 @@ msgstr "De gebruikersrol \"%s\" voor deze gebruiker intrekken" msgid "Page not found." msgstr "De pagina is niet aangetroffen." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Zandbak" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Deze gebruiker in de zandbak plaatsen" @@ -8796,7 +8867,6 @@ msgid "Search" msgstr "Zoeken" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "People" msgstr "Gebruikers" @@ -8806,7 +8876,6 @@ msgid "Find people on this site" msgstr "Gebruikers op deze site vinden" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Notices" msgstr "Mededelingen" @@ -8820,78 +8889,69 @@ msgid "Find groups on this site" msgstr "Groepen op deze site vinden" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy msgctxt "MENU" msgid "About" msgstr "Over" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy msgctxt "MENU" msgid "FAQ" msgstr "Veel gestelde vragen" #. TRANS: Secondary navigation menu item leading to Terms of Service. -#, fuzzy msgctxt "MENU" msgid "TOS" msgstr "Gebruiksvoorwaarden" #. TRANS: Secondary navigation menu item leading to privacy policy. -#, fuzzy msgctxt "MENU" msgid "Privacy" msgstr "Privacy" #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. -#, fuzzy msgctxt "MENU" msgid "Source" msgstr "Broncode" #. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. -#, fuzzy msgctxt "MENU" msgid "Version" msgstr "Versie" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy msgctxt "MENU" msgid "Contact" msgstr "Contact" #. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy msgctxt "MENU" msgid "Badge" msgstr "Widget" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Naamloze sectie" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Meer..." #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Settings" -msgstr "SMS-instellingen" +msgstr "Instellingen" #. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Uw profielgegevens wijzigen" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Avatar" msgstr "Avatar" @@ -8901,7 +8961,6 @@ msgid "Upload an avatar" msgstr "Avatar uploaden" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Password" msgstr "Wachtwoord" @@ -8911,7 +8970,6 @@ msgid "Change your password" msgstr "Uw wachtwoord wijzigen" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Email" msgstr "E-mail" @@ -8925,7 +8983,6 @@ msgid "Design your profile" msgstr "Uw profiel ontwerpen" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "URL" msgstr "URL" @@ -8935,7 +8992,6 @@ msgid "URL shorteners" msgstr "URL-verkorters" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" @@ -8945,7 +9001,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Updates via instant messenger (IM)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -8955,18 +9010,21 @@ msgid "Updates by SMS" msgstr "Updates via SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" -msgstr "Verbindingen" +msgstr "Koppelingen" #. TRANS: Menu item title in settings navigation panel. msgid "Authorized connected applications" msgstr "Geautoriseerde verbonden applicaties" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Muilkorven" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Deze gebruiker muilkorven" @@ -9021,18 +9079,21 @@ msgstr "Uitnodigingen" msgid "Invite friends and colleagues to join you on %s." msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s." +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Op deze gebruiker abonneren" -msgid "Subscribe" -msgstr "Abonneren" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Gebruikerslabelwolk als zelf gelabeld" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Gebruikerslabelwolk" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Geen" @@ -9040,20 +9101,28 @@ msgstr "Geen" msgid "Invalid theme name." msgstr "Ongeldige naam voor vormgeving." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Deze server kan niet overweg met uploads van vormgevingsbestanden zonder ZIP-" "ondersteuning." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Het vormgevingsbestand ontbreekt of is de upload mislukt." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Het opslaan van de vormgeving is mislukt." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Ongeldige vormgeving: de mappenstructuur is onjuist." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9065,10 +9134,13 @@ msgstr[1] "" "De geüploade vormgeving is te groot; deze moet omgecomprimeerd kleiner zijn " "dan %d bytes." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" "Ongeldig bestand met vormgeving: het bestand css/display.css is niet aanwezig" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9076,14 +9148,18 @@ msgstr "" "De vormgeving bevat een ongeldige bestandsnaam of mapnaam. Gebruik alleen " "maar ASCII-letters, getallen, liggende streepjes en het minteken." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Het uiterlijk bevat onveilige namen voor bestandsextensies." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" "De vormgeving bevat een bestand van het type \".%s\". Dit is niet toegestaan." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "" "Er is een fout opgetreden tijdens het openen van het archiefbestand met de " @@ -9123,8 +9199,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "U hebt deze mededeling op uw favorietenlijst geplaatst." -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "" @@ -9137,8 +9214,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "U hebt deze mededeling herhaald." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Een persoon heeft deze mededeling herhaald." @@ -9282,14 +9360,8 @@ msgstr "Ongeldige XML. De XRD-root mist." msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." -#~ msgid "Restore default designs" -#~ msgstr "Standaardontwerp toepassen" +#~ msgid "Yes" +#~ msgstr "Ja" -#~ msgid "Reset back to default" -#~ msgstr "Standaardinstellingen toepassen" - -#~ msgid "Save design" -#~ msgstr "Ontwerp opslaan" - -#~ msgid "Not an atom feed." -#~ msgstr "Dit is geen Atomfeed." +#~ msgid "Subscribe" +#~ msgstr "Abonneren" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 1b63d42d3c..3e11a9a943 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:38+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -138,6 +138,7 @@ msgstr "Nie ma takiej strony." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Brak takiego użytkownika." @@ -900,6 +901,7 @@ msgstr "Klient musi dostarczać parametr \"stan\" z wartością." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1497,6 +1499,7 @@ msgstr "Nie blokuj tego użytkownika" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Tak" @@ -2460,6 +2463,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Zdalna usługa używa nieznanej wersji protokołu OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Błąd podczas aktualizowania zdalnego profilu." @@ -4066,6 +4070,8 @@ msgstr "Podziel się swoim obecnym położeniem podczas wysyłania wpisów" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Znaczniki" @@ -4634,6 +4640,7 @@ msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5036,6 +5043,8 @@ msgstr "Członkowie" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Brak)" @@ -6013,6 +6022,7 @@ msgid "Accept" msgstr "Zaakceptuj" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Subskrybuj tego użytkownika" @@ -6506,6 +6516,7 @@ msgid "Unable to save tag." msgstr "Nie można zapisać etykiety." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Zablokowano subskrybowanie." @@ -7198,6 +7209,7 @@ msgid "AJAX error" msgstr "Błąd AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Zakończono polecenie" @@ -7660,6 +7672,7 @@ msgid "Public" msgstr "Publiczny" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Usuń" @@ -7686,7 +7699,6 @@ msgid "Upload file" msgstr "Wyślij plik" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "Można wysłać osobisty obraz tła. Maksymalny rozmiar pliku to 2 MB." @@ -8041,8 +8053,8 @@ msgstr[2] "%d B" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8438,9 +8450,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Tylko użytkownik może czytać swoje skrzynki pocztowe." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8449,33 +8463,48 @@ msgstr "" "rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla " "twoich oczu." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Odebrane" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Wiadomości przychodzące" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Wysłane" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Wysłane wiadomości" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Nie można przetworzyć wiadomości." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "To nie jest zarejestrowany użytkownik." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "To nie jest przychodzący adres e-mail." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Przychodzący e-mail nie jest dozwolony." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Nieobsługiwany typ wiadomości: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8527,10 +8556,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" nie jest obsługiwanym typem pliku na tym serwerze." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Wyślij bezpośredni wpis" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Wybierz odbiorcę:" @@ -8538,32 +8570,68 @@ msgstr "Wybierz odbiorcę:" msgid "No mutual subscribers." msgstr "Brak wzajemnych subskrybentów." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Do" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Wyślij" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Wiadomość" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "z" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "WWW" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Brak uprawnienia do usunięcia tej grupy." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Nie usuwaj tego użytkownika" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8612,44 +8680,52 @@ msgstr "" "Pobieranie danych geolokalizacji trwa dłużej niż powinno, proszę spróbować " "ponownie później" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "Północ" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Południe" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "Wschód" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Zachód" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "w" -msgid "web" -msgstr "WWW" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "w rozmowie" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Powtórzone przez" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Odpowiedz" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Usuń ten wpis" @@ -8658,24 +8734,34 @@ msgstr "Usuń ten wpis" msgid "Notice repeated." msgstr "Powtórzono wpis" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Szturchnij tego użytkownika" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Szturchnij" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Wyślij szturchnięcie do tego użytkownika" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Błąd podczas wprowadzania nowego profilu." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Błąd podczas wprowadzania awatara." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Błąd podczas wprowadzania zdalnego profilu." @@ -8683,7 +8769,9 @@ msgstr "Błąd podczas wprowadzania zdalnego profilu." msgid "Duplicate notice." msgstr "Podwójny wpis." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Nie można wprowadzić nowej subskrypcji." #. TRANS: Menu item in personal group navigation menu. @@ -8722,6 +8810,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Wiadomość" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Wiadomości przychodzące" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8762,7 +8854,6 @@ msgid "Site configuration" msgstr "Konfiguracja użytkownika" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Wyloguj się" @@ -8775,7 +8866,6 @@ msgid "Login to the site" msgstr "Zaloguj się na witrynie" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Wyszukaj" @@ -8862,18 +8952,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Popularne" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Brak parametrów powrotu." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Powtórzyć ten wpis?" -msgid "Yes" -msgstr "Tak" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Powtórz ten wpis" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Unieważnij rolę \"%s\" tego użytkownika" @@ -8882,9 +8974,13 @@ msgstr "Unieważnij rolę \"%s\" tego użytkownika" msgid "Page not found." msgstr "Nie odnaleziono strony." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Ogranicz" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Ogranicz tego użytkownika" @@ -8927,7 +9023,6 @@ msgid "Find groups on this site" msgstr "Znajdź grupy na tej witrynie" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Pomoc" @@ -8981,9 +9076,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Odznaka" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sekcja bez nazwy" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Więcej..." @@ -9042,7 +9139,6 @@ msgid "URL shorteners" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "Komunikator" @@ -9052,7 +9148,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Aktualizacje przez komunikator" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -9062,7 +9157,6 @@ msgid "Updates by SMS" msgstr "Aktualizacje przez wiadomości SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Połączenia" @@ -9071,9 +9165,13 @@ msgstr "Połączenia" msgid "Authorized connected applications" msgstr "Upoważnione połączone aplikacje" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Wycisz" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Wycisz tego użytkownika" @@ -9130,18 +9228,21 @@ msgstr "Zaproś" msgid "Invite friends and colleagues to join you on %s." msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subskrybuj tego użytkownika" -msgid "Subscribe" -msgstr "Subskrybuj" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Chmura znaczników osób, które same sobie nadały znaczniki" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Chmura znaczników osób ze znacznikami" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Brak" @@ -9149,19 +9250,27 @@ msgstr "Brak" msgid "Invalid theme name." msgstr "Nieprawidłowa nazwa motywu." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Ten serwer nie może obsługiwać wysyłania motywu bez obsługi archiwów zip." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Brak pliku motywu lub wysłanie nie powiodło się." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Zapisanie motywu nie powiodło się." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Nieprawidłowy motyw: błędna struktura katalogów." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9176,9 +9285,12 @@ msgstr[2] "" "Wysłany motyw jest za duży, musi być mniejszy niż %d bajtów po " "zdekompresowaniu." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Nieprawidłowe archiwum motywu: brak pliku css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9186,15 +9298,19 @@ msgstr "" "Motyw zawiera nieprawidłowy plik lub nazwę katalogu. Należy używać tylko " "liter, cyfr, podkreślników i znaku minus z zestawu ASCII." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "Temat zawiera niebezpieczne rozszerzenie nazwy pliku, co może stanowić " "zagrożenie." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Motyw zawiera plik typu \\\".%s\\\", który nie jest dozwolony." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Błąd podczas otwierania archiwum motywu." @@ -9235,8 +9351,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Dodaj ten wpis do ulubionych" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Usuń ten wpis z ulubionych" @@ -9249,8 +9366,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Już powtórzono ten wpis." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Już powtórzono ten wpis." @@ -9405,14 +9523,8 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD." msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." -#~ msgid "Restore default designs" -#~ msgstr "Przywróć domyślny wygląd" +#~ msgid "Yes" +#~ msgstr "Tak" -#~ msgid "Reset back to default" -#~ msgstr "Przywróć domyślne ustawienia" - -#~ msgid "Save design" -#~ msgstr "Zapisz wygląd" - -#~ msgid "Not an atom feed." -#~ msgstr "Nie jest kanałem Atom." +#~ msgid "Subscribe" +#~ msgstr "Subskrybuj" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index c35803ed95..71621b6695 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:10+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:40+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -141,6 +141,7 @@ msgstr "Página não foi encontrada." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Utilizador não foi encontrado." @@ -890,6 +891,7 @@ msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1473,6 +1475,7 @@ msgstr "Não bloquear este utilizador." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sim" @@ -2432,6 +2435,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Serviço remoto usa uma versão desconhecida do protocolo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Erro ao actualizar o perfil remoto." @@ -4038,6 +4042,8 @@ msgstr "Compartilhar a minha localização presente ao publicar notas" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Categorias" @@ -4616,6 +4622,7 @@ msgstr "URL do seu perfil noutro serviço de microblogues compatível" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5020,6 +5027,8 @@ msgstr "Membros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Nenhum)" @@ -5996,6 +6005,7 @@ msgid "Accept" msgstr "Aceitar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Subscrever este utilizador" @@ -6483,6 +6493,7 @@ msgid "Unable to save tag." msgstr "Não foi possível gravar a categoria." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Foi bloqueado de fazer subscrições" @@ -7180,6 +7191,7 @@ msgid "AJAX error" msgstr "Erro do Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Comando terminado" @@ -7638,6 +7650,7 @@ msgid "Public" msgstr "Público" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Apagar" @@ -7664,12 +7677,11 @@ msgid "Upload file" msgstr "Carregar ficheiro" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Pode carregar uma imagem de fundo pessoal. O tamanho máximo do ficheiro é " -"2Mb." +"2MB." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. #, fuzzy @@ -8012,8 +8024,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8408,9 +8420,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Só o próprio utilizador pode ler a sua caixa de correio." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8419,33 +8433,48 @@ msgstr "" "conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que " "só você terá acesso." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Recebidas" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Mensagens recebidas" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Enviadas" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Mensagens enviadas" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Não foi possível fazer a análise sintáctica da mensagem." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Não é um utilizador registado." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Desculpe, esse não é o seu endereço para receber correio electrónico." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Desculpe, não lhe é permitido receber correio electrónico." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipo de mensagem não suportado: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8499,10 +8528,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" não é um tipo de ficheiro suportado neste servidor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Enviar uma nota directa" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Seleccione um operador" @@ -8512,32 +8544,68 @@ msgstr "Seleccione um operador" msgid "No mutual subscribers." msgstr "Não subscrito!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Para" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Mensagem" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "a partir de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Correio" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Não tens permissão para apagar este grupo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Não apagues este utilizador." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8585,44 +8653,52 @@ msgstr "" "A obtenção da sua geolocalização está a demorar mais do que o esperado; " "tente novamente mais tarde" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "coords." -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "no contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetida por" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a esta nota" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Apagar esta nota" @@ -8631,24 +8707,34 @@ msgstr "Apagar esta nota" msgid "Notice repeated." msgstr "Nota repetida" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Tocar este utilizador" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Tocar" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Enviar toque a este utilizador" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Erro ao inserir perfil novo." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Erro ao inserir avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Erro ao inserir perfil remoto." @@ -8656,7 +8742,9 @@ msgstr "Erro ao inserir perfil remoto." msgid "Duplicate notice." msgstr "Nota duplicada." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Não foi possível inserir nova subscrição." #. TRANS: Menu item in personal group navigation menu. @@ -8696,6 +8784,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Mensagem" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Mensagens recebidas" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8736,7 +8828,6 @@ msgid "Site configuration" msgstr "Configuração do utilizador" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" @@ -8749,7 +8840,6 @@ msgid "Login to the site" msgstr "Iniciar uma sessão" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Pesquisa" @@ -8835,18 +8925,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Populares" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Sem argumentos return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repetir esta nota?" -msgid "Yes" -msgstr "Sim" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repetir esta nota" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Retirar a função \"%s\" a este utilizador" @@ -8856,9 +8948,13 @@ msgstr "Retirar a função \"%s\" a este utilizador" msgid "Page not found." msgstr "Método da API não encontrado." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Bloquear notas públicas" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Impedir que notas deste utilizador sejam públicas" @@ -8901,7 +8997,6 @@ msgid "Find groups on this site" msgstr "Procurar grupos neste site" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" @@ -8955,9 +9050,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Emblema" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Secção sem título" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mais..." @@ -9045,9 +9142,13 @@ msgstr "Ligações" msgid "Authorized connected applications" msgstr "Aplicações ligadas autorizadas" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silenciar este utilizador" @@ -9104,18 +9205,21 @@ msgstr "Convidar" msgid "Invite friends and colleagues to join you on %s." msgstr "Convidar amigos e colegas para se juntarem a si em %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Subscrever este utilizador" -msgid "Subscribe" -msgstr "Subscrever" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nuvem da auto-categorização das pessoas" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nuvem da sua categorização das pessoas" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nenhum" @@ -9124,19 +9228,27 @@ msgstr "Nenhum" msgid "Invalid theme name." msgstr "Nome de ficheiro inválido." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Este servidor não pode processar uploads de temas sem suporte do formato ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "O ficheiro do tema não foi localizado ou o upload falhou." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Não foi possível gravar o tema." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema inválido: estrutura de directórios incorrecta." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9148,9 +9260,12 @@ msgstr[1] "" "O tema carregado é demasiado grande; tem de ter menos de %d bytes " "descomprimido." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Arquivo do tema inválido: falta o ficheiro css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9158,13 +9273,17 @@ msgstr "" "Tema contém um nome de ficheiro ou de directório inválido. Use somente " "letras ASCII, algarismos, sublinhados e o sinal de menos." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "O tema contém extensões de ficheiro inseguras; pode não ser seguro." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Tema contém um ficheiro do tipo '.%s', o que não é permitido." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Ocorreu um erro ao abrir o arquivo do tema." @@ -9204,8 +9323,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Eleger esta nota como favorita" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Retirar esta nota das favoritas" @@ -9217,8 +9337,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Já repetiu essa nota." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Já repetiu essa nota." @@ -9368,15 +9489,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Repor estilos predefinidos" +#~ msgid "Yes" +#~ msgstr "Sim" -#~ msgid "Reset back to default" -#~ msgstr "Repor predefinição" - -#~ msgid "Save design" -#~ msgstr "Gravar o estilo" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Todos os membros" +#~ msgid "Subscribe" +#~ msgstr "Subscrever" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index ee0b6f0827..0267efeb20 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:42+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -140,6 +140,7 @@ msgstr "Esta página não existe." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Este usuário não existe." @@ -903,6 +904,7 @@ msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1161,34 +1163,32 @@ msgid "Join request canceled." msgstr "A requisição de associação foi cancelada." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "%s não está na fila de moderação para este grupo." +msgstr "%s não está na fila de moderação das suas assinaturas." #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." msgstr "" -"Não foi possível cancelar a requisição de associação do usuário %1$s para o " -"grupo %2$s." +"Não foi possível cancelar ou aprovar a solicitação de associação do usuário %" +"1$s ao grupo %2$s." #. TRANS: Title for subscription approval ajax return #. TRANS: %1$s is the approved user's nickname -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request" -msgstr "Requisição de associação de %1$s em %2$s" +msgstr "Solicitação de %1$s" #. TRANS: Message on page for user after approving a subscription request. -#, fuzzy msgid "Subscription approved." -msgstr "A assinatura foi autorizada" +msgstr "A assinatura foi aprovada" #. TRANS: Message on page for user after rejecting a subscription request. -#, fuzzy msgid "Subscription canceled." -msgstr "A autorização foi cancelada." +msgstr "A assinatura foi cancelada." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1225,9 +1225,9 @@ msgstr "Já foi adicionada às Favoritas." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "Group memberships of %s" -msgstr "Membros do grupo %s" +msgstr "Associações a grupos de %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1240,7 +1240,6 @@ msgid "Cannot add someone else's membership." msgstr "Não é possível efetuar a associação de outra pessoa." #. TRANS: Client error displayed when not using the join verb. -#, fuzzy msgid "Can only handle join activities." msgstr "Só é possível manipular as atividades de associação." @@ -1261,42 +1260,38 @@ msgid "No such favorite." msgstr "Essa Favorita não existe." #. TRANS: Client exception thrown when trying to remove a favorite notice of another user. -#, fuzzy msgid "Cannot delete someone else's favorite." -msgstr "Não é possível excluir a Favorita de outra pessoa" +msgstr "Não é possível excluir uma Favorita de outra pessoa" #. TRANS: Client exception thrown when trying to show membership of a non-subscribed group -#, fuzzy msgid "Not a member." -msgstr "Não é um membro" +msgstr "Não é membro." #. TRANS: Client exception thrown when deleting someone else's membership. -#, fuzzy msgid "Cannot delete someone else's membership." -msgstr "Não é possível excluir a assinatura de outra pessoa" +msgstr "Não é possível cancelar a associação de outra pessoa." #. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. #. TRANS: %d is the non-existing profile ID number. -#, fuzzy, php-format +#, php-format msgid "No such profile id: %d." -msgstr "Este id de perfil não existe: %d" +msgstr "Este id de perfil não existe: %d." #. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID. #. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to. -#, fuzzy, php-format +#, php-format msgid "Profile %1$d not subscribed to profile %2$d." -msgstr "O perfil %1$d não assina o perfil %2$d" +msgstr "O perfil %1$d não está assinado pelo perfil %2$d." #. TRANS: Client exception thrown when trying to delete a subscription of another user. -#, fuzzy msgid "Cannot delete someone else's subscription." -msgstr "Não é possível excluir a assinatura de outra pessoa" +msgstr "Não é possível excluir a assinatura de outra pessoa." #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "People %1$s has subscribed to on %2$s" -msgstr "Assinantes de %s" +msgstr "Pessoas que %1$s assinou em %2$s" #. TRANS: Client error displayed when not using the follow verb. msgid "Can only handle Follow activities." @@ -1308,15 +1303,15 @@ msgstr "Só é possível assinar pessoas." #. TRANS: Client exception thrown when subscribing to a non-existing profile. #. TRANS: %s is the unknown profile ID. -#, fuzzy, php-format +#, php-format msgid "Unknown profile %s." -msgstr "Perfil desconhecido: %s" +msgstr "Perfil desconhecido: %s." #. TRANS: Client error displayed trying to subscribe to an already subscribed profile. #. TRANS: %s is the profile the user already has a subscription on. -#, fuzzy, php-format +#, php-format msgid "Already subscribed to %s." -msgstr "Já assinado!" +msgstr "%s já está assinado." #. TRANS: Client error displayed trying to get a non-existing attachment. msgid "No such attachment." @@ -1403,9 +1398,8 @@ msgid "No file uploaded." msgstr "Não foi enviado nenhum arquivo." #. TRANS: Avatar upload form instruction after uploading a file. -#, fuzzy msgid "Pick a square area of the image to be your avatar." -msgstr "Selecione uma área quadrada da imagem para ser seu avatar" +msgstr "Selecione uma área quadrada da imagem para ser seu avatar." #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. #. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present. @@ -1438,7 +1432,6 @@ msgid "You may not backup your account." msgstr "Você não pode fazer backup da sua conta." #. TRANS: Information displayed on the backup account page. -#, fuzzy msgid "" "You can backup your account data in Activity Streams format. This is an experimental feature and provides " @@ -1449,19 +1442,17 @@ msgstr "" "Você pode fazer backup dos dados da sua conta no formato de Fluxos de Atividades. Este é um recurso experimental " "e fornece um backup incompleto; informações privadas da sua conta, como " -"endereços de e-mail e de mensagens instantâneas não são copiados. Além " -"disso, arquivos enviados e mensagens diretas também não entram no backup." +"endereços de e-mail e de mensagens instantâneas não são armazenados, bem " +"como arquivos enviados e mensagens diretas." #. TRANS: Submit button to backup an account on the backup account page. -#, fuzzy msgctxt "BUTTON" msgid "Backup" -msgstr "Fundo" +msgstr "Backup" #. TRANS: Title for submit button to backup an account on the backup account page. -#, fuzzy msgid "Backup your account." -msgstr "Fazer backup da conta" +msgstr "Fazer backup da sua conta." #. TRANS: Client error displayed when blocking a user that has already been blocked. msgid "You already blocked that user." @@ -1495,9 +1486,8 @@ msgid "No" msgstr "Não" #. TRANS: Submit button title for 'No' when blocking a user. -#, fuzzy msgid "Do not block this user." -msgstr "Não bloquear este usuário" +msgstr "Não bloquear este usuário." #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -1505,14 +1495,14 @@ msgstr "Não bloquear este usuário" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Sim" #. TRANS: Submit button title for 'Yes' when blocking a user. -#, fuzzy msgid "Block this user." -msgstr "Bloquear este usuário" +msgstr "Bloquear este usuário." #. TRANS: Server error displayed when blocking a user fails. msgid "Failed to save block information." @@ -1557,7 +1547,7 @@ msgstr "Publicar em %s" #. TRANS: Title for leave group page after leaving. #. TRANS: %s$s is the leaving user's name, %2$s is the group name. #. TRANS: Title for leave group page after leaving. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" @@ -1600,10 +1590,9 @@ msgid "No profile with that ID." msgstr "Não foi encontrado nenhum perfil com esse ID." #. TRANS: Title after unsubscribing from a group. -#, fuzzy msgctxt "TITLE" msgid "Unsubscribed" -msgstr "Cancelado" +msgstr "Associação cancelada" #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." @@ -1629,14 +1618,16 @@ msgstr "Esse endereço já foi confirmado." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#, fuzzy msgid "Could not update user IM preferences." -msgstr "Não foi possível atualizar o registro do usuário." +msgstr "" +"Não foi possível atualizar as preferências do mensageiro instantâneo do " +"usuário." #. TRANS: Server error displayed when adding IM preferences fails. -#, fuzzy msgid "Could not insert user IM preferences." -msgstr "Não foi possível inserir a nova assinatura." +msgstr "" +"Não foi possível inserir as preferências de mensageiro instantâneo do " +"usuário." #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. @@ -1664,47 +1655,44 @@ msgstr "Mensagens" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#, fuzzy msgctxt "TITLE" msgid "Notice" -msgstr "Mensagens" +msgstr "Mensagem" #. TRANS: Client exception displayed trying to delete a user account while not logged in. -#, fuzzy msgid "Only logged-in users can delete their account." -msgstr "Apenas usuários autenticados podem repetir mensagens." +msgstr "Apenas usuários autenticados podem excluir sua conta." #. TRANS: Client exception displayed trying to delete a user account without have the rights to do that. -#, fuzzy msgid "You cannot delete your account." -msgstr "Você não pode excluir usuários." +msgstr "Você não pode excluir sua conta." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." -msgstr "" +msgstr "Tenho certeza." #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. #, php-format msgid "You must write \"%s\" exactly in the box." -msgstr "" +msgstr "Você deve digitar \"%s\" no quadro." #. TRANS: Confirmation that a user account has been deleted. -#, fuzzy msgid "Account deleted." -msgstr "O avatar foi excluído." +msgstr "A conta foi excluída." #. TRANS: Page title for page on which a user account can be deleted. #. TRANS: Option in profile settings to delete the account of the currently logged in user. -#, fuzzy msgid "Delete account" -msgstr "Criar uma conta" +msgstr "Excluir a conta" #. TRANS: Form text for user deletion form. msgid "" "This will permanently delete your account data from this " "server." msgstr "" +"Isso irá excluir permanentemente os dados da sua conta " +"deste servidor." #. TRANS: Additional form text for user deletion form shown if a user has account backup rights. #. TRANS: %s is a URL to the backup page. @@ -1713,6 +1701,8 @@ msgid "" "You are strongly advised to back up your data before " "deletion." msgstr "" +"Aconselhamos com veemência que você faça um backup dos seus " +"dados antes da exclusão." #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. @@ -1721,14 +1711,14 @@ msgstr "Confirmar" #. TRANS: Input title for the delete account field. #. TRANS: %s is the text that needs to be input. -#, fuzzy, php-format +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "Você não pode excluir usuários." +msgstr "" +"Digite \"%s\" para confirmar que você deseja realmente excluir sua conta." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account" -msgstr "Você não pode excluir usuários." +msgstr "Excluir sua conta permanentemente" #. TRANS: Client error displayed trying to delete an application while not logged in. msgid "You must be logged in to delete an application." @@ -1764,14 +1754,12 @@ msgstr "" "com os usuários." #. TRANS: Submit button title for 'No' when deleting an application. -#, fuzzy msgid "Do not delete this application." -msgstr "Não excluir esta aplicação" +msgstr "Não excluir esta aplicação." #. TRANS: Submit button title for 'Yes' when deleting an application. -#, fuzzy msgid "Delete this application." -msgstr "Excluir esta aplicação" +msgstr "Excluir esta aplicação." #. TRANS: Client error when trying to delete group while not logged in. msgid "You must be logged in to delete a group." @@ -1809,14 +1797,12 @@ msgstr "" "para este grupo continuarão aparecendo nas linhas de tempo individuais." #. TRANS: Submit button title for 'No' when deleting a group. -#, fuzzy msgid "Do not delete this group." -msgstr "Não excluir este grupo" +msgstr "Não excluir este grupo." #. TRANS: Submit button title for 'Yes' when deleting a group. -#, fuzzy msgid "Delete this group." -msgstr "Excluir este grupo" +msgstr "Excluir este grupo." #. TRANS: Instructions for deleting a notice. msgid "" @@ -1836,14 +1822,12 @@ msgid "Are you sure you want to delete this notice?" msgstr "Tem certeza que deseja excluir esta mensagem?" #. TRANS: Submit button title for 'No' when deleting a notice. -#, fuzzy msgid "Do not delete this notice." msgstr "Não excluir esta mensagem." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#, fuzzy msgid "Delete this notice." -msgstr "Excluir esta mensagem" +msgstr "Excluir esta mensagem." #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. msgid "You cannot delete users." @@ -1854,7 +1838,6 @@ msgid "You can only delete local users." msgstr "Você só pode excluir usuários locais." #. TRANS: Title of delete user page. -#, fuzzy msgctxt "TITLE" msgid "Delete user" msgstr "Excluir usuário" @@ -1872,14 +1855,12 @@ msgstr "" "deste usuário do banco de dados, sem cópia de segurança." #. TRANS: Submit button title for 'No' when deleting a user. -#, fuzzy msgid "Do not delete this user." -msgstr "Não excluir este grupo" +msgstr "Não excluir este este usuário." #. TRANS: Submit button title for 'Yes' when deleting a user. -#, fuzzy msgid "Delete this user." -msgstr "Excluir este usuário" +msgstr "Excluir este usuário." #. TRANS: Message used as title for design settings for the site. msgid "Design" @@ -1976,9 +1957,8 @@ msgid "Tile background image" msgstr "Ladrilhar a imagem de fundo" #. TRANS: Fieldset legend for theme colors. -#, fuzzy msgid "Change colors" -msgstr "Alterar a cor" +msgstr "Alterar as cores" #. TRANS: Field label for content color selector. #. TRANS: Label on profile design page for setting a profile page content colour. @@ -2009,28 +1989,24 @@ msgid "Custom CSS" msgstr "CSS personalizado" #. TRANS: Button text for resetting theme settings. -#, fuzzy msgctxt "BUTTON" msgid "Use defaults" -msgstr "Usar o padrão|" +msgstr "Usar o padrão" #. TRANS: Title for button for resetting theme settings. #. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy msgid "Restore default designs." -msgstr "Restaura a aparência padrão" +msgstr "Restaurar a aparência padrão." #. TRANS: Title for button for resetting theme settings. #. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy msgid "Reset back to default." -msgstr "Restaura de volta ao padrão" +msgstr "Restaurar de volta ao padrão." #. TRANS: Title for button for saving theme settings. #. TRANS: Title for button on profile design page to save settings. -#, fuzzy msgid "Save design." -msgstr "Salvar a aparência" +msgstr "Salvar a aparência." #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" @@ -2042,9 +2018,9 @@ msgstr "Adicionar às favoritas" #. TRANS: Client exception thrown when requesting a document from the documentation that does not exist. #. TRANS: %s is the non-existing document. -#, fuzzy, php-format +#, php-format msgid "No such document \"%s\"." -msgstr "O documento \"%s\" não existe" +msgstr "O documento \"%s\" não existe." #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2222,6 +2198,8 @@ msgid "" "To send notices via email, we need to create a unique email address for you " "on this server:" msgstr "" +"Para enviar mensagens por e-mail, é necessário criar um endereço de e-mail " +"único para você neste servidor." #. 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. @@ -2270,9 +2248,8 @@ msgid "No email address." msgstr "Nenhum endereço de e-mail." #. TRANS: Message given saving e-mail address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that email address." -msgstr "Não foi possível normalizar este endereço de e-mail" +msgstr "Não foi possível normalizar este endereço de e-mail." #. TRANS: Message given saving e-mail address that not valid. #. TRANS: Form validation error displayed when trying to register without a valid e-mail address. @@ -2291,7 +2268,6 @@ msgstr "Esse endereço de e-mail já pertence à outro usuário." #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding Instant Messaging confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#, fuzzy msgid "Could not insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." @@ -2315,7 +2291,6 @@ msgid "That is the wrong email address." msgstr "Esse é o endereço de e-mail errado." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#, fuzzy msgid "Could not delete email confirmation." msgstr "Não foi possível excluir a confirmação de e-mail." @@ -2339,7 +2314,6 @@ msgstr "Nenhum endereço de e-mail para recebimentos." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. #. TRANS: Server error displayed when the user could not be updated in SMS settings. -#, fuzzy msgid "Could not update user record." msgstr "Não foi possível atualizar o registro do usuário." @@ -2359,9 +2333,8 @@ msgid "This notice is already a favorite!" msgstr "Essa mensagem já é uma favorita!" #. TRANS: Page title for page on which favorite notices can be unfavourited. -#, fuzzy msgid "Disfavor favorite." -msgstr "Desmarcar a favorita" +msgstr "Desmarcar a favorita." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. @@ -2432,9 +2405,9 @@ msgid "Featured users, page %d" msgstr "Usuários em destaque, pág. %d" #. TRANS: Description on page displaying featured users. -#, fuzzy, php-format +#, php-format msgid "A selection of some great users on %s." -msgstr "Uma seleção de alguns grandes usuários no%s" +msgstr "Uma seleção de alguns grandes usuários em %s." #. TRANS: Client error displayed when no notice ID was given trying do display a file. msgid "No notice ID." @@ -2483,6 +2456,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "O serviço remoto usa uma versão desconhecida do protocolo OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Ocorreu um erro durante a atualização do perfil remoto." @@ -2556,14 +2530,12 @@ msgstr "" "futuramente." #. TRANS: Submit button title for 'No' when blocking a user from a group. -#, fuzzy msgid "Do not block this user from this group." -msgstr "Não bloquear este usuário neste grupo" +msgstr "Não bloquear este usuário neste grupo." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#, fuzzy msgid "Block this user from this group." -msgstr "Bloquear este usuário neste grupo" +msgstr "Bloquear este usuário neste grupo." #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. msgid "Database error blocking user from group." @@ -2592,9 +2564,8 @@ msgstr "" "cores à sua escolha." #. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy msgid "Unable to update your design settings." -msgstr "Não foi possível salvar suas configurações de aparência." +msgstr "Não foi possível atualizar suas configurações de aparência." #. TRANS: Form text to confirm saved group design settings. #. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. @@ -2653,24 +2624,24 @@ msgstr "Uma lista dos usuários deste grupo." #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Somente o administrador do grupo pode aprovar usuários." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. -#, fuzzy, php-format +#, php-format msgid "%s group members awaiting approval" -msgstr "Membros do grupo %s" +msgstr "Membros do grupo %s aguardando aprovação" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s group members awaiting approval, page %2$d" -msgstr "Membros do grupo %1$s, pág. %2$d" +msgstr "Membros do grupo %1$s aguardando aprovação, pág. %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to join this group." -msgstr "Uma lista dos usuários deste grupo." +msgstr "" +"Uma lista de usuários aguardando aprovação para se associar a este grupo." #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #, php-format @@ -2678,14 +2649,13 @@ msgid "Updates from members of %1$s on %2$s!" msgstr "Atualizações dos membros de %1$s no %2$s!" #. TRANS: Title for first page of the groups list. -#, fuzzy msgctxt "TITLE" msgid "Groups" msgstr "Grupos" #. TRANS: Title for all but the first page of the groups list. #. TRANS: %d is the page number. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "Groups, page %d" msgstr "Groupos, pág. %d" @@ -2693,7 +2663,7 @@ msgstr "Groupos, pág. %d" #. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name, #. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them. #. TRANS: This message contains Markdown links in the form [link text](link). -#, fuzzy, php-format +#, php-format msgid "" "%%%%site.name%%%% groups let you find and talk with people of similar " "interests. After you join a group you can send messages to all other members " @@ -2701,11 +2671,12 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%" "%%%)!" msgstr "" -"Os grupos de %%%%site.name%%%% lhe permite encontrar e conversar com pessoas " -"que tenham interesses similares. Após associar-se a um grupo, você pode " -"enviar mensagens para todos os seus membros usando a sintaxe \"!nomedogrupo" -"\". Não encontrou um grupo que lhe agrade? Experimente [procurar por um](%%%%" -"action.groupsearch%%%%) ou [criar o seu próprio!](%%%%action.newgroup%%%%)" +"Os grupos de %%%%site.name%%%% lhe permitem encontrar e conversar com " +"pessoas que tenham interesses similares. Após associar-se a um grupo, você " +"pode enviar mensagens para todos os seus membros usando a sintaxe \"!" +"nomedogrupo\". Não encontrou um grupo que lhe agrade? Experimente [procurar " +"por um](%%%%action.groupsearch%%%%) ou [criar o seu próprio](%%%%action." +"newgroup%%%%)!" #. TRANS: Link to create a new group on the group list page. #. TRANS: Link text on group page to create a new group. @@ -2734,7 +2705,7 @@ msgstr "Nenhum resultado." #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). -#, fuzzy, php-format +#, php-format msgid "" "If you cannot find the group you're looking for, you can [create it](%%" "action.newgroup%%) yourself." @@ -2772,33 +2743,32 @@ msgstr "Configurações do MI" #. TRANS: Instant messaging settings page instructions. #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. #. TRANS: the order and formatting of link text and link should remain unchanged. -#, fuzzy, php-format +#, php-format msgid "" "You can send and receive notices through instant messaging [instant messages]" "(%%doc.im%%). Configure your addresses and settings below." msgstr "" -"Você pode enviar e receber mensagens através dos [mensageiros instantâneos](%" -"%doc.im%%) Jabber/GTalk. Configure seu endereço e opções abaixo." +"Você pode enviar e receber mensagens através de [mensageiros instantâneos](%%" +"doc.im%%). Configure seu endereço e suas opções abaixo." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." msgstr "MI não está disponível" #. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed. -#, fuzzy, php-format +#, php-format msgid "Current confirmed %s address." -msgstr "Endereço de e-mail já confirmado." +msgstr "O endereço %s foi confirmado." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM service name, %2$s is the IM address set. -#, fuzzy, php-format +#, php-format msgid "" "Awaiting confirmation on this address. Check your %1$s account for a message " "with further instructions. (Did you add %2$s to your buddy list?)" msgstr "" -"Aguardando a confirmação deste endereço. Procure em sua conta de Jabber/" -"GTalk por uma mensagem com mais instruções (Você adicionou %s à sua lista de " -"contatos?)" +"Aguardando a confirmação deste endereço. Procure em sua conta %1$s por uma " +"mensagem com mais instruções. (Você adicionou %2$s à sua lista de contatos?)" #. TRANS: Field label for IM address. msgid "IM address" @@ -2807,39 +2777,31 @@ msgstr "Endereço do MI" #. TRANS: Field title for IM address. %s is the IM service name. #, php-format msgid "%s screenname." -msgstr "" +msgstr "Identificação %s." #. TRANS: Header for IM preferences form. -#, fuzzy msgid "IM Preferences" msgstr "Preferências do mensageiro instantâneo" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "Enviar uma mensagem" +msgstr "Envie-me mensagens" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Post a notice when my status changes." -msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." +msgstr "Publique uma mensagem quando meu status mudar." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me replies from people I'm not subscribed to." -msgstr "" -"Envie-me respostas de pessoas que eu não estou assinando através do Jabber/" -"GTalk." +msgstr "Envie-me respostas de pessoas que eu não estou assinando." #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Publish a MicroID" -msgstr "Publique um MicroID para meu endereço de e-mail." +msgstr "Publique um MicroID." #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." -msgstr "Não foi possível atualizar o usuário." +msgstr "Não foi possível atualizar as preferências do mensageiro instantâneo." #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2847,45 +2809,38 @@ msgid "Preferences saved." msgstr "As preferências foram salvas." #. TRANS: Message given saving IM address without having provided one. -#, fuzzy msgid "No screenname." msgstr "Nenhuma identificação." #. TRANS: Form validation error when no transport is available setting an IM address. -#, fuzzy msgid "No transport." -msgstr "Nenhuma mensagem." +msgstr "Nenhum transporte." #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." -msgstr "Não foi possível normalizar essa ID do Jabber" +msgstr "Não foi possível normalizar essa identificação." #. TRANS: Message given saving IM address that not valid. -#, fuzzy msgid "Not a valid screenname." msgstr "Não é uma identificação válida." #. TRANS: Message given saving IM address that is already set for another user. -#, fuzzy msgid "Screenname already belongs to another user." -msgstr "Esta ID do Jabber já pertence à outro usuário." +msgstr "Esta identificação já pertence a outro usuário." #. TRANS: Message given saving valid IM address that is to be confirmed. -#, fuzzy msgid "A confirmation code was sent to the IM address you added." msgstr "" -"Um código de confirmação foi enviado para o endereço de IM que você " -"informou. Você deve permitir que %s envie mensagens para você." +"Um código de confirmação foi enviado para o endereço de mensageiro " +"instantâneo que você informou." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. msgid "That is the wrong IM address." msgstr "Isso é um endereço de MI errado." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." -msgstr "Não foi possível excluir a confirmação do mensageiro instantâneo." +msgstr "Não foi possível excluir a confirmação." #. TRANS: Message given after successfully canceling IM address confirmation. msgid "IM confirmation cancelled." @@ -2893,9 +2848,8 @@ msgstr "A confirmação do mensageiro instantâneo foi cancelada." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#, fuzzy msgid "That is not your screenname." -msgstr "Esse não é seu número de telefone." +msgstr "Essa não é a sua identificação." #. TRANS: Message given after successfully removing a registered Instant Messaging address. msgid "The IM address was removed." @@ -2998,9 +2952,8 @@ msgid "Email addresses" msgstr "Endereços de e-mail" #. TRANS: Tooltip for field label for a list of e-mail addresses. -#, fuzzy msgid "Addresses of friends to invite (one per line)." -msgstr "Endereços dos seus amigos que serão convidados (um por linha)" +msgstr "Endereços dos seus amigos que serão convidados (um por linha)." #. TRANS: Field label for a personal message to send to invitees. msgid "Personal message" @@ -3089,15 +3042,14 @@ msgid "You must be logged in to join a group." msgstr "Você deve estar autenticado para se associar a um grupo." #. TRANS: Title for join group page after joining. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s joined group %2$s" msgstr "%1$s associou-se ao grupo %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Grupo desconhecido." +msgstr "Erro desconhecido ao associar-se ao grupo." #. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. @@ -3172,9 +3124,8 @@ msgid "Type" msgstr "Tipo" #. TRANS: Dropdown field instructions in the license admin panel. -#, fuzzy msgid "Select a license." -msgstr "Selecione a licença" +msgstr "Selecione uma licença." #. TRANS: Form legend in the license admin panel. msgid "License details" @@ -3213,9 +3164,8 @@ msgid "URL for an image to display with the license." msgstr "URL de uma imagem a ser exibida com a licença." #. TRANS: Button title in the license admin panel. -#, fuzzy msgid "Save license settings." -msgstr "Salvar as configurações da licença" +msgstr "Salvar as configurações da licença." #. TRANS: Client error displayed when trying to log in while already logged in. #. TRANS: Client error displayed trying to use "one time password login" when already logged in. @@ -3254,7 +3204,6 @@ msgstr "" "computadores compartilhados!" #. TRANS: Button text for log in on login page. -#, fuzzy msgctxt "BUTTON" msgid "Login" msgstr "Entrar" @@ -3334,18 +3283,16 @@ msgid "Could not create application." msgstr "Não foi possível criar a aplicação." #. TRANS: Form validation error on New application page when providing an invalid image upload. -#, fuzzy msgid "Invalid image." -msgstr "Tamanho inválido." +msgstr "Imagem inválida." #. TRANS: Title for form to create a group. msgid "New group" msgstr "Novo grupo" #. TRANS: Client exception thrown when a user tries to create a group while banned. -#, fuzzy msgid "You are not allowed to create groups on this site." -msgstr "Você não tem permissão para excluir este grupo." +msgstr "Você não tem permissão para criar grupos neste site." #. TRANS: Form instructions for group create form. msgid "Use this form to create a new group." @@ -3358,7 +3305,6 @@ msgstr "Nova mensagem" #. TRANS: Client error displayed trying to send a direct message to a user while sender and #. TRANS: receiver are not subscribed to each other. -#, fuzzy msgid "You cannot send a message to this user." msgstr "Você não pode enviar mensagens para este usuário." @@ -3454,9 +3400,9 @@ msgstr "Mensagens com \"%s\"" #. TRANS: RSS notice search feed description. #. TRANS: %1$s is the query, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s." -msgstr "Mensagens correspondentes aos termos \"%1$s\" no %2$s!" +msgstr "Mensagens correspondentes aos termos \"%1$s\" em %2$s." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. msgid "" @@ -3535,15 +3481,15 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when path not found. #. TRANS: %s is a path. -#, fuzzy, php-format +#, php-format msgid "\"%s\" not found." -msgstr "O método da API não foi encontrado!" +msgstr "\"%s\" não foi encontrado." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. -#, fuzzy, php-format +#, php-format msgid "Notice %s not found." -msgstr "A mensagem pai não foi encontrada." +msgstr "A mensagem %s não foi encontrada." #. TRANS: Server error displayed in oEmbed action when notice has not profile. #. TRANS: Server error displayed trying to show a notice without a connected profile. @@ -3559,15 +3505,15 @@ msgstr "Mensagem de %1$s no %2$s" #. TRANS: Server error displayed in oEmbed action when attachment not found. #. TRANS: %d is an attachment ID. -#, fuzzy, php-format +#, php-format msgid "Attachment %s not found." -msgstr "O usuário destinatário não foi encontrado." +msgstr "O anexo %s não foi encontrado." #. TRANS: Server error displayed in oEmbed request when a path is not supported. #. TRANS: %s is a path. #, php-format msgid "\"%s\" not supported for oembed requests." -msgstr "" +msgstr "\"%s\" não é suportado para solicitações de oEmbed." #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #, php-format @@ -3630,7 +3576,6 @@ msgstr "" "particulares que você enviou." #. TRANS: Title for page where to change password. -#, fuzzy msgctxt "TITLE" msgid "Change password" msgstr "Alterar a senha" @@ -3655,12 +3600,10 @@ msgstr "Senha nova" #. TRANS: Field title on page where to change password. #. TRANS: Field title on account registration page. -#, fuzzy msgid "6 or more characters." -msgstr "No mínimo 6 caracteres" +msgstr "No mínimo 6 caracteres." #. TRANS: Field label on page where to change password. In this field the new password should be typed a second time. -#, fuzzy msgctxt "LABEL" msgid "Confirm" msgstr "Confirmar" @@ -3668,12 +3611,10 @@ msgstr "Confirmar" #. TRANS: Field title on page where to change password. #. TRANS: Ttile for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. -#, fuzzy msgid "Same as password above." -msgstr "Igual à senha acima" +msgstr "Igual à senha acima." #. TRANS: Button text on page where to change password. -#, fuzzy msgctxt "BUTTON" msgid "Change" msgstr "Alterar" @@ -3685,14 +3626,12 @@ msgstr "A senha deve ter, no mínimo, 6 caracteres." #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#, fuzzy msgid "Passwords do not match." msgstr "As senhas não coincidem." #. TRANS: Form validation error on page where to change password. -#, fuzzy msgid "Incorrect old password." -msgstr "A senha anterior está errada" +msgstr "A senha anterior está errada." #. TRANS: Form validation error on page where to change password. msgid "Error saving user; invalid." @@ -3701,7 +3640,6 @@ msgstr "Erro ao salvar usuário; inválido." #. TRANS: Server error displayed on page where to change password when password change #. TRANS: could not be made because of a server error. #. TRANS: Reset password form validation error message. -#, fuzzy msgid "Cannot save new password." msgstr "Não é possível salvar a nova senha." @@ -3780,12 +3718,10 @@ msgid "Fancy URLs" msgstr "URLs limpas" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Use fancy URLs (more readable and memorable)?" msgstr "Utilizar URLs limpas (mais legíveis e memorizáveis)?" #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "Theme" msgstr "Tema" @@ -3899,7 +3835,6 @@ msgid "Directory where attachments are located." msgstr "Diretório onde os anexos estão localizados." #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "SSL" msgstr "SSL" @@ -3962,7 +3897,7 @@ msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" msgid "Disabled" -msgstr "" +msgstr "Desabilitado" #. TRANS: Client error displayed when trying to use another method than POST. #. TRANS: Do not translate POST. @@ -3972,22 +3907,19 @@ msgid "This action only accepts POST requests." msgstr "Esta ação aceita somente requisições POST." #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. -#, fuzzy msgid "You cannot administer plugins." -msgstr "Você não pode excluir usuários." +msgstr "Você não pode administrar plugins." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. -#, fuzzy msgid "No such plugin." -msgstr "Esta página não existe." +msgstr "Este plugin não existe." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" msgid "Enabled" -msgstr "" +msgstr "Habilitado" #. TRANS: Tab and title for plugins admin panel. -#, fuzzy msgctxt "TITLE" msgid "Plugins" msgstr "Plugins" @@ -3998,16 +3930,20 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" +"Plugins adicionais podem ser habilitados e configurados manualmente. Dê uma " +"olhada na documentação online " +"sobre plugins para maiores detalhes." #. TRANS: Admin form section header -#, fuzzy msgid "Default plugins" -msgstr "Idioma padrão" +msgstr "Plugins padrão" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" "All default plugins have been disabled from the site's configuration file." msgstr "" +"Todos os plugins padrão foram desabilitados no arquivo de configuração do " +"site." #. TRANS: Client error displayed if the notice posted has too many characters. msgid "Invalid notice content." @@ -4015,10 +3951,11 @@ msgstr "O conteúdo da mensagem é inválido." #. TRANS: Exception thrown if a notice's license is not compatible with the StatusNet site license. #. TRANS: %1$s is the notice license, %2$s is the StatusNet site's license. -#, fuzzy, php-format +#, php-format msgid "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." msgstr "" -"A licença ‘%1$s’ da mensagem não é compatível com a licença ‘%2$s’ do site." +"A licença \"%1$s\" da mensagem não é compatível com a licença \"%2$s\" do " +"site." #. TRANS: Page title for profile settings. msgid "Profile settings" @@ -4065,17 +4002,16 @@ msgstr "URL do seu site, blog ou perfil em outro site." #. TRANS: Text area title in form for account registration. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d character." msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "Descreva a si mesmo e os seus interesses em %d caractere" -msgstr[1] "Descreva a si mesmo e os seus interesses em %d caracteres" +msgstr[0] "Descreva você e os seus interesses em %d caractere." +msgstr[1] "Descreva você e os seus interesses em %d caracteres." #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Text area title on account registration page. -#, fuzzy msgid "Describe yourself and your interests." -msgstr "Descreva a si mesmo e os seus interesses" +msgstr "Descreva você e os seus interesses." #. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. @@ -4091,9 +4027,8 @@ msgstr "Localização" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#, fuzzy msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" +msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" @@ -4101,24 +4036,24 @@ msgstr "Compartilhe minha localização atual ao publicar mensagens" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Etiquetas" #. TRANS: Tooltip for field label in form for profile settings. -#, fuzzy msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " -"espaços" +"espaços." #. TRANS: Dropdownlist label in form for profile settings. msgid "Language" msgstr "Idioma" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#, fuzzy msgid "Preferred language." msgstr "Idioma preferencial" @@ -4131,33 +4066,31 @@ msgid "What timezone are you normally in?" msgstr "Em que fuso horário você normalmente está?" #. TRANS: Checkbox label in form for profile settings. -#, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" -"Assinar automaticamente à quem me assinar (melhor para perfis não humanos)" +"Assinar automaticamente à quem me assinar (melhor para perfis não humanos)." #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. -#, fuzzy msgid "Subscription policy" -msgstr "Assinaturas" +msgstr "Política de assinaturas" #. TRANS: Dropdown field option for following policy. -#, fuzzy msgid "Let anyone follow me" -msgstr "Só é possível assinar pessoas." +msgstr "Permitir que qualquer um me assine" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" -msgstr "" +msgstr "Perguntar-me primeiro" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." msgstr "" +"Outros usuários precisam da sua permissão para acompanhar suas atualizações?" #. TRANS: Checkbox label in profile settings. msgid "Make updates visible only to my followers" -msgstr "" +msgstr "Tornar as atualizações visíveis somente para meus assinantes" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed @@ -4183,18 +4116,18 @@ msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." #. TRANS: %s is an invalid tag. #. TRANS: Form validation error when entering an invalid tag. #. TRANS: %s is the invalid tag. -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"." -msgstr "Etiqueta inválida: \"%s\"" +msgstr "Etiqueta inválida: \"%s\"." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#, fuzzy msgid "Could not update user for autosubscribe or subscribe_policy." -msgstr "Não foi possível atualizar o usuário para assinar automaticamente." +msgstr "" +"Não foi possível atualizar o usuário para assinar automaticamente ou para a " +"política de assinaturas." #. TRANS: Server error thrown when user profile location preference settings could not be updated. -#, fuzzy msgid "Could not save location prefs." msgstr "Não foi possível salvar as preferências de localização." @@ -4210,9 +4143,8 @@ msgstr "As configurações foram salvas." #. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup. #. TRANS: Page title for page where a user account can be restored from backup. -#, fuzzy msgid "Restore account" -msgstr "Criar uma conta" +msgstr "Restaurar a conta" #. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. #. TRANS: %s is the page limit. @@ -4294,9 +4226,9 @@ msgstr "" "Microblogging) baseado no software livre [StatusNet](http://status.net/)." #. TRANS: Public RSS feed description. %s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "%s updates from everyone." -msgstr "%s mensagens de todo mundo!" +msgstr "Mensagens públicas de %s." #. TRANS: Title for public tag cloud. msgid "Public tag cloud" @@ -4392,7 +4324,6 @@ msgid "Recover" msgstr "Recuperar" #. TRANS: Button text on password recovery page. -#, fuzzy msgctxt "BUTTON" msgid "Recover" msgstr "Recuperar" @@ -4411,22 +4342,19 @@ msgid "Password recovery requested" msgstr "Foi solicitada a recuperação da senha" #. TRANS: Title for password recovery page in password saved mode. -#, fuzzy msgid "Password saved" -msgstr "A senha foi salva." +msgstr "A senha foi salva" #. TRANS: Title for password recovery page when an unknown action has been specified. msgid "Unknown action" msgstr "Ação desconhecida" #. TRANS: Title for field label for password reset form. -#, fuzzy msgid "6 or more characters, and do not forget it!" msgstr "No mínimo 6 caracteres. E não se esqueça dela!" #. TRANS: Button text for password reset form. #. TRANS: Button text on profile design page to reset all colour settings to default without saving. -#, fuzzy msgctxt "BUTTON" msgid "Reset" msgstr "Restaurar" @@ -4481,15 +4409,14 @@ msgstr "" "autenticado." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." -msgstr "Nenhum argumento de ID." +msgstr "Nenhum parâmetro de ID." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "Esse arquivo não existe." +msgstr "Esse arquivo não existe: \"%d\"." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4504,7 +4431,6 @@ msgid "Registration successful" msgstr "Registro realizado com sucesso" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Registrar-se" @@ -4514,7 +4440,6 @@ msgid "Registration not allowed." msgstr "Não é permitido o registro." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "Você não pode se registrar se não aceitar a licença." @@ -4526,41 +4451,35 @@ msgid "Invalid username or password." msgstr "Nome de usuário e/ou senha inválido(s)" #. TRANS: Page notice on registration page. -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues." msgstr "" "Através deste formulário você pode criar uma nova conta. A partir daí você " -"pode publicar mensagens e se conectar a amigos e colegas. " +"pode publicar mensagens e se conectar a amigos e colegas." #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Confirmar" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "E-mail" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Used only for updates, announcements, and password recovery." -msgstr "Usado apenas para atualizações, anúncios e recuperações de senha" +msgstr "Usado apenas para atualizações, anúncios e recuperações de senha." #. TRANS: Field title on account registration page. -#, fuzzy msgid "Longer name, preferably your \"real\" name." -msgstr "Nome completo, de preferência seu nome \"real\"" +msgstr "Nome completo, de preferência seu nome \"real\"." #. TRANS: Button text to register a user on account registration page. -#, fuzzy msgctxt "BUTTON" msgid "Register" -msgstr "Registrar-se" +msgstr "Registrar" #. TRANS: Copyright checkbox label in registration dialog, for private sites. #. TRANS: %1$s is the StatusNet sitename. @@ -4665,30 +4584,27 @@ msgid "User nickname" msgstr "Identificação do usuário" #. TRANS: Field title on page for remote subscribe. -#, fuzzy msgid "Nickname of the user you want to follow." -msgstr "Identificação do usuário que você quer seguir" +msgstr "Identificação do usuário que você quer acompanhar." #. TRANS: Field label on page for remote subscribe. msgid "Profile URL" msgstr "URL do perfil" #. TRANS: Field title on page for remote subscribe. -#, fuzzy msgid "URL of your profile on another compatible microblogging service." -msgstr "URL do seu perfil em outro serviço de microblog compatível" +msgstr "URL do seu perfil em outro serviço de microblog compatível." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. -#, fuzzy +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Assinar" #. TRANS: Form validation error on page for remote subscribe when an invalid profile URL was provided. -#, fuzzy msgid "Invalid profile URL (bad format)." -msgstr "A URL do perfil é inválida (formato inválido)" +msgstr "A URL do perfil é inválida (formato inválido)." #. TRANS: Form validation error on page for remote subscribe when no the provided profile URL #. TRANS: does not contain expected data. @@ -4697,12 +4613,10 @@ msgstr "" "Não é uma URL de perfil válida (nenhum documento YADIS ou XRDS inválido)." #. TRANS: Form validation error on page for remote subscribe. -#, fuzzy msgid "That is a local profile! Login to subscribe." -msgstr "Esse é um perfil local! Autentique-se para assinar." +msgstr "Esse é um perfil local! Entre para assinar." #. TRANS: Form validation error on page for remote subscribe when the remote service is not providing a request token. -#, fuzzy msgid "Could not get a request token." msgstr "Não foi possível obter um token de requisição." @@ -4789,25 +4703,22 @@ msgstr "" #. TRANS: RSS reply feed description. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Replies to %1$s on %2$s." -msgstr "Respostas para %1$s no %2$s" +msgstr "Respostas para %1$s no %2$s." #. TRANS: Client exception displayed when trying to restore an account while not logged in. -#, fuzzy msgid "Only logged-in users can restore their account." -msgstr "Apenas usuários autenticados podem repetir mensagens." +msgstr "Apenas usuários autenticados podem restaurar suas contas." #. TRANS: Client exception displayed when trying to restore an account without having restore rights. -#, fuzzy msgid "You may not restore your account." -msgstr "Você ainda não registrou nenhuma aplicação." +msgstr "Você não pode restaurar a sua conta." #. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file. #. TRANS: Client exception. No file; probably just a non-AJAX submission. -#, fuzzy msgid "No uploaded file." -msgstr "Enviar arquivo" +msgstr "Nenhum arquivo enviado." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." @@ -4847,37 +4758,40 @@ msgstr "Erro no sistema durante o envio do arquivo." #. TRANS: Client exception thrown when a feed is not an Atom feed. #. TRANS: Client exception thrown when an imported feed is not an Atom feed. -#, fuzzy msgid "Not an Atom feed." -msgstr "Todos os membros" +msgstr "Não é uma fonte Atom." #. TRANS: Success message when a feed has been restored. msgid "" "Feed has been restored. Your old posts should now appear in search and your " "profile page." msgstr "" +"A fonte foi restaurada. Agora suas publicações anteriores devem aparecer na " +"pesquisa e na sua página de perfil." #. TRANS: Message when a feed restore is in progress. msgid "Feed will be restored. Please wait a few minutes for results." msgstr "" +"A fonte será restaurada. Por favor, aguarde alguns minutos para os " +"resultados." #. TRANS: Form instructions for feed restore. msgid "" "You can upload a backed-up stream in Activity Streams format." msgstr "" +"Você pode enviar um backup de fluxo no formato Fluxo de Atividades." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. -#, fuzzy msgid "Upload the file" -msgstr "Enviar arquivo" +msgstr "Enviar o arquivo" #. TRANS: Client error displayed when trying to revoke a role without having the right to do that. msgid "You cannot revoke user roles on this site." msgstr "Não é possível revogar os papéis dos usuários neste site." #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." msgstr "O usuário não possui este papel." @@ -4896,7 +4810,6 @@ msgid "User is already sandboxed." msgstr "O usuário já está em isolamento." #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Sessões" @@ -4906,7 +4819,6 @@ msgid "Session settings for this StatusNet site" msgstr "Configurações de sessão para este site StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Sessões" @@ -4918,9 +4830,8 @@ msgstr "Gerenciar sessões" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Define se as sessões terão gerenciamento próprio." +msgstr "Administração própria das sessões." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -4928,14 +4839,12 @@ msgid "Session debugging" msgstr "Depuração da sessão" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Ativa a saída de depuração para as sessões." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Salvar as configurações de acesso" +msgstr "Salvar as configurações de sessão" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -4948,10 +4857,10 @@ msgstr "Perfil da aplicação" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Criado por %1$s - acesso %2$s por padrão - %3$d usuários" +msgstr[0] "Criado por %1$s - acesso %2$s por padrão - %3$d usuário" msgstr[1] "Criado por %1$s - acesso %2$s por padrão - %3$d usuários" #. TRANS: Header on the OAuth application page. @@ -4959,7 +4868,6 @@ msgid "Application actions" msgstr "Ações da aplicação" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "Editar" @@ -4974,13 +4882,12 @@ msgid "Application info" msgstr "Informação da aplicação" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Nota: Nós suportamos assinaturas HMAC-SHA1. Nós não suportamos o método de " -"assinatura em texto plano." +"Nota: assinaturas HMAC-SHA1 são suportadas. O método de assinatura em texto " +"plano não é suportado." #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. msgid "Are you sure you want to reset your consumer key and secret?" @@ -5085,6 +4992,8 @@ msgstr "Membros" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Nenhum)" @@ -5142,7 +5051,6 @@ msgstr "" "sobre suas vidas e interesses. " #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Administradores" @@ -5168,9 +5076,8 @@ msgid "Message from %1$s on %2$s" msgstr "Mensagem de %1$s no %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "MI não está disponível" +msgstr "Não está disponível." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5178,21 +5085,21 @@ msgstr "A mensagem excluída." #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s" msgstr "Mensagens de %1$s etiquetadas como %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Mensagens de %1$s etiquetadas como %2$s, pág. %3$d" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s, page %2$d" -msgstr "Mensagens etiquetadas com %1$s, pág. %2$d" +msgstr "Mensagens de %1$s, pág. %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. @@ -5291,7 +5198,6 @@ msgid "User is already silenced." msgstr "O usuário já está silenciado." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Site" @@ -5323,51 +5229,44 @@ msgid "Dupe limit must be one or more seconds." msgstr "O limite de duplicatas deve ser de um ou mais segundos." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "Geral" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Nome do site" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "O nome do seu site, por exemplo \"Microblog da Sua Empresa\"" +msgstr "O nome do seu site, por exemplo, \"Microblog da Sua Empresa\"" #. TRANS: Field label on site settings panel. msgid "Brought by" msgstr "Disponibilizado por" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Text used for credits link in footer of each page." -msgstr "Texto utilizado para o link de créditos no rodapé de cada página" +msgstr "Texto utilizado para o link de créditos no rodapé de cada página." #. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "URL do disponibilizado por" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "URL used for credits link in footer of each page." -msgstr "URL utilizada para o link de créditos no rodapé de cada página" +msgstr "URL utilizada para o link de créditos no rodapé de cada página." #. TRANS: Field label on site settings panel. msgid "Email" msgstr "E-mail" #. TRANS: Field title on site settings panel. -#, fuzzy msgid "Contact email address for your site." -msgstr "Endereço de e-mail para contatos do seu site" +msgstr "Endereço de e-mail para contatos do seu site." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" msgstr "Local" @@ -5391,7 +5290,6 @@ msgstr "" "não estiverem disponíveis" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Limites" @@ -5444,9 +5342,8 @@ msgstr "" "Texto dos aviso do site (no máximo 255 caracteres; é permitido o uso de HTML)" #. TRANS: Title for button to save site notice in admin panel. -#, fuzzy msgid "Save site notice." -msgstr "Salvar os avisos do site" +msgstr "Salvar as mensagens do site." #. TRANS: Title for SMS settings. msgid "SMS settings" @@ -5492,9 +5389,8 @@ msgid "SMS phone number" msgstr "Telefone para SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. -#, fuzzy msgid "Phone number, no punctuation or spaces, with area code." -msgstr "Número de telefone, sem pontuação ou espaços, com código de área" +msgstr "Número de telefone, sem pontuações ou espaços, com código de área." #. TRANS: Form legend for SMS preferences form. msgid "SMS preferences" @@ -5541,9 +5437,8 @@ msgid "That is the wrong confirmation number." msgstr "Isso é um número de confirmação errado." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#, fuzzy msgid "Could not delete SMS confirmation." -msgstr "Não foi possível excluir a confirmação do mensageiro instantâneo." +msgstr "Não foi possível excluir a confirmação do SMS." #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." @@ -5577,12 +5472,10 @@ msgstr "" "e-mail que não está listada aqui, informe-nos enviando uma mensagem para %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#, fuzzy msgid "No code entered." -msgstr "Não foi digitado nenhum código" +msgstr "Não foi digitado nenhum código." #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Estatísticas" @@ -5604,7 +5497,6 @@ msgid "Invalid snapshot report URL." msgstr "A URL para o envio das estatísticas é inválida." #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "Estatísticas" @@ -5622,9 +5514,8 @@ msgid "Data snapshots" msgstr "Estatísticas dos dados" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." -msgstr "Quando enviar dados estatísticos para os servidores status.net" +msgstr "Quando enviar dados estatísticos para os servidores status.net." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" @@ -6060,6 +5951,7 @@ msgid "Accept" msgstr "Aceitar" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Assinar este usuário" @@ -6545,6 +6437,7 @@ msgid "Unable to save tag." msgstr "Não foi salvar gravar a categoria." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Você está proibido de assinar." @@ -7245,6 +7138,7 @@ msgid "AJAX error" msgstr "Erro no Ajax" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "O comando foi completado" @@ -7710,6 +7604,7 @@ msgid "Public" msgstr "Público" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Excluir" @@ -7736,7 +7631,6 @@ msgid "Upload file" msgstr "Enviar arquivo" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8085,8 +7979,8 @@ msgstr[1] "" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8482,9 +8376,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "As caixas postais são legíveis somente pelo seu próprio usuário." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8493,33 +8389,48 @@ msgstr "" "privadas para envolver outras pessoas em uma conversa. Você também pode " "receber mensagens privadas." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Recebidas" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Suas mensagens recebidas" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Enviadas" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Suas mensagens enviadas" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Não foi possível analisar a mensagem." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Não é um usuário registrado." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Desculpe-me, mas este não é seu endereço de e-mail para recebimento." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Desculpe-me, mas não é permitido o recebimento de e-mails." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Tipo de mensagem não suportado: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8573,10 +8484,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "\"%s\" não é um tipo de arquivo suportado neste servidor." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Enviar uma mensagem direta" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Selecione uma operadora" @@ -8586,32 +8500,68 @@ msgstr "Selecione uma operadora" msgid "No mutual subscribers." msgstr "Não assinado!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Para" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Enviar" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Mensagem" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "de" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-mail" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Você não tem permissão para excluir este grupo." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Não excluir este grupo" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8659,44 +8609,52 @@ msgstr "" "Desculpe, mas recuperar a sua geolocalização está demorando mais que o " "esperado. Por favor, tente novamente mais tarde." -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "L" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "O" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "em" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "no contexto" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Repetida por" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Responder a esta mensagem" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Responder" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Excluir esta mensagem" @@ -8705,24 +8663,34 @@ msgstr "Excluir esta mensagem" msgid "Notice repeated." msgstr "Mensagem repetida" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Chamar a atenção deste usuário" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Chamar a atenção" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Chame a atenção deste usuário" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Erro ao inserir perfil novo." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Erro ao inserir avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Erro ao inserir perfil remoto." @@ -8730,7 +8698,9 @@ msgstr "Erro ao inserir perfil remoto." msgid "Duplicate notice." msgstr "Nota duplicada." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Não foi possível inserir a nova assinatura." #. TRANS: Menu item in personal group navigation menu. @@ -8769,6 +8739,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Mensagem" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Suas mensagens recebidas" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8809,7 +8783,6 @@ msgid "Site configuration" msgstr "Configuração do usuário" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" @@ -8822,7 +8795,6 @@ msgid "Login to the site" msgstr "Autentique-se no site" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Pesquisar" @@ -8909,18 +8881,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Popular" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Sem argumentos return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Repetir esta mensagem?" -msgid "Yes" -msgstr "Sim" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Repetir esta mensagem" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Revoga o papel \"%s\" deste usuário" @@ -8930,9 +8904,13 @@ msgstr "Revoga o papel \"%s\" deste usuário" msgid "Page not found." msgstr "O método da API não foi encontrado!" +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Isolamento" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Colocar este usuário em isolamento" @@ -8975,7 +8953,6 @@ msgid "Find groups on this site" msgstr "Encontre grupos neste site" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" @@ -9029,9 +9006,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Mini-aplicativo" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Seção sem título" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mais..." @@ -9119,9 +9098,13 @@ msgstr "Conexões" msgid "Authorized connected applications" msgstr "Aplicações autorizadas conectadas" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Silenciar este usuário" @@ -9178,18 +9161,21 @@ msgstr "Convidar" msgid "Invite friends and colleagues to join you on %s." msgstr "Convide seus amigos e colegas para unir-se a você no %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Assinar este usuário" -msgid "Subscribe" -msgstr "Assinar" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Nuvem de etiquetas pessoais definidas pelas próprios usuários" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Nuvem de etiquetas pessoais definidas pelos outros usuário" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Nenhuma" @@ -9198,19 +9184,27 @@ msgstr "Nenhuma" msgid "Invalid theme name." msgstr "Nome de arquivo inválido." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" "Este servidor não pode processar o envio de temas sem suporte ao formato ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "O arquivo do tema não foi localizado ou ocorreu uma erro no envio." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Não foi possível salvar o tema." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Tema inválido: estrutura de diretórios incorreta." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9220,9 +9214,12 @@ msgstr[0] "" msgstr[1] "" "O tema enviado é muito grande; ele deve ter menos de %d bytes descomprimido." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Arquivo de tema inválido: está faltando o arquivo css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9230,13 +9227,17 @@ msgstr "" "O tema contém um nome de arquivo ou de diretório inválido. Use somente " "caracteres ASCII, números e os sinais de sublinhado e hífen." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "O tema contém extensões de arquivo inseguras; pode não ser seguro." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "O tema contém um arquivo do tipo '.%s', que não é permitido." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Ocorreu um erro ao abrir o arquivo do tema." @@ -9276,8 +9277,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Acrescentar às favoritas" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Excluir das favoritas" @@ -9289,8 +9291,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Você já repetiu essa mensagem." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Você já repetiu essa mensagem." @@ -9440,15 +9443,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Restaura a aparência padrão" +#~ msgid "Yes" +#~ msgstr "Sim" -#~ msgid "Reset back to default" -#~ msgstr "Restaura de volta ao padrão" - -#~ msgid "Save design" -#~ msgstr "Salvar a aparência" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Todos os membros" +#~ msgid "Subscribe" +#~ msgstr "Assinar" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 961972298b..6b4d400e1b 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -18,18 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:44+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -144,6 +144,7 @@ msgstr "Нет такой страницы." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Нет такого пользователя." @@ -907,6 +908,7 @@ msgstr "Клиент должен предоставить параметр «st #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1183,14 +1185,12 @@ msgid "%1$s's request" msgstr "Статус %1$s на %2$s" #. TRANS: Message on page for user after approving a subscription request. -#, fuzzy msgid "Subscription approved." -msgstr "Подписка авторизована" +msgstr "Подписка авторизована." #. TRANS: Message on page for user after rejecting a subscription request. -#, fuzzy msgid "Subscription canceled." -msgstr "Авторизация отменена." +msgstr "Подписка отменена." #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. #. TRANS: Client exception. @@ -1227,9 +1227,9 @@ msgstr "Запись уже в числе любимых." #. TRANS: Title for group membership feed. #. TRANS: %s is a username. -#, fuzzy, php-format +#, php-format msgid "Group memberships of %s" -msgstr "Участники группы %s" +msgstr "Участия в группах для %s" #. TRANS: Subtitle for group membership feed. #. TRANS: %1$s is a username, %2$s is the StatusNet sitename. @@ -1499,6 +1499,7 @@ msgstr "Не блокировать этого пользователя." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1593,7 +1594,6 @@ msgid "No profile with that ID." msgstr "Нет профиля с таким ID." #. TRANS: Title after unsubscribing from a group. -#, fuzzy msgctxt "TITLE" msgid "Unsubscribed" msgstr "Отписано" @@ -2462,6 +2462,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Удалённый сервис использует неизвестную версию протокола OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Ошибка обновления удалённого профиля." @@ -2628,13 +2629,13 @@ msgstr "Список пользователей, являющихся члена #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "Только администратор группы может подтверждать пользователей." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. -#, fuzzy, php-format +#, php-format msgid "%s group members awaiting approval" -msgstr "Участники группы %s" +msgstr "%s участников группы ожидают подтверждения" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. @@ -4033,6 +4034,8 @@ msgstr "Делиться своим текущим местоположение #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Теги" @@ -4587,6 +4590,7 @@ msgstr "URL-адрес вашего профиля на другом совме #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Подписаться" @@ -4794,7 +4798,6 @@ msgid "User is already sandboxed." msgstr "Пользователь уже в режиме песочницы." #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Сессии" @@ -4804,7 +4807,6 @@ msgid "Session settings for this StatusNet site" msgstr "Настройки сессии для этого сайта StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Сессии" @@ -4816,9 +4818,8 @@ msgstr "Управление сессиями" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. -#, fuzzy msgid "Handle sessions ourselves." -msgstr "Управлять ли сессиями самостоятельно." +msgstr "Управлять сессиями самостоятельно." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. @@ -4826,14 +4827,12 @@ msgid "Session debugging" msgstr "Отладка сессий" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." msgstr "Включить отладочный вывод для сессий." #. TRANS: Title for submit button on the sessions administration panel. -#, fuzzy msgid "Save session settings" -msgstr "Сохранить настройки доступа" +msgstr "Сохранить настройки сессий" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." @@ -4846,12 +4845,12 @@ msgstr "Профиль приложения" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз." -msgstr[1] "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз." -msgstr[2] "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз." +msgstr[0] "Создатель: %1$s — доступ по умолчанию: %2$s — %3$d пользователь" +msgstr[1] "Создатель: %1$s — доступ по умолчанию: %2$s — %3$d пользователя" +msgstr[2] "Создатель: %1$s — доступ по умолчанию: %2$s — %3$d пользователей" #. TRANS: Header on the OAuth application page. msgid "Application actions" @@ -4985,6 +4984,8 @@ msgstr "Участники" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(пока ничего нет)" @@ -5067,9 +5068,8 @@ msgid "Message from %1$s on %2$s" msgstr "Сообщение от %1$s на %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "IM не доступен." +msgstr "Не доступно." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5470,7 +5470,6 @@ msgid "No code entered." msgstr "Код не введён." #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Снимки" @@ -5492,7 +5491,6 @@ msgid "Invalid snapshot report URL." msgstr "Неверный URL отчёта снимка." #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "Снимки" @@ -5510,32 +5508,28 @@ msgid "Data snapshots" msgstr "Снимки данных" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. -#, fuzzy msgid "When to send statistical data to status.net servers." -msgstr "Когда отправлять статистические данные на сервера status.net" +msgstr "Когда отправлять статистические данные на сервера status.net." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "Частота" #. TRANS: Input field title for snapshot frequency in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent once every N web hits." -msgstr "Снимки будут отправляться каждые N посещений" +msgstr "Снимки будут отправляться каждые N посещений." #. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "URL отчёта" #. TRANS: Input field title for snapshot report URL in admin panel for snapshots. -#, fuzzy msgid "Snapshots will be sent to this URL." -msgstr "Снимки будут отправляться по этому URL-адресу" +msgstr "Снимки будут отправляться по этому URL-адресу." #. TRANS: Title for button to save snapshot settings. -#, fuzzy msgid "Save snapshot settings." -msgstr "Сохранить настройки снимка" +msgstr "Сохранить настройки снимка." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5947,6 +5941,7 @@ msgid "Accept" msgstr "Принять" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Подписаться на этого пользователя." @@ -6425,6 +6420,7 @@ msgid "Unable to save tag." msgstr "Не удаётся сохранить тег." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Вы заблокированы от подписки." @@ -6804,7 +6800,6 @@ msgid "User configuration" msgstr "Конфигурация пользователя" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Пользователь" @@ -6814,7 +6809,6 @@ msgid "Access configuration" msgstr "Конфигурация доступа" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Доступ" @@ -6824,7 +6818,6 @@ msgid "Paths configuration" msgstr "Конфигурация путей" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Пути" @@ -6834,7 +6827,6 @@ msgid "Sessions configuration" msgstr "Конфигурация сессий" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Сессии" @@ -7112,6 +7104,7 @@ msgid "AJAX error" msgstr "Ошибка AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Команда завершена" @@ -7567,6 +7560,7 @@ msgid "Public" msgstr "Общее" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Удалить" @@ -7592,12 +7586,11 @@ msgid "Upload file" msgstr "Загрузить файл" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" "Вы можете загрузить собственное фоновое изображение. Максимальный размер " -"файла составляет 2Mb." +"файла составляет 2МБ." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7944,8 +7937,8 @@ msgstr[2] "%dБ" #. TRANS: %3$s is the display name of an IM plugin. #, fuzzy, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8077,9 +8070,9 @@ msgstr "" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Profile: %s" -msgstr "Профиль" +msgstr "Профиль: %s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -8276,7 +8269,7 @@ msgstr "%1$s (@%2$s) отправил запись для вашего вним #. TRANS: %3$s is a URL to the notice, %4$s is the notice text, #. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty), #. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user, -#, fuzzy, php-format +#, php-format msgid "" "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" @@ -8296,7 +8289,7 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) отправил вам сообщение («@-ответ») на %2$s.\n" +"%1$s отправил вам сообщение («@-ответ») на %2$s.\n" "\n" "Сообщение находится здесь:\n" "\n" @@ -8312,12 +8305,7 @@ msgstr "" "\n" "Список всех @-ответов для вас находится здесь:\n" "\n" -"%7$s\n" -"\n" -"С уважением,\n" -"%2$s\n" -"\n" -"PS Вы можете отключить эти уведомления по электронной почте здесь: %8$s\n" +"%7$s" #. TRANS: Subject of group join notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. @@ -8344,9 +8332,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Только сам пользователь может читать собственный почтовый ящик." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8355,33 +8345,48 @@ msgstr "" "вовлечения других пользователей в разговор. Сообщения, получаемые от других " "людей, видите только вы." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Входящие" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Ваши входящие сообщения" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Исходящие" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Ваши исходящие сообщения" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Сообщение не удаётся разобрать." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Незарегистрированный пользователь." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Простите, это не Ваш входящий электронный адрес." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Простите, входящих писем нет." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Неподдерживаемый формат файла изображения: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8435,10 +8440,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "Тип файла «%s» не поддерживается не этом сервере." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Послать прямую запись" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Выберите получателя:" @@ -8446,29 +8454,67 @@ msgstr "Выберите получателя:" msgid "No mutual subscribers." msgstr "Нет взаимных подписчиков." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Для" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "↵" +#. TRANS: Header in message list. msgid "Messages" msgstr "Сообщения" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "от" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "web" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Email" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#, fuzzy +msgid "Cannot get author for activity." msgstr "Не удаётся получить автора действий." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "Закладки не была добавлена в эту группу." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Объект не добавлен для этого пользователя." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#, fuzzy +msgid "Do not know how to handle this kind of target." msgstr "Способ обработки цели такого типа неизвестен." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8516,70 +8562,87 @@ msgstr "" "К сожалению, получение информации о вашем местонахождении заняло больше " "времени, чем ожидалось; повторите попытку позже" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "с. ш." -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "ю. ш." -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "в. д." -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "з. д." +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "из" -msgid "web" -msgstr "web" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "переписка" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Повторено" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Ответить на эту запись" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Ответить" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Удалить эту запись" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#, fuzzy msgid "Notice repeated." -msgstr "Запись повторена" +msgstr "Запись повторена." +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Обновите свой статус…" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "«Подтолкнуть» этого пользователя" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "«Подтолкнуть»" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "«Подтолкнуть» этого пользователя" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Ошибка размещения нового профиля." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Ошибка размещения аватара." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Ошибка размещения удалённого профиля." @@ -8587,13 +8650,14 @@ msgstr "Ошибка размещения удалённого профиля." msgid "Duplicate notice." msgstr "Дублирующаяся запись." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Не удаётся вставить новую подписку." #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Profile" msgstr "Профиль" @@ -8603,7 +8667,6 @@ msgid "Your profile" msgstr "Ваш профиль" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Ответы" @@ -8626,6 +8689,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Сообщения" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Ваши входящие сообщения" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8650,10 +8717,9 @@ msgid "(Plugin descriptions unavailable when disabled.)" msgstr "(Описание отключённых расширений недоступно.)" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "Установки СМС" +msgstr "Настройки" #. TRANS: Menu item title in primary navigation panel. msgid "Change your personal settings" @@ -8664,7 +8730,6 @@ msgid "Site configuration" msgstr "Конфигурация сайта" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Выход" @@ -8677,7 +8742,6 @@ msgid "Login to the site" msgstr "Войти" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Поиск" @@ -8742,10 +8806,9 @@ msgid "User groups" msgstr "Группы" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" -msgstr "Облако тегов" +msgstr "Последние теги" #. TRANS: Menu item title in search group navigation panel. msgid "Recent tags" @@ -8763,18 +8826,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Популярное" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Нет аргумента return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Повторить эту запись?" -msgid "Yes" -msgstr "Да" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Повторить эту запись" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Отозвать у этого пользователя роль «%s»" @@ -8783,9 +8848,13 @@ msgstr "Отозвать у этого пользователя роль «%s»" msgid "Page not found." msgstr "Страница не найдена." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Песочница" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Установить режим песочницы для этого пользователя" @@ -8828,7 +8897,6 @@ msgid "Find groups on this site" msgstr "Найти группы на этом сайте" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Помощь" @@ -8882,9 +8950,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Бедж" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Секция без названия" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Далее…" @@ -8943,7 +9013,6 @@ msgid "URL shorteners" msgstr "Сокращатели ссылок" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "IM" @@ -8953,17 +9022,15 @@ msgid "Updates by instant messenger (IM)" msgstr "Обновлено по IM" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" -msgstr "СМС" +msgstr "SMS" #. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" msgstr "Обновления по СМС" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Соединения" @@ -8972,9 +9039,13 @@ msgstr "Соединения" msgid "Authorized connected applications" msgstr "Авторизованные соединённые приложения" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Заглушить" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Заглушить этого пользователя." @@ -9031,18 +9102,21 @@ msgstr "Пригласить" msgid "Invite friends and colleagues to join you on %s." msgstr "Пригласите друзей и коллег стать такими же как вы участниками %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Подписаться на этого пользователя" -msgid "Subscribe" -msgstr "Подписаться" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Облако собственных тегов людей" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Облако тегов людей" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Нет тегов" @@ -9050,18 +9124,26 @@ msgstr "Нет тегов" msgid "Invalid theme name." msgstr "Неверное имя темы оформления." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Этот сервер не может обработать загруженные темы без поддержки ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Файл темы отсутствует или произошёл сбой при загрузке." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Ошибка при сохранении темы." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Ошибочная тема. Плохая структура директорий." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9076,9 +9158,12 @@ msgstr[2] "" "Размер загруженной темы слишком велик, в распакованном виде она должна " "занимать не более %d байт." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Недопустимый архив: темы. Отсутствует файл css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9086,13 +9171,17 @@ msgstr "" "Тема содержит недопустимое имя файла или папки. Допустимы буквы ASCII, " "цифры, подчеркивание и знак минуса." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Тема содержит файлы с опасным расширением; это может быть небезопасно." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Тема содержит файл недопустимого типа «.%s»." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Ошибка открытия архива темы." @@ -9131,8 +9220,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Мне нравится эта запись." -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Эта запись понравилась %d пользователю." @@ -9144,8 +9234,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Вы уже повторили эту запись." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Запись повторена %d пользователем." @@ -9297,14 +9388,8 @@ msgstr "Неверный XML, отсутствует корень XRD." msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." -#~ msgid "Restore default designs" -#~ msgstr "Восстановить оформление по умолчанию" +#~ msgid "Yes" +#~ msgstr "Да" -#~ msgid "Reset back to default" -#~ msgstr "Восстановить значения по умолчанию" - -#~ msgid "Save design" -#~ msgstr "Сохранить оформление" - -#~ msgid "Not an atom feed." -#~ msgstr "Не является лентой Atom." +#~ msgid "Subscribe" +#~ msgstr "Подписаться" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index c5b63762a4..da1e389932 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -151,6 +151,7 @@ msgstr "" #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. #: actions/all.php:80 actions/allrss.php:69 #: actions/apiaccountupdatedeliverydevice.php:110 @@ -173,7 +174,7 @@ msgstr "" #: actions/repliesrss.php:38 actions/rsd.php:114 actions/showfavorites.php:106 #: actions/userbyid.php:75 actions/usergroups.php:95 actions/userrss.php:40 #: actions/userxrd.php:59 actions/xrds.php:71 lib/command.php:503 -#: lib/galleryaction.php:61 lib/mailbox.php:80 lib/profileaction.php:77 +#: lib/galleryaction.php:61 lib/mailbox.php:79 lib/profileaction.php:77 msgid "No such user." msgstr "" @@ -1128,8 +1129,9 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #: actions/apistatusesupdate.php:244 actions/newnotice.php:160 -#: lib/mailhandler.php:60 +#: lib/mailhandler.php:65 #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1841,9 +1843,11 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. #: actions/block.php:161 actions/deleteapplication.php:164 #: actions/deletegroup.php:227 actions/deletenotice.php:162 #: actions/deleteuser.php:161 actions/groupblock.php:194 +#: lib/repeatform.php:126 msgctxt "BUTTON" msgid "Yes" msgstr "" @@ -2972,7 +2976,8 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. -#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317 +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. +#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:316 msgid "Error updating remote profile." msgstr "" @@ -4760,8 +4765,10 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. #: actions/profilesettings.php:159 actions/tagother.php:137 -#: lib/subscriptionlist.php:104 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:104 lib/subscriptionlist.php:107 msgid "Tags" msgstr "" @@ -5365,7 +5372,9 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #: actions/remotesubscribe.php:146 lib/accountprofileblock.php:290 +#: lib/subscribeform.php:130 msgctxt "BUTTON" msgid "Subscribe" msgstr "" @@ -5404,7 +5413,7 @@ msgstr "" #. TRANS: Title after repeating a notice. #. TRANS: Repeat form status in notice list when a notice has been repeated. -#: actions/repeat.php:101 lib/noticelistitem.php:591 +#: actions/repeat.php:101 lib/noticelistitem.php:604 msgid "Repeated" msgstr "" @@ -5805,9 +5814,11 @@ msgstr "" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. #: actions/showgroup.php:284 lib/profileaction.php:137 #: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95 -#: lib/subscriptionlist.php:123 lib/tagcloudsection.php:71 +#: lib/subscriptionlist.php:125 msgid "(None)" msgstr "" @@ -6879,7 +6890,8 @@ msgid "Accept" msgstr "" #. TRANS: Title for button on Authorise Subscription page. -#: actions/userauthorization.php:204 +#. TRANS: Button title to subscribe to a user. +#: actions/userauthorization.php:204 lib/subscribeform.php:132 msgid "Subscribe to this user." msgstr "" @@ -7403,7 +7415,8 @@ msgid "Unable to save tag." msgstr "" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:79 lib/oauthstore.php:482 +#. TRANS: Error message displayed to a banned user when they try to subscribe. +#: classes/Subscription.php:79 lib/oauthstore.php:483 msgid "You have been banned from subscribing." msgstr "" @@ -8199,7 +8212,8 @@ msgid "AJAX error" msgstr "" #. TRANS: E-mail subject when a command has completed. -#: lib/channel.php:177 lib/mailhandler.php:143 +#. TRANS: E-mail subject for reply to an e-mail command. +#: lib/channel.php:177 lib/mailhandler.php:147 msgid "Command complete" msgstr "" @@ -8719,8 +8733,9 @@ msgid "Public" msgstr "" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. #: lib/deletegroupform.php:121 lib/deleteuserform.php:64 -#: lib/noticelistitem.php:568 +#: lib/noticelistitem.php:581 msgid "Delete" msgstr "" @@ -9146,8 +9161,8 @@ msgstr[1] "" #: lib/implugin.php:265 #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -9474,52 +9489,65 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. #: lib/mailbox.php:87 msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/mailbox.php:119 +#. TRANS: Message displayed when there are no private messages in the inbox of a user. +#: lib/mailbox.php:120 msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. #: lib/mailboxmenu.php:59 +msgctxt "MENU" msgid "Inbox" msgstr "" -#. TRANS: Menu item title in personal group navigation menu. -#: lib/mailboxmenu.php:60 lib/personalgroupnav.php:117 -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#: lib/mailboxmenu.php:61 +msgid "Your incoming messages." msgstr "" -#: lib/mailboxmenu.php:64 +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#: lib/mailboxmenu.php:66 +msgctxt "MENU" msgid "Outbox" msgstr "" -#: lib/mailboxmenu.php:65 -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#: lib/mailboxmenu.php:68 +msgid "Your sent messages." msgstr "" -#: lib/mailhandler.php:37 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. +#: lib/mailhandler.php:38 msgid "Could not parse message." msgstr "" -#: lib/mailhandler.php:42 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. +#: lib/mailhandler.php:44 msgid "Not a registered user." msgstr "" -#: lib/mailhandler.php:46 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. +#: lib/mailhandler.php:49 msgid "Sorry, that is not your incoming email address." msgstr "" -#: lib/mailhandler.php:50 +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. +#: lib/mailhandler.php:54 msgid "Sorry, no incoming email allowed." msgstr "" -#: lib/mailhandler.php:229 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#: lib/mailhandler.php:235 #, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "" #. TRANS: Form legend for form to make a user a group admin. @@ -9578,51 +9606,93 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" -#: lib/messageform.php:120 +#. TRANS: Form legend for direct notice. +#: lib/messageform.php:114 msgid "Send a direct notice" msgstr "" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. -#: lib/messageform.php:137 +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. +#: lib/messageform.php:132 msgid "Select recipient:" msgstr "" #. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. -#: lib/messageform.php:150 +#: lib/messageform.php:145 msgid "No mutual subscribers." msgstr "" -#: lib/messageform.php:153 +#. TRANS: Dropdown label in direct notice form. +#: lib/messageform.php:149 msgid "To" msgstr "" -#: lib/messageform.php:183 +#. TRANS: Button text for sending a direct notice. +#: lib/messageform.php:179 msgctxt "Send button for sending notice" msgid "Send" msgstr "" +#. TRANS: Header in message list. #: lib/messagelist.php:77 msgid "Messages" msgstr "" -#: lib/messagelistitem.php:123 lib/noticelistitem.php:421 +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. +#: lib/messagelistitem.php:123 lib/noticelistitem.php:428 msgid "from" msgstr "" -#: lib/microappplugin.php:340 -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#: lib/messagelistitem.php:144 lib/noticelistitem.php:423 +msgctxt "SOURCE" +msgid "web" msgstr "" -#: lib/microappplugin.php:377 +#. TRANS: A possible notice source (XMPP). +#: lib/messagelistitem.php:146 +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#: lib/messagelistitem.php:148 +msgctxt "SOURCE" +msgid "mail" +msgstr "" + +#. TRANS: A possible notice source (OpenMicroBlogging). +#: lib/messagelistitem.php:150 +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +#: lib/messagelistitem.php:152 +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#: lib/microappplugin.php:336 +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. +#: lib/microappplugin.php:374 msgid "Bookmark not posted to this group." msgstr "" -#: lib/microappplugin.php:390 +#. TRANS: Client exception. +#: lib/microappplugin.php:388 msgid "Object not posted to this user." msgstr "" -#: lib/microappplugin.php:394 -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#: lib/microappplugin.php:392 +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -9676,88 +9746,103 @@ msgid "" "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. #: lib/noticelistitem.php:352 msgid "N" msgstr "" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. #: lib/noticelistitem.php:354 msgid "S" msgstr "" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. #: lib/noticelistitem.php:356 msgid "E" msgstr "" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. #: lib/noticelistitem.php:358 msgid "W" msgstr "" -#: lib/noticelistitem.php:360 +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, +#: lib/noticelistitem.php:365 #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelistitem.php:369 +#. TRANS: Followed by geo location. +#: lib/noticelistitem.php:375 msgid "at" msgstr "" -#: lib/noticelistitem.php:417 -msgid "web" -msgstr "" - -#: lib/noticelistitem.php:482 +#. TRANS: Addition in notice list item if notice is part of a conversation. +#: lib/noticelistitem.php:489 msgid "in context" msgstr "" -#: lib/noticelistitem.php:516 +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. +#: lib/noticelistitem.php:524 msgid "Repeated by" msgstr "" -#: lib/noticelistitem.php:542 +#. TRANS: Link title in notice list item to reply to a notice. +#: lib/noticelistitem.php:551 msgid "Reply to this notice" msgstr "" -#: lib/noticelistitem.php:543 +#. TRANS: Link text in notice list item to reply to a notice. +#: lib/noticelistitem.php:553 msgid "Reply" msgstr "" -#: lib/noticelistitem.php:568 +#. TRANS: Link title in notice list item to delete a notice. +#: lib/noticelistitem.php:579 msgid "Delete this notice" msgstr "" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#: lib/noticelistitem.php:589 +#: lib/noticelistitem.php:602 msgid "Notice repeated." msgstr "" -#: lib/noticeplaceholderform.php:54 +#. TRANS: Field label for notice text. +#: lib/noticeplaceholderform.php:55 msgid "Update your status..." msgstr "" -#: lib/nudgeform.php:116 +#. TRANS: Form legend of form to nudge/ping another user. +#: lib/nudgeform.php:111 msgid "Nudge this user" msgstr "" -#: lib/nudgeform.php:128 +#. TRANS: Button text to nudge/ping another user. +#: lib/nudgeform.php:124 +msgctxt "BUTTON" msgid "Nudge" msgstr "" +#. TRANS: Button title to nudge/ping another user. #: lib/nudgeform.php:128 -msgid "Send a nudge to this user" +msgid "Send a nudge to this user." msgstr "" -#: lib/oauthstore.php:294 +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. +#: lib/oauthstore.php:291 msgid "Error inserting new profile." msgstr "" -#: lib/oauthstore.php:302 +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. +#: lib/oauthstore.php:300 msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. #: lib/oauthstore.php:322 msgid "Error inserting remote profile." msgstr "" @@ -9767,8 +9852,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -#: lib/oauthstore.php:507 -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#: lib/oauthstore.php:509 +msgid "Could not insert new subscription." msgstr "" #. TRANS: Menu item in personal group navigation menu. @@ -9808,6 +9894,11 @@ msgctxt "MENU" msgid "Messages" msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#: lib/personalgroupnav.php:117 +msgid "Your incoming messages" +msgstr "" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #: lib/personaltagcloudsection.php:56 #, php-format @@ -9967,23 +10058,23 @@ msgctxt "MENU" msgid "Popular" msgstr "" -#: lib/redirectingaction.php:95 +#. TRANS: Client error displayed when return-to was defined without a target. +#: lib/redirectingaction.php:93 msgid "No return-to arguments." msgstr "" -#: lib/repeatform.php:107 +#. TRANS: For legend for notice repeat form. +#: lib/repeatform.php:102 msgid "Repeat this notice?" msgstr "" -#: lib/repeatform.php:132 -msgid "Yes" +#. TRANS: Button title to repeat a notice on notice repeat form. +#: lib/repeatform.php:128 +msgid "Repeat this notice." msgstr "" -#: lib/repeatform.php:132 -msgid "Repeat this notice" -msgstr "" - -#: lib/revokeroleform.php:91 +#. TRANS: Description of role revoke form. %s is the role to be revoked. +#: lib/revokeroleform.php:88 #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "" @@ -9993,11 +10084,14 @@ msgstr "" msgid "Page not found." msgstr "" -#: lib/sandboxform.php:67 +#. TRANS: Title of form to sandbox a user. +#: lib/sandboxform.php:65 +msgctxt "TITLE" msgid "Sandbox" msgstr "" -#: lib/sandboxform.php:78 +#. TRANS: Description of form to sandbox a user. +#: lib/sandboxform.php:76 msgid "Sandbox this user" msgstr "" @@ -10100,11 +10194,13 @@ msgctxt "MENU" msgid "Badge" msgstr "" -#: lib/section.php:89 +#. TRANS: Default title for section/sidebar widget. +#: lib/section.php:88 msgid "Untitled section" msgstr "" -#: lib/section.php:106 +#. TRANS: Default "More..." title for section/sidebar widget. +#: lib/section.php:107 msgid "More..." msgstr "" @@ -10201,11 +10297,14 @@ msgstr "" msgid "Authorized connected applications" msgstr "" -#: lib/silenceform.php:67 +#. TRANS: Title of form to silence a user. +#: lib/silenceform.php:65 +msgctxt "TITLE" msgid "Silence" msgstr "" -#: lib/silenceform.php:78 +#. TRANS: Description of form to silence a user. +#: lib/silenceform.php:76 msgid "Silence this user" msgstr "" @@ -10269,25 +10368,26 @@ msgstr "" msgid "Invite friends and colleagues to join you on %s." msgstr "" -#: lib/subscribeform.php:115 lib/subscribeform.php:139 +#. TRANS: Form of form to subscribe to a user. +#: lib/subscribeform.php:107 msgid "Subscribe to this user" msgstr "" -#: lib/subscribeform.php:139 -msgid "Subscribe" -msgstr "" - +#. TRANS: Title of personal tag cloud section. #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. #: lib/subscriberspeopletagcloudsection.php:48 #: lib/subscriptionspeopletagcloudsection.php:48 msgid "People Tagcloud as tagged" msgstr "" -#: lib/tagcloudsection.php:56 +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#: lib/tagcloudsection.php:56 lib/tagcloudsection.php:72 +msgctxt "NOTAGS" msgid "None" msgstr "" @@ -10296,25 +10396,32 @@ msgstr "" msgid "Invalid theme name." msgstr "" -#: lib/themeuploader.php:50 +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. +#: lib/themeuploader.php:51 msgid "This server cannot handle theme uploads without ZIP support." msgstr "" -#: lib/themeuploader.php:58 lib/themeuploader.php:61 +#. TRANS: Server exception thrown when uploading a theme fails. +#: lib/themeuploader.php:60 lib/themeuploader.php:64 msgid "The theme file is missing or the upload failed." msgstr "" -#: lib/themeuploader.php:91 lib/themeuploader.php:102 -#: lib/themeuploader.php:279 lib/themeuploader.php:283 -#: lib/themeuploader.php:291 lib/themeuploader.php:298 +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. +#: lib/themeuploader.php:95 lib/themeuploader.php:107 +#: lib/themeuploader.php:293 lib/themeuploader.php:298 +#: lib/themeuploader.php:307 lib/themeuploader.php:315 msgid "Failed saving theme." msgstr "" -#: lib/themeuploader.php:147 -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#: lib/themeuploader.php:153 +msgid "Invalid theme: Bad directory structure." msgstr "" -#: lib/themeuploader.php:166 +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. +#: lib/themeuploader.php:174 #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -10322,26 +10429,32 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: lib/themeuploader.php:179 -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#: lib/themeuploader.php:188 +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" -#: lib/themeuploader.php:219 +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. +#: lib/themeuploader.php:229 msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" -#: lib/themeuploader.php:225 +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. +#: lib/themeuploader.php:236 msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" -#: lib/themeuploader.php:242 +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#: lib/themeuploader.php:255 #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" -#: lib/themeuploader.php:260 +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. +#: lib/themeuploader.php:273 msgid "Error opening theme archive." msgstr "" @@ -10385,23 +10498,25 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "" -#: lib/threadednoticelist.php:427 +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#: lib/threadednoticelist.php:426 #, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "" msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. -#: lib/threadednoticelist.php:481 +#: lib/threadednoticelist.php:480 msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "" -#: lib/threadednoticelist.php:486 +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#: lib/threadednoticelist.php:484 #, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index a50ddf81ee..cdf4e93ece 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:46+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -138,6 +138,7 @@ msgstr "Ingen sådan sida" #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Ingen sådan användare." @@ -896,6 +897,7 @@ msgstr "Klient måste tillhandahålla en 'status'-parameter med ett värde." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, fuzzy, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1491,6 +1493,7 @@ msgstr "Blockera inte denna användare" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -2461,6 +2464,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Fjärrtjänsten använder en okänd version av OMB-protokollet." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Fel vid uppdatering av fjärrprofil." @@ -4076,6 +4080,8 @@ msgstr "Dela min nuvarande plats när jag skickar notiser" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Taggar" @@ -4652,6 +4658,7 @@ msgstr "URL till din profil på en annan kompatibel mikrobloggtjänst" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5056,6 +5063,8 @@ msgstr "Medlemmar" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Ingen)" @@ -6034,6 +6043,7 @@ msgid "Accept" msgstr "Acceptera" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. #, fuzzy msgid "Subscribe to this user." msgstr "Prenumerera på denna användare" @@ -6517,6 +6527,7 @@ msgid "Unable to save tag." msgstr "Kunde inte spara tagg." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Du har blivit utestängd från att prenumerera." @@ -6896,7 +6907,6 @@ msgid "User configuration" msgstr "Konfiguration av användare" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Användare" @@ -6906,7 +6916,6 @@ msgid "Access configuration" msgstr "Konfiguration av åtkomst" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Åtkomst" @@ -6916,7 +6925,6 @@ msgid "Paths configuration" msgstr "Konfiguration av sökvägar" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Sökvägar" @@ -6926,7 +6934,6 @@ msgid "Sessions configuration" msgstr "Konfiguration av sessioner" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sessioner" @@ -7208,6 +7215,7 @@ msgid "AJAX error" msgstr "AJAX-fel" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Kommando komplett" @@ -7667,6 +7675,7 @@ msgid "Public" msgstr "Publikt" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Ta bort" @@ -7693,7 +7702,6 @@ msgid "Upload file" msgstr "Ladda upp fil" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" @@ -8039,8 +8047,8 @@ msgstr[1] "%dB" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8433,9 +8441,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "Bara användaren kan läsa sina egna brevlådor." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8444,33 +8454,48 @@ msgstr "" "engagera andra användare i konversationen. Folk kan skicka meddelanden till " "dig som bara du ser." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Inkorg" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Dina inkommande meddelanden" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Utkorg" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Dina skickade meddelanden" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Kunde inte tolka meddelande." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Inte en registrerad användare." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Tyvärr, det är inte din inkommande e-postadress." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "Tyvärr, ingen inkommande e-post tillåts." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Formatet %s för meddelande stödjs inte." #. TRANS: Form legend for form to make a user a group admin. @@ -8523,10 +8548,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "%s är en filtyp som saknar stöd på denna server." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Skicka en direktnotis" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. #, fuzzy msgid "Select recipient:" msgstr "Välj licens" @@ -8536,32 +8564,68 @@ msgstr "Välj licens" msgid "No mutual subscribers." msgstr "Inte prenumerant!" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "Till" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Skicka" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "Meddelande" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "från" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "webb" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "E-post" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "Du får inte ta bort denna grupp." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "Ta inte bort denna grupp" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8609,44 +8673,52 @@ msgstr "" "Tyvärr, hämtning av din geografiska plats tar längre tid än förväntat, var " "god försök igen senare" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "Ö" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "V" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "på" -msgid "web" -msgstr "webb" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "i sammanhang" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Upprepad av" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Svara på denna notis" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Svara" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Ta bort denna notis" @@ -8655,24 +8727,34 @@ msgstr "Ta bort denna notis" msgid "Notice repeated." msgstr "Notis upprepad" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "Knuffa denna användare" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "Knuffa" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Skicka en knuff till denna användare" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Fel vid infogning av ny profil." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Fel vid infogning av avatar." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Fel vid infogning av fjärrprofil." @@ -8680,7 +8762,9 @@ msgstr "Fel vid infogning av fjärrprofil." msgid "Duplicate notice." msgstr "Duplicera notis." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Kunde inte infoga ny prenumeration." #. TRANS: Menu item in personal group navigation menu. @@ -8719,6 +8803,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Meddelande" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Dina inkommande meddelanden" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8759,7 +8847,6 @@ msgid "Site configuration" msgstr "Konfiguration av användare" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logga ut" @@ -8772,7 +8859,6 @@ msgid "Login to the site" msgstr "Logga in på webbplatsen" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Sök" @@ -8859,18 +8945,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Populärt" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Inga \"return-to\"-argument." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Upprepa denna notis?" -msgid "Yes" -msgstr "Ja" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Upprepa denna notis" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Återkalla rollen \"%s\" från denna användare" @@ -8880,9 +8968,13 @@ msgstr "Återkalla rollen \"%s\" från denna användare" msgid "Page not found." msgstr "API-metod hittades inte." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Flytta till sandlådan" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Flytta denna användare till sandlådan" @@ -8925,7 +9017,6 @@ msgid "Find groups on this site" msgstr "Hitta grupper på denna webbplats" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjälp" @@ -8979,9 +9070,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Emblem" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Namnlös sektion" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Mer..." @@ -9040,7 +9133,6 @@ msgid "URL shorteners" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "Snabbmeddelande" @@ -9050,7 +9142,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Uppdateringar via snabbmeddelande (IM)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -9060,7 +9151,6 @@ msgid "Updates by SMS" msgstr "Uppdateringar via SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Anslutningar" @@ -9069,9 +9159,13 @@ msgstr "Anslutningar" msgid "Authorized connected applications" msgstr "Tillåt anslutna applikationer" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Tysta ned" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Tysta ned denna användare" @@ -9128,18 +9222,21 @@ msgstr "Bjud in" msgid "Invite friends and colleagues to join you on %s." msgstr "Bjud in vänner och kollegor att gå med dig på %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Prenumerera på denna användare" -msgid "Subscribe" -msgstr "Prenumerera" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Taggmoln för person, såsom taggat själv" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Taggmoln för person, såsom taggats" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Ingen" @@ -9148,18 +9245,26 @@ msgstr "Ingen" msgid "Invalid theme name." msgstr "Ogiltigt filnamn." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Denna server kan inte hantera temauppladdningar utan ZIP-stöd." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Temafilen saknas eller uppladdningen misslyckades." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Kunde inte spara tema." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Ogiltigt tema: dålig katalogstruktur." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, fuzzy, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9169,9 +9274,12 @@ msgstr[0] "" msgstr[1] "" "Uppladdat tema är för stort, måste vara mindre än %d byte okomprimerat." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "Ogiltigt temaarkiv: filen css/display.css saknas" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9179,13 +9287,17 @@ msgstr "" "Tema innehåller ogiltigt fil- eller mappnamn. Använd bara ASCII-bokstäver, " "siffror, understreck och minustecken." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "Tema innehåller osäkra filtilläggsnamn; kan vara osäkert." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Tema innehåller fil av typen '.%s', vilket inte är tillåtet." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Fel vid öppning temaarkiv." @@ -9225,8 +9337,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Markera denna notis som favorit" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Avmarkera denna notis som favorit" @@ -9238,8 +9351,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Du har redan upprepat denna notis." +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Redan upprepat denna notis." @@ -9388,15 +9502,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Restore default designs" -#~ msgstr "Återställ standardutseende" +#~ msgid "Yes" +#~ msgstr "Ja" -#~ msgid "Reset back to default" -#~ msgstr "Återställ till standardvärde" - -#~ msgid "Save design" -#~ msgstr "Spara utseende" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "Alla medlemmar" +#~ msgid "Subscribe" +#~ msgstr "Prenumerera" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index eb788cf6d6..05524a46f0 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:48+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -134,6 +134,7 @@ msgstr "అటువంటి పేజీ లేదు." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." @@ -876,6 +877,7 @@ msgstr "" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1469,6 +1471,7 @@ msgstr "ఈ వాడుకరిని నిరోధించవద్దు. #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "అవును" @@ -2427,6 +2430,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. #, fuzzy msgid "Error updating remote profile." msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" @@ -3987,6 +3991,8 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "ట్యాగులు" @@ -4535,6 +4541,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "చందాచేరండి" @@ -4920,6 +4927,8 @@ msgstr "సభ్యులు" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(ఏమీలేదు)" @@ -5862,6 +5871,7 @@ msgid "Accept" msgstr "అంగీకరించు" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "ఈ వాడుకరికి చందాచేరండి." @@ -6313,6 +6323,7 @@ msgid "Unable to save tag." msgstr "ట్యాగులని భద్రపరచలేకపోయాం." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు." @@ -6702,7 +6713,6 @@ msgid "Access configuration" msgstr "రూపకల్పన స్వరూపణం" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "అందుబాటు" @@ -7006,6 +7016,7 @@ msgid "AJAX error" msgstr "అజాక్స్ పొరపాటు" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "ఆదేశం పూర్తయ్యింది" @@ -7462,6 +7473,7 @@ msgid "Public" msgstr "ప్రజా" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "తొలగించు" @@ -7488,10 +7500,9 @@ msgid "Upload file" msgstr "ఫైలుని ఎక్కించు" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." -msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై." +msgstr "మీ వ్యక్తిగత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7826,8 +7837,8 @@ msgstr[1] "%dబైట్లు" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8209,9 +8220,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "ఎవరి తపాలాపెట్టెలను ఆ వాడుకరి మాత్రమే చదవలగరు." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8219,35 +8232,50 @@ msgstr "" "మీకు అంతరంగిక సందేశాలు లేవు. ఇతర వాడుకరులతో సంభాషణకై మీరు వారికి అంతరంగిక సందేశాలు " "పంపించవచ్చు. మీ కంటికి మాత్రమే కనబడేలా వారు మీకు సందేశాలు పంపవచ్చు." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "వచ్చినవి" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "మీకు వచ్చిన సందేశాలు" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "పంపినవి" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "మీరు పంపిన సందేశాలు" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. #, fuzzy msgid "Could not parse message." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "నమోదైన వాడుకరి కాదు." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "క్షమించండి, అది మీ లోనికివచ్చు ఈమెయిలు చిరునామా కాదు." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. #, fuzzy msgid "Sorry, no incoming email allowed." msgstr "క్షమించండి, అది మీ లోనికివచ్చు ఈమెయిలు చిరునామా కాదు." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. #, fuzzy, php-format -msgid "Unsupported message type: %s" +msgid "Unsupported message type: %s." msgstr "%s కి నేరు సందేశాలు" #. TRANS: Form legend for form to make a user a group admin. @@ -8297,11 +8325,14 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "" +#. TRANS: Form legend for direct notice. #, fuzzy msgid "Send a direct notice" msgstr "సైటు గమనికని భద్రపరచు" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "" @@ -8309,32 +8340,68 @@ msgstr "" msgid "No mutual subscribers." msgstr "పరస్పర చందాదార్లు ఎవరూలేరు." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "పంపించు" +#. TRANS: Header in message list. #, fuzzy msgid "Messages" msgstr "సందేశం" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "నుండి" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "జాలం" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "ఈమెయిల్" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "ఈ గుంపును తొలగించడానికి మీకు అనుమతి లేదు." +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "ఈ వాడుకరిని తొలగించకండి." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8382,44 +8449,52 @@ msgstr "" "క్షమించండి, మీ భౌగోళిక ప్రాంతాన్ని తెలుసుకోవడం అనుకున్నదానికంటే ఎక్కవ సమయం తీసుకుంటూంది, దయచేసి " "కాసేపాగి ప్రయత్నించండి" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "ఉ" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "ద" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "తూ" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "ప" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "ప్రాంతం" -msgid "web" -msgstr "జాలం" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "సందర్భంలో" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "%s యొక్క పునరావృతం" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "ఈ నోటీసుపై స్పందించండి" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "స్పందించండి" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -8428,27 +8503,35 @@ msgstr "ఈ నోటీసుని తొలగించు" msgid "Notice repeated." msgstr "నోటీసుని పునరావృతించారు" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. #, fuzzy msgid "Nudge this user" msgstr "ఈ వాడుకరిని తొలగించు" +#. TRANS: Button text to nudge/ping another user. #, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "బాడ్జి" +#. TRANS: Button title to nudge/ping another user. #, fuzzy -msgid "Send a nudge to this user" +msgid "Send a nudge to this user." msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" @@ -8456,7 +8539,9 @@ msgstr "" msgid "Duplicate notice." msgstr "" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "కొత్త చందాని చేర్చలేకపోయాం." #. TRANS: Menu item in personal group navigation menu. @@ -8495,6 +8580,10 @@ msgctxt "MENU" msgid "Messages" msgstr "సందేశం" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "మీకు వచ్చిన సందేశాలు" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8535,7 +8624,6 @@ msgid "Site configuration" msgstr "సైటు స్వరూపణం" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "నిష్క్రమించు" @@ -8548,7 +8636,6 @@ msgid "Login to the site" msgstr "సైటులోని ప్రవేశించు" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "వెతుకు" @@ -8635,18 +8722,20 @@ msgctxt "MENU" msgid "Popular" msgstr "ప్రాచుర్యం" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "జోడింపులు లేవు." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "ఈ నోటీసుని పునరావృతించాలా?" -msgid "Yes" -msgstr "అవును" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "ఈ నోటీసుని పునరావృతించు" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, fuzzy, php-format msgid "Revoke the \"%s\" role from this user" msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు" @@ -8656,10 +8745,13 @@ msgstr "ఈ గుంపునుండి ఈ వాడుకరిని న msgid "Page not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." +#. TRANS: Title of form to sandbox a user. #, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "వచ్చినవి" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "ఈ వాడుకరిని నిరోధించు" @@ -8702,7 +8794,6 @@ msgid "Find groups on this site" msgstr "ఈ సైటులోని గుంపులని కనుగొనండి" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "సహాయం" @@ -8756,9 +8847,11 @@ msgctxt "MENU" msgid "Badge" msgstr "బాడ్జి" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "శీర్షికలేని విభాగం" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "మరింత..." @@ -8826,7 +8919,6 @@ msgid "Updates by instant messenger (IM)" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SSL" @@ -8845,9 +8937,13 @@ msgstr "అనుసంధానాలు" msgid "Authorized connected applications" msgstr "అధీకృత అనుసంధాన ఉపకరణాలు" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "సైటు గమనిక" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "ఈ వాడుకరిని తొలగించు" @@ -8904,18 +9000,21 @@ msgstr "ఆహ్వానించు" msgid "Invite friends and colleagues to join you on %s." msgstr "%sలో తోడుకై మీ స్నేహితులని మరియు సహోద్యోగులని ఆహ్వానించండి" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "ఈ వాడుకరికి చందాచేరు" -msgid "Subscribe" -msgstr "చందాచేరు" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "ఏమీలేదు" @@ -8923,18 +9022,25 @@ msgstr "ఏమీలేదు" msgid "Invalid theme name." msgstr "చెల్లని అలంకారపు పేరు." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "అలంకారాన్ని భద్రపరచడం విఫలమైంది." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8942,21 +9048,27 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "నిరోధాన్ని తొలగించడంలో పొరపాటు." @@ -8996,8 +9108,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "ఈ నోటీసుని పునరావృతించు" -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "ఒక వ్యక్తి" @@ -9008,8 +9121,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "మీరు ఈ నోటీసును పునరావృతించారు." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "ఒక వ్యక్తి" @@ -9154,17 +9268,8 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Restore default designs" -#~ msgstr "అప్రమేయాలని ఉపయోగించు" +#~ msgid "Yes" +#~ msgstr "అవును" -#, fuzzy -#~ msgid "Reset back to default" -#~ msgstr "అప్రమేయాలని ఉపయోగించు" - -#~ msgid "Save design" -#~ msgstr "రూపురేఖలని భద్రపరచు" - -#, fuzzy -#~ msgid "Not an atom feed." -#~ msgstr "అందరు సభ్యులూ" +#~ msgid "Subscribe" +#~ msgstr "చందాచేరు" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 454c62da25..f827d88d6c 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -139,6 +139,7 @@ msgstr "Немає такої сторінки." #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "Такого користувача немає." @@ -907,6 +908,7 @@ msgstr "Клієнт мусить надати параметр «статус» #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1510,6 +1512,7 @@ msgstr "Не блокувати цього користувача." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "Так" @@ -2456,6 +2459,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "Невідома версія протоколу OMB." #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "Помилка при оновленні віддаленого профілю." @@ -4036,6 +4040,8 @@ msgstr "Показувати моє місцезнаходження при на #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "Теґи" @@ -4589,6 +4595,7 @@ msgstr "URL-адреса вашого профілю на іншому сумі #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. msgctxt "BUTTON" msgid "Subscribe" msgstr "Підписатись" @@ -4983,6 +4990,8 @@ msgstr "Учасники" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(Пусто)" @@ -5945,6 +5954,7 @@ msgid "Accept" msgstr "Погодитись" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "Підписатися до цього користувача." @@ -6423,6 +6433,7 @@ msgid "Unable to save tag." msgstr "Не вдається зберегти теґ." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "Вас позбавлено можливості підписатись." @@ -6800,7 +6811,6 @@ msgid "User configuration" msgstr "Конфігурація користувача" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Користувач" @@ -6810,7 +6820,6 @@ msgid "Access configuration" msgstr "Прийняти конфігурацію" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Погодитись" @@ -6820,7 +6829,6 @@ msgid "Paths configuration" msgstr "Конфігурація шляху" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Шлях" @@ -6830,7 +6838,6 @@ msgid "Sessions configuration" msgstr "Конфігурація сесій" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Сесії" @@ -7108,6 +7115,7 @@ msgid "AJAX error" msgstr "Помилка AJAX" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "Команду виконано" @@ -7566,6 +7574,7 @@ msgid "Public" msgstr "Загал" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "Видалити" @@ -7591,11 +7600,11 @@ msgid "Upload file" msgstr "Завантажити файл" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" -"Ви можете завантажити власне фонове зображення. Максимум становить 2Мб." +"Ви можете завантажити власне фонове зображення. Максимальний розмір файлу " +"становить 2Мб." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" @@ -7943,8 +7952,8 @@ msgstr[2] "%d б" #. TRANS: %3$s is the display name of an IM plugin. #, fuzzy, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8327,10 +8336,12 @@ msgstr "" "%1$s має бажання долучитися до вашої спільноти %2$s на %3$s. Ви можете " "прийняти або відхилити цей запит тут %4$s" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "" "Лише користувач має можливість переглядати свою власну поштову скриньку." +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8339,34 +8350,49 @@ msgstr "" "повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите " "лише ви." +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "Вхідні" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "Ваші вхідні повідомлення" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "Вихідні" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "Надіслані вами повідомлення" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "Не можна розібрати повідомлення." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "Це незареєстрований користувач." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "Вибачте, але це не є вашою електронною адресою для вхідної пошти." +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "" "Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "Формат повідомлення не підтримується: %s" #. TRANS: Form legend for form to make a user a group admin. @@ -8418,10 +8444,13 @@ msgstr "" msgid "\"%s\" is not a supported file type on this server." msgstr "Тип файлів «%s» тепер не підтримується на даному сервері." +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "Надіслати прямий допис" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "Оберіть одержувача:" @@ -8429,29 +8458,67 @@ msgstr "Оберіть одержувача:" msgid "No mutual subscribers." msgstr "Немає відповідних абонентів." +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "До" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "Так" +#. TRANS: Header in message list. msgid "Messages" msgstr "Повідомлення" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "з" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "вебу" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "Пошта" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +#, fuzzy +msgid "Cannot get author for activity." msgstr "Не вдається отримати автора для діяльності." +#. TRANS: Client exception. msgid "Bookmark not posted to this group." msgstr "Закладку не додано до цієї спільноти." +#. TRANS: Client exception. msgid "Object not posted to this user." msgstr "Об’єкт не додано до цього користувача." -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +#, fuzzy +msgid "Do not know how to handle this kind of target." msgstr "Не знаю, як обробити такого роду мету." #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8499,44 +8566,52 @@ msgstr "" "На жаль, отримання інформації щодо вашого розташування займе більше часу, " "ніж очікувалось; будь ласка, спробуйте пізніше" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "Півн." -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "Півд." -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "Сх." -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "Зах." +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "в" -msgid "web" -msgstr "вебу" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "у контексті" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "Повторено" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "Відповісти на цей допис" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Відповісти" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "Видалити допис" @@ -8545,24 +8620,34 @@ msgstr "Видалити допис" msgid "Notice repeated." msgstr "Допис повторили" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "Оновити свій статус..." +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "«Розштовхати» користувача" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "«Розштовхати»" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "Спробувати «розштовхати» цього користувача" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "Помилка при додаванні нового профілю." +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "Помилка при додаванні аватари." +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "Помилка при додаванні віддаленого профілю." @@ -8570,7 +8655,9 @@ msgstr "Помилка при додаванні віддаленого проф msgid "Duplicate notice." msgstr "Дублікат допису." -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "Не вдалося додати нову підписку." #. TRANS: Menu item in personal group navigation menu. @@ -8585,13 +8672,11 @@ msgid "Your profile" msgstr "Профіль спільноти" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Відповіді" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Обрані" @@ -8608,6 +8693,10 @@ msgctxt "MENU" msgid "Messages" msgstr "Повідомлення" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Ваші вхідні повідомлення" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8646,7 +8735,6 @@ msgid "Site configuration" msgstr "Конфігурація сайту" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Вийти" @@ -8659,7 +8747,6 @@ msgid "Login to the site" msgstr "Увійти на сайт" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Пошук" @@ -8745,18 +8832,20 @@ msgctxt "MENU" msgid "Popular" msgstr "Популярне" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "Немає аргументів return-to." +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "Повторити цей допис?" -msgid "Yes" -msgstr "Так" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "Повторити цей допис" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "Відкликати роль «%s» для цього користувача" @@ -8765,9 +8854,13 @@ msgstr "Відкликати роль «%s» для цього користув msgid "Page not found." msgstr "Сторінку не знайдено." +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "Пісочниця" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "Ізолювати, відіслати користувача гратися у пісочниці" @@ -8810,10 +8903,9 @@ msgid "Find groups on this site" msgstr "Пошук спільнот на цьому сайті" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" -msgstr "Допомога" +msgstr "Довідка" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. #, fuzzy @@ -8864,9 +8956,11 @@ msgctxt "MENU" msgid "Badge" msgstr "Бедж" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Розділ без заголовку" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "Ще..." @@ -8925,7 +9019,6 @@ msgid "URL shorteners" msgstr "Скорочення URL" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "ІМ" @@ -8935,7 +9028,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Оновлення за допомогою служби миттєвих повідомлень (ІМ)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "СМС" @@ -8945,7 +9037,6 @@ msgid "Updates by SMS" msgstr "Оновлення через СМС" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "З’єднання" @@ -8954,9 +9045,13 @@ msgstr "З’єднання" msgid "Authorized connected applications" msgstr "Авторизовані під’єднані додатки" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "Нічичирк!" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "Змусити користувача замовкнути, відправити у забуття" @@ -9013,18 +9108,21 @@ msgstr "Запросити" msgid "Invite friends and colleagues to join you on %s." msgstr "Запросіть друзів та колег приєднатись до вас на %s" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "Підписатись до цього користувача" -msgid "Subscribe" -msgstr "Підписатись" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "Хмарка теґів (позначки самих користувачів)" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "Хмарка теґів (якими ви позначили користувачів)" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "Пусто" @@ -9032,18 +9130,26 @@ msgstr "Пусто" msgid "Invalid theme name." msgstr "Невірне назва теми." +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "Цей сервер не може опрацювати завантаження теми без підтримки ZIP." +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "Файл теми відсутній, або стався збій при завантаженні." +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "Помилка при збереженні теми." -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "Невірна тема: хибна структура каталогів." +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -9058,9 +9164,12 @@ msgstr[2] "" "Тема, що її було завантажено, надто велика; без компресії її розмір має " "становити менше ніж %d байтів." -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "В архіві з темою є помилка: відсутній файл css/display.css" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." @@ -9068,15 +9177,19 @@ msgstr "" "Тема містить неприпустиме ім’я файлу або теки. Використовуйте літери " "стандарту ASCII, цифри, знаки підкреслення та мінусу." +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" "У темі містяться файли, що мають небезпечні розширення; це може виявитися " "небезпечним." -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Тема містить файл типу «.%s», який є неприпустимим." +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "Помилка при відкритті архіву з темою." @@ -9115,8 +9228,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "Ви вже обрали цей допис." -#, php-format -msgctxt "FAVELIST" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. +#, fuzzy, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Один користувач додав це до списку обраних." @@ -9128,8 +9242,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "Ви вже повторили цей допис." -#, php-format -msgctxt "REPEATLIST" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, fuzzy, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Один користувач повторив цей допис." @@ -9279,14 +9394,8 @@ msgstr "Неправильний XML, корінь XRD відсутній." msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." -#~ msgid "Restore default designs" -#~ msgstr "Оновити налаштування за замовчуванням" +#~ msgid "Yes" +#~ msgstr "Так" -#~ msgid "Reset back to default" -#~ msgstr "Повернутись до початкових налаштувань" - -#~ msgid "Save design" -#~ msgstr "Зберегти дизайн" - -#~ msgid "Not an atom feed." -#~ msgstr "Не є стрічкою у форматі Atom." +#~ msgid "Subscribe" +#~ msgstr "Підписатись" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 4d55223919..30f565ccba 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:52+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-03-31 21:35:53+0000\n" +"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -140,6 +140,7 @@ msgstr "没有这个页面。" #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "没有这个用户。" @@ -874,6 +875,7 @@ msgstr "客户端必须提供一个包含内容的“状态”参数。" #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1456,6 +1458,7 @@ msgstr "不要屏蔽这个用户" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "是" @@ -2389,6 +2392,7 @@ msgid "Remote service uses unknown version of OMB protocol." msgstr "远程服务使用了未知版本的 OMB 协议。" #. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." msgstr "更新远程的个人信息时出错。" @@ -3940,6 +3944,8 @@ msgstr "当发布消息时分享我的地理位置" #. TRANS: Field label in form for profile settings. #. TRANS: Field label for inputting tags on "tag other users" page. +#. TRANS: Description for link to "tag other users" in widget to show a list of profiles. +#. TRANS: Text widget to show a list of profiles with their tags. msgid "Tags" msgstr "标签" @@ -4475,6 +4481,7 @@ msgstr "另一种兼容的微博客服务配置文件的 URL。" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4861,6 +4868,8 @@ msgstr "小组成员" #. TRANS: Text for user subscription statistics if the user has no subscriptions. #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +#. TRANS: Text if there are no tags in widget to show a list of profiles by tag. msgid "(None)" msgstr "(无)" @@ -5805,6 +5814,7 @@ msgid "Accept" msgstr "接受" #. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. msgid "Subscribe to this user." msgstr "订阅此用户。" @@ -6257,6 +6267,7 @@ msgid "Unable to save tag." msgstr "无法保存标签。" #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "你被禁止添加关注。" @@ -6641,7 +6652,6 @@ msgid "Access configuration" msgstr "访问配置" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "访问" @@ -6661,7 +6671,6 @@ msgid "Sessions configuration" msgstr "会话配置" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sessions" @@ -6935,6 +6944,7 @@ msgid "AJAX error" msgstr "AJAX 错误" #. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "执行完毕" @@ -7384,6 +7394,7 @@ msgid "Public" msgstr "公共" #. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. msgid "Delete" msgstr "删除" @@ -7410,7 +7421,6 @@ msgid "Upload file" msgstr "上传文件" #. TRANS: Instructions for form on profile design page. -#, fuzzy msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "你可以上传你的个人页面背景。文件最大 2MB。" @@ -7743,8 +7753,8 @@ msgstr[0] "%dB" #. TRANS: %3$s is the display name of an IM plugin. #, php-format msgid "" -"User \"%1$s\" on %2$s has said that your %2$s screenname belongs to them. If " -"that is true, you can confirm by clicking on this URL: %3$s . (If you cannot " +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " "click it, copy-and-paste it into the address bar of your browser). If that " "user is not you, or if you did not request this confirmation, just ignore " "this message." @@ -8136,9 +8146,11 @@ msgid "" "their group membership at %4$s" msgstr "" +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "只有该用户才能查看自己的私信。" +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." @@ -8146,33 +8158,48 @@ msgstr "" "你没有任何私信。你可以试着发送私信给其他用户鼓励他们用私信和你交流。其他用户" "发给你你私信只有你看得到。" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgctxt "MENU" msgid "Inbox" msgstr "收件箱" -#. TRANS: Menu item title in personal group navigation menu. -msgid "Your incoming messages" +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +#, fuzzy +msgid "Your incoming messages." msgstr "你收到的私信" +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgctxt "MENU" msgid "Outbox" msgstr "发件箱" -msgid "Your sent messages" +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +#, fuzzy +msgid "Your sent messages." msgstr "你发送的私信" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." msgstr "无法解析消息。" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." msgstr "不是已注册用户。" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." msgstr "抱歉,这个不是你的收信电子邮件地址。" +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "抱歉,现在不允许电子邮件发布。" -#, php-format -msgid "Unsupported message type: %s" +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, fuzzy, php-format +msgid "Unsupported message type: %s." msgstr "不支持的信息格式:%s" #. TRANS: Form legend for form to make a user a group admin. @@ -8222,10 +8249,13 @@ msgstr "此服务器不支持 “%1$s” 的文件格式,试下使用其他的 msgid "\"%s\" is not a supported file type on this server." msgstr "这个服务器不支持 %s 的文件格式。" +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "发送一条私信" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "选择收件人:" @@ -8233,31 +8263,67 @@ msgstr "选择收件人:" msgid "No mutual subscribers." msgstr "没有共同的关注者。" +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "到" +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" msgstr "发布" +#. TRANS: Header in message list. msgid "Messages" msgstr "消息" +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. msgid "from" msgstr "通过" -msgid "Can't get author for activity." +#. TRANS: A possible notice source (web interface). +#, fuzzy +msgctxt "SOURCE" +msgid "web" +msgstr "网页" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" msgstr "" +#. TRANS: A possible notice source (e-mail). +#, fuzzy +msgctxt "SOURCE" +msgid "mail" +msgstr "电子邮件" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception. #, fuzzy msgid "Bookmark not posted to this group." msgstr "你不能删除这个小组。" +#. TRANS: Client exception. #, fuzzy msgid "Object not posted to this user." msgstr "请不要删除该用户。" -msgid "Don't know how to handle this kind of target." +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. @@ -8302,44 +8368,52 @@ msgid "" "try again later" msgstr "抱歉,获取你的地理位置时间过长,请稍候重试" -#. TRANS: Used in coordinates as abbreviation of north +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" -#. TRANS: Used in coordinates as abbreviation of south +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" msgstr "S" -#. TRANS: Used in coordinates as abbreviation of east +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" msgstr "E" -#. TRANS: Used in coordinates as abbreviation of west +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" msgstr "W" +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +#. TRANS: Followed by geo location. msgid "at" msgstr "位于" -msgid "web" -msgstr "网页" - +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" msgstr "查看对话" +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" msgstr "转发来自" +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "回复" +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "回复" +#. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" msgstr "删除" @@ -8348,24 +8422,34 @@ msgstr "删除" msgid "Notice repeated." msgstr "消息已转发" +#. TRANS: Field label for notice text. msgid "Update your status..." msgstr "" +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" msgstr "呼叫用户" +#. TRANS: Button text to nudge/ping another user. +#, fuzzy +msgctxt "BUTTON" msgid "Nudge" msgstr "呼叫" -msgid "Send a nudge to this user" +#. TRANS: Button title to nudge/ping another user. +#, fuzzy +msgid "Send a nudge to this user." msgstr "呼叫这个用户" +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "添加新个人信息出错。" +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "添加头像出错。" +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "添加远程个人信息时出错。" @@ -8373,7 +8457,9 @@ msgstr "添加远程个人信息时出错。" msgid "Duplicate notice." msgstr "复制消息。" -msgid "Couldn't insert new subscription." +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +#, fuzzy +msgid "Could not insert new subscription." msgstr "无法添加新的关注。" #. TRANS: Menu item in personal group navigation menu. @@ -8388,13 +8474,11 @@ msgid "Your profile" msgstr "小组资料" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "答复" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "收藏夹" @@ -8411,6 +8495,10 @@ msgctxt "MENU" msgid "Messages" msgstr "消息" +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "你收到的私信" + #. TRANS: Title for personal tag cloud section. %s is a user nickname. #, php-format msgid "Tags in %s's notices" @@ -8451,7 +8539,6 @@ msgid "Site configuration" msgstr "用户配置" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Logout" msgstr "登出" @@ -8464,7 +8551,6 @@ msgid "Login to the site" msgstr "登录这个网站" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "搜索" @@ -8551,18 +8637,20 @@ msgctxt "MENU" msgid "Popular" msgstr "热门收藏" +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." msgstr "没有 return-to 冲突。" +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" msgstr "转发这个消息?" -msgid "Yes" -msgstr "是" - -msgid "Repeat this notice" +#. TRANS: Button title to repeat a notice on notice repeat form. +#, fuzzy +msgid "Repeat this notice." msgstr "转发" +#. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format msgid "Revoke the \"%s\" role from this user" msgstr "取消这个用户的\"%s\"权限" @@ -8571,9 +8659,13 @@ msgstr "取消这个用户的\"%s\"权限" msgid "Page not found." msgstr "没有找到页面。" +#. TRANS: Title of form to sandbox a user. +#, fuzzy +msgctxt "TITLE" msgid "Sandbox" msgstr "沙盒" +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" msgstr "将这个用户放入沙盒。" @@ -8616,7 +8708,6 @@ msgid "Find groups on this site" msgstr "搜索本站小组" #. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy msgctxt "MENU" msgid "Help" msgstr "帮助" @@ -8670,9 +8761,11 @@ msgctxt "MENU" msgid "Badge" msgstr "挂件" +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "无标题章节" +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "更多..." @@ -8731,7 +8824,6 @@ msgid "URL shorteners" msgstr "" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "即时通讯IM" @@ -8741,7 +8833,6 @@ msgid "Updates by instant messenger (IM)" msgstr "使用即时通讯工具(IM)更新" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -8751,7 +8842,6 @@ msgid "Updates by SMS" msgstr "使用 SMS 更新" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "关联" @@ -8760,9 +8850,13 @@ msgstr "关联" msgid "Authorized connected applications" msgstr "被授权已连接的应用" +#. TRANS: Title of form to silence a user. +#, fuzzy +msgctxt "TITLE" msgid "Silence" msgstr "禁言" +#. TRANS: Description of form to silence a user. msgid "Silence this user" msgstr "将此用户禁言" @@ -8819,18 +8913,21 @@ msgstr "邀请" msgid "Invite friends and colleagues to join you on %s." msgstr "邀请朋友和同事来%s一起和你交流" +#. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" msgstr "关注这个用户" -msgid "Subscribe" -msgstr "关注" - +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "自己添加标签的用户标签云" +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "被添加标签的用户标签云" +#. TRANS: Content displayed in a tag cloud section if there are no tags. +#, fuzzy +msgctxt "NOTAGS" msgid "None" msgstr "无" @@ -8838,40 +8935,55 @@ msgstr "无" msgid "Invalid theme name." msgstr "无效的主题名。" +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "服务器不支持 ZIP,无法处理上传的主题。" +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "主题文件丢失或上传失败。" +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." msgstr "保存主题失败" -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +#, fuzzy +msgid "Invalid theme: Bad directory structure." msgstr "无效的主题:目录结构损坏。" +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "上传的主题过大,解压后必须小于%d字节。" -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +#, fuzzy +msgid "Invalid theme archive: Missing file css/display.css" msgstr "无效的主题存档:css/display.css 文件丢失" +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" "主题包含无效的文件或文件夹的名称。请只使用 ASCII 字母,数字,下划线和减号。" +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "主题包含不安全的文件扩展名,可能有危险。" -#, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, fuzzy, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "主题包含不允许的”.%s“格式文件。" +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." msgstr "打开主题文件时出错。" @@ -8910,8 +9022,9 @@ msgctxt "FAVELIST" msgid "You have favored this notice." msgstr "收藏" +#. TRANS: List message for favoured notices. +#. TRANS: %d is the number of users that have favoured a notice. #, fuzzy, php-format -msgctxt "FAVELIST" msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "取消收藏这个消息" @@ -8922,8 +9035,9 @@ msgctxt "REPEATLIST" msgid "You have repeated this notice." msgstr "你已转发过了那个消息。" +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. #, fuzzy, php-format -msgctxt "REPEATLIST" msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "已转发了该消息。" @@ -9065,14 +9179,8 @@ msgstr "不合法的XML, 缺少XRD根" msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" -#~ msgid "Restore default designs" -#~ msgstr "恢复默认外观" +#~ msgid "Yes" +#~ msgstr "是" -#~ msgid "Reset back to default" -#~ msgstr "重置到默认" - -#~ msgid "Save design" -#~ msgstr "保存外观" - -#~ msgid "Not an atom feed." -#~ msgstr "不是一个Atom源" +#~ msgid "Subscribe" +#~ msgstr "关注" diff --git a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po new file mode 100644 index 0000000000..ddb4ec62ac --- /dev/null +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - AccountManager to Asturian (Asturianu) +# Exported from translatewiki.net +# +# Author: Xuacu +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AccountManager\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:19:54+0000\n" +"Language-Team: Asturian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-26 16:24:17+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ast\n" +"X-Message-Group: #out-statusnet-plugin-accountmanager\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "" +"The Account Manager plugin implements the Account Manager specification." +msgstr "" +"El complementu Alministrador de Cuenta encadarma la especificación " +"Alministrador de Cuenta." diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index f122e4f568..8a2a60555f 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -58,7 +58,7 @@ msgstr "Clave API" msgctxt "BUTTON" msgid "Save" -msgstr "" +msgstr "Salveguardar" msgid "Save bit.ly settings" msgstr "Salveguardar configurationes de bit.ly" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 413265dbba..8d5c2fd76a 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:36:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -58,7 +58,7 @@ msgstr "API-клуч" msgctxt "BUTTON" msgid "Save" -msgstr "" +msgstr "Зачувај" msgid "Save bit.ly settings" msgstr "Зачувај нагодувања на bit.ly" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 0fd91a58d0..ccf59219c3 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" @@ -23,7 +23,7 @@ msgstr "" #, php-format msgid "Spam checker results: %s" -msgstr "" +msgstr "Resultatos del controlo anti-spam: %s" msgid "Plugin to check submitted notices with blogspam.net." msgstr "Plug-in pro verificar notas submittite contra blogspam.net." diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index 4ce8e0cfa4..21004b1e4f 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:36:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:34+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" @@ -23,7 +23,7 @@ msgstr "" #, php-format msgid "Spam checker results: %s" -msgstr "" +msgstr "Резултати од проверката на спам: %s" msgid "Plugin to check submitted notices with blogspam.net." msgstr "Приклучок за проверка на поднесените забелешки со blogspam.net." diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index 1f7e2dfa66..be2466170e 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,64 +9,65 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Bad import file." -msgstr "" +msgstr "Mal file de importation." msgid "No tag in a
." -msgstr "" +msgstr "Etiquetta mancante in un
." msgid "Skipping private bookmark." -msgstr "" +msgstr "Salta un marcapaginas private." #. TRANS: Client exception thrown when referring to a non-existing bookmark. msgid "No such bookmark." -msgstr "" +msgstr "Iste marcapaginas non existe." #. TRANS: Title for bookmark. #. TRANS: %1$s is a user nickname, %2$s is a bookmark title. #, php-format msgid "%1$s's bookmark for \"%2$s\"" -msgstr "" +msgstr "Marcapaginas de %1$s pro \"%2$s\"" msgid "Simple extension for supporting bookmarks." msgstr "Extension simple pro supportar marcapaginas." msgid "Import del.icio.us bookmarks" -msgstr "" +msgstr "Importar marcapaginas de del.icio.us" msgid "Expected exactly 1 link rel=related in a Bookmark." msgstr "" +"Es expectate exactemente 1 ligamine \"rel=related\" in un marcapaginas." msgid "Bookmark notice with the wrong number of attachments." -msgstr "" +msgstr "Le nota de marcapaginas ha un numero erronee de annexos." msgid "Bookmark" msgstr "Marcapaginas" -#, fuzzy, php-format +#, php-format msgid "Bookmark on %s" -msgstr "Marcapaginas" +msgstr "Marcapaginas in %s" msgid "Bookmark already exists." -msgstr "" +msgstr "Le marcapaginas ja existe." #. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, #. TRANS: %4$s is space separated list of hash tags. #, php-format msgid "\"%1$s\" %2$s %3$s %4$s" -msgstr "" +msgstr "\"%1$s\" %2$s %3$s %4$s" #, php-format msgid "" @@ -74,126 +75,137 @@ msgid "" "%3$s %4$s" msgstr "" +"%2$s " +"%3$s %4$s" msgid "Unknown URL" -msgstr "" +msgstr "URL incognite" #, php-format msgid "Notices linking to %s" -msgstr "" +msgstr "Notas ligante a %s" msgid "Only logged-in users can import del.icio.us backups." msgstr "" +"Es necessari aperir session pro poter importar le copias de reserva de del." +"icio.us." msgid "You may not restore your account." -msgstr "" +msgstr "Tu non pote restaurar tu conto." msgid "No uploaded file." -msgstr "" +msgstr "Nulle file incargate." #. TRANS: Client exception thrown when an uploaded file is too large. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" +msgstr "Le file incargate excede le directiva upload_max_filesize in php.ini." #. TRANS: Client exception. msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Le file incargate excede le directiva MAX_FILE_SIZE specificate in le " +"formulario HTML." #. TRANS: Client exception. msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "Le file incargate ha solmente essite incargate partialmente." #. TRANS: Client exception thrown when a temporary folder is not present msgid "Missing a temporary folder." -msgstr "" +msgstr "Manca un dossier temporari." #. TRANS: Client exception thrown when writing to disk is not possible msgid "Failed to write file to disk." -msgstr "" +msgstr "Falleva de scriber le file in disco." #. TRANS: Client exception thrown when a file upload has been stopped msgid "File upload stopped by extension." -msgstr "" +msgstr "Incargamento de file stoppate per un extension." #. TRANS: Client exception thrown when a file upload operation has failed msgid "System error uploading file." -msgstr "" +msgstr "Error de systema durante le incargamento del file." #, php-format msgid "Getting backup from file '%s'." -msgstr "" +msgstr "Obtene copia de reserva ex file '%s'." msgid "" "Bookmarks have been imported. Your bookmarks should now appear in search and " "your profile page." msgstr "" +"Le marcapaginas ha essite importate. Tu marcapaginas debe ora apparer in " +"recercas e in tu pagina de profilo." msgid "Bookmarks are being imported. Please wait a few minutes for results." msgstr "" +"Le marcapaginas es actualmente importate. Per favor attende alcun minutas " +"pro le resultatos." msgid "You can upload a backed-up delicious.com bookmarks file." msgstr "" +"Tu pote incargar un copia de reserva de un file de marcapaginas de delicious." +"com." msgctxt "BUTTON" msgid "Upload" msgstr "Incargar" msgid "Upload the file" -msgstr "" +msgstr "Incargar le file" msgctxt "LABEL" msgid "Title" -msgstr "" +msgstr "Titulo" msgid "Title of the bookmark" -msgstr "" +msgstr "Titulo del marcapginas" msgctxt "LABEL" msgid "URL" -msgstr "" +msgstr "URL" -#, fuzzy msgid "URL to bookmark" -msgstr "Marcapaginas" +msgstr "URL pro marcapaginas" msgctxt "LABEL" msgid "Tags" -msgstr "" +msgstr "Etiquettas" msgid "Comma- or space-separated list of tags" -msgstr "" +msgstr "Un lista de etiquettas separate per commas o spatios" msgctxt "LABEL" msgid "Description" -msgstr "" +msgstr "Description" msgid "Description of the URL" -msgstr "" +msgstr "Description del URL" msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" -#, fuzzy msgid "New bookmark" -msgstr "Marcapaginas" +msgstr "Nove marcapaginas" msgid "Must be logged in to post a bookmark." -msgstr "" +msgstr "Es necessari aperir session pro inserer un marcapaginas." msgid "Bookmark must have a title." -msgstr "" +msgstr "Le marcapaginas debe haber un titulo." msgid "Bookmark must have an URL." -msgstr "" +msgstr "Le marcapaginas debe haber un URL." #. TRANS: Page title after sending a notice. msgid "Notice posted" -msgstr "" +msgstr "Nota publicate" #. TRANS: %s is the filename that contains a backup for a user. #, php-format msgid "Getting backup from file \"%s\"." -msgstr "" +msgstr "Obtene copia de reserva ex file \"%s\"." diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index 3fe1db4a91..d9b77be873 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,64 +9,64 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:23:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:35+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" msgid "Bad import file." -msgstr "" +msgstr "Неправилна податотека за увоз." msgid "No tag in a
." -msgstr "" +msgstr "Нема ознака во
." msgid "Skipping private bookmark." -msgstr "" +msgstr "Прескокнувам приватнен одбележувач." #. TRANS: Client exception thrown when referring to a non-existing bookmark. msgid "No such bookmark." -msgstr "" +msgstr "Нема таков одбележувач." #. TRANS: Title for bookmark. #. TRANS: %1$s is a user nickname, %2$s is a bookmark title. #, php-format msgid "%1$s's bookmark for \"%2$s\"" -msgstr "" +msgstr "Одбележувачот на %1$s за „%2$s“" msgid "Simple extension for supporting bookmarks." msgstr "Прост додаток за поддршка на обележувачи." msgid "Import del.icio.us bookmarks" -msgstr "" +msgstr "Увези одбележувачи del.icio.us" msgid "Expected exactly 1 link rel=related in a Bookmark." -msgstr "" +msgstr "Очекував точно 1 врска rel=related во одбележувач." msgid "Bookmark notice with the wrong number of attachments." -msgstr "" +msgstr "Одбележи забелешка со погрешен број на прилози." msgid "Bookmark" msgstr "Одбележи" -#, fuzzy, php-format +#, php-format msgid "Bookmark on %s" -msgstr "Одбележи" +msgstr "Одбележи на %s" msgid "Bookmark already exists." -msgstr "" +msgstr "Одбележувачот веќе постои." #. TRANS: %1$s is a title, %2$s is a short URL, %3$s is a description, #. TRANS: %4$s is space separated list of hash tags. #, php-format msgid "\"%1$s\" %2$s %3$s %4$s" -msgstr "" +msgstr "„%1$s“ %2$s %3$s %4$s" #, php-format msgid "" @@ -74,126 +74,135 @@ msgid "" "%3$s %4$s" msgstr "" +"%2$s " +"%3$s %4$s" msgid "Unknown URL" -msgstr "" +msgstr "Непозната URL-адреса" #, php-format msgid "Notices linking to %s" -msgstr "" +msgstr "Забелешки со врски до %s" msgid "Only logged-in users can import del.icio.us backups." -msgstr "" +msgstr "Само најавени корисници можат да увезуваат резерви del.icio.us." msgid "You may not restore your account." -msgstr "" +msgstr "Не можете да ја вратите Вашата сметка." msgid "No uploaded file." -msgstr "" +msgstr "Нема подигната податотека." #. TRANS: Client exception thrown when an uploaded file is too large. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"Подигнатата податотека ја надминува директивата upload_max_filesize во php." +"ini." #. TRANS: Client exception. msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Подигнатата податотека ја надминува директивата the MAX_FILE_SIZE назначена " +"во HTML-образецот." #. TRANS: Client exception. msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "Подигнатата податотека е само делумно подигната." #. TRANS: Client exception thrown when a temporary folder is not present msgid "Missing a temporary folder." -msgstr "" +msgstr "Недостасува привремена папка." #. TRANS: Client exception thrown when writing to disk is not possible msgid "Failed to write file to disk." -msgstr "" +msgstr "Податотеката не може да се запише на дискот." #. TRANS: Client exception thrown when a file upload has been stopped msgid "File upload stopped by extension." -msgstr "" +msgstr "Подигањето на податотеката е запрено од додатокот." #. TRANS: Client exception thrown when a file upload operation has failed msgid "System error uploading file." -msgstr "" +msgstr "Системска грешка при подигањето на податотеката." #, php-format msgid "Getting backup from file '%s'." -msgstr "" +msgstr "Земам резерва на податотеката „%s“." msgid "" "Bookmarks have been imported. Your bookmarks should now appear in search and " "your profile page." msgstr "" +"Одележувачите се увезени. Сега треба да се појават во пребарувањето и во " +"Вашата профилна страница." msgid "Bookmarks are being imported. Please wait a few minutes for results." -msgstr "" +msgstr "Одбележувачите се увезуваат. Почекајте неколку минути." msgid "You can upload a backed-up delicious.com bookmarks file." msgstr "" +"Можете да подигнете резервен приемерок на податотека со одбележувачи backed-" +"up delicious.com" msgctxt "BUTTON" msgid "Upload" msgstr "Подигни" msgid "Upload the file" -msgstr "" +msgstr "Подигни ја податотеката" msgctxt "LABEL" msgid "Title" -msgstr "" +msgstr "Назив" msgid "Title of the bookmark" -msgstr "" +msgstr "Назив на одбележувачот" msgctxt "LABEL" msgid "URL" -msgstr "" +msgstr "URL" -#, fuzzy msgid "URL to bookmark" -msgstr "Одбележи" +msgstr "URL за одбележување" msgctxt "LABEL" msgid "Tags" -msgstr "" +msgstr "Ознаки" msgid "Comma- or space-separated list of tags" -msgstr "" +msgstr "Список на ознаки одделен со запирки или празни места" msgctxt "LABEL" msgid "Description" -msgstr "" +msgstr "Опис" msgid "Description of the URL" -msgstr "" +msgstr "Опис на URL-адресата" msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" -#, fuzzy msgid "New bookmark" -msgstr "Одбележи" +msgstr "Ново бележење" msgid "Must be logged in to post a bookmark." -msgstr "" +msgstr "Мора да сте најавени за да објавите одбележувач." msgid "Bookmark must have a title." -msgstr "" +msgstr "Одбележувачот мора да има наслов." msgid "Bookmark must have an URL." -msgstr "" +msgstr "Одбележувачот мора да има URL-адреса." #. TRANS: Page title after sending a notice. msgid "Notice posted" -msgstr "" +msgstr "Забелешката е објавена" #. TRANS: %s is the filename that contains a backup for a user. #, php-format msgid "Getting backup from file \"%s\"." -msgstr "" +msgstr "Земам резерва на податотеката „%s“." diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index 57b578e5f7..8ff71de11c 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-comet\n" @@ -23,6 +23,5 @@ msgstr "" #. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages #. TRANS: and Comet is a web application model. -#, fuzzy msgid "Plugin to make updates using Comet and Bayeux." -msgstr "Plug-in pro facer actualisationes \"in directo\" usante Comet/Bayeux." +msgstr "Plug-in pro facer actualisationes usante Comet e Bayeux." diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index ac8e409cd2..7704e0366b 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:24:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" @@ -23,6 +23,5 @@ msgstr "" #. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages #. TRANS: and Comet is a web application model. -#, fuzzy msgid "Plugin to make updates using Comet and Bayeux." -msgstr "Приклучок за вршење на поднови „во живо“ со Comet/Bayeux." +msgstr "Приклучок за вршење на поднови „во живо“ со Comet и Bayeux." diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index b40b105705..44aa5bde51 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -41,13 +41,14 @@ msgid "" "Search for people on %%site.name%% by their name, location, or interests. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"Cerca personas in %%site.name%% per nomine, loco o interesses. Separa le " +"terminos per spatios; illos debe haber 3 characteres o plus." -#, fuzzy msgid "Search site" -msgstr "Cercar" +msgstr "Cercar in sito" msgid "Keyword(s)" -msgstr "" +msgstr "Parola(s)-clave" msgctxt "BUTTON" msgid "Search" @@ -58,13 +59,11 @@ msgid "No users starting with %s" msgstr "Il non ha usatores de qui le nomine comencia con \"%s\"" msgid "No results." -msgstr "" +msgstr "Nulle resultato." -#, fuzzy msgid "Directory" -msgstr "Catalogo de usatores" +msgstr "Directorio" -#, fuzzy msgid "User Directory" msgstr "Catalogo de usatores" diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index ce0af5df98..995712ee49 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -41,13 +41,14 @@ msgid "" "Search for people on %%site.name%% by their name, location, or interests. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"Пребарајте луѓе на %%site.name%% по име, местоположба или интереси. Одделете " +"ги поимите со празни места; зборовите мора да имаат барем по 3 букви." -#, fuzzy msgid "Search site" msgstr "Пребарај" msgid "Keyword(s)" -msgstr "" +msgstr "Клучни зборови" msgctxt "BUTTON" msgid "Search" @@ -58,13 +59,11 @@ msgid "No users starting with %s" msgstr "Нема корисници што почнуваат на %s" msgid "No results." -msgstr "" +msgstr "Нема резултати." -#, fuzzy msgid "Directory" -msgstr "Кориснички именик" +msgstr "Именик" -#, fuzzy msgid "User Directory" msgstr "Кориснички именик" diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index 22646fe7e3..4becfcfac8 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index d07a4e5705..6bd8ba2b0e 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index 1636163dce..e2148d22e8 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:36:10+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:04:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po index d920b83d44..d48b3b2cce 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:24+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index c2fea17aae..a89e41049e 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index 103da6bc1c..facb15f269 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index 3a4b483249..548d42be2c 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index 4138574dac..3aca3784fb 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index 6d63b15990..a547072b28 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 137178d66c..702de4f2d5 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index 255476e60a..62195053b5 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index 23a3f2e86b..06cd5a8097 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index 9bc57e9d39..482b3b8d37 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index a3f0860a6b..eab6a133dc 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index d54af6ba56..325ac500ad 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index 1e5684efa8..31b0b571aa 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index 75eb09294c..f12e35eb97 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index 9bb5f3afd8..17eb01c841 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index bd64bbae56..78568693e6 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index b1533433fd..6e62354031 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index f34b34f186..d42e29f3e3 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po index 6e64175249..c2351a3742 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index a66995aa76..edc119565b 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index d00cf38fea..b3eb8e35e2 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index 74ecb1cebb..5e85a3cb92 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index dae86e6ee8..657eb83785 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 9661c6fb83..1db70d0f14 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index b374dbeba6..280304b390 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index f64b54e31c..fbb18355c5 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index 963d076eb2..01bd75bac0 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index b3d05631b1..d37bfee003 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index b2898aaf47..c9ae4bf3f1 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index cd27654527..e0743a8761 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index 6645fd19eb..c5521c4678 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index fb59dc7d90..d653adb6ba 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po index 0c14b2b63e..37ea83a50e 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:27+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index 1e72192e39..96ce55c589 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index 3a4c3b3f62..d7c35e6c8c 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index a88e64f826..97e48f4ccc 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index 2633f97438..72c46b2ada 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index e7a2b4ad8d..656cfdaeb8 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index cd9e47e5b3..197e2615dc 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index eec8e4e7a9..4fecb39248 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index 33a3ae9edd..6839c9530d 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 490548c29a..c16e63cb42 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index a33888faf0..39eb28aaf4 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index a36a5f6d5b..7ea917f2d1 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index 65d8fff6bc..ce7f20ad57 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index 2c334e01a9..e108f24b76 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index c345548884..59ebe9a91e 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index 006dcf3540..63f2ea408d 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index 593203f69d..9a9866fcbe 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index a5036a524f..f9692a4c22 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index cf78573b8c..4dbd21bb17 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index 25aad2b6f6..895fd7e595 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:47+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po index 35865705c6..5d36758f3f 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index 6d8d5be491..a30584f577 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index 83514053b7..3d54d87ec8 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:29+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index 27c94f9d54..cbb781bd62 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index dfd051d52f..f0c76496d0 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index 2d14c0c60e..69b4ecf201 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index 1993fc3855..2483d9bc76 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index cf595694f9..2db8060070 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index bf539229cd..283861c8df 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index 477bb85000..a73cbe83ac 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index 715fda3920..c15bfaa4a9 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index 372b810d4c..b7115a96aa 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index d74b04bdec..66de734a97 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index a4910f8789..254f3ee73e 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:48+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index 66cf6fab59..2f02d88597 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index c9e06331b9..4a93f3c137 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:30+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index 3102e5abbf..3e54b8fd4f 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index 966c029e08..29429360a1 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index 7b61f6d4fa..d5b743258c 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index 95a0d24452..9ed3d7ebb7 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index 27ce1cb240..95c267b125 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" @@ -23,22 +23,22 @@ msgstr "" #, php-format msgid "Recent updates from %1s for %2s:" -msgstr "" +msgstr "Actualisationes recente de %1s pro %2s:" msgid "in context" -msgstr "" +msgstr "in contexto" #, php-format msgid "

change your email settings for %2s

" msgstr "" +"

modificar tu configuration de e-mail pro %2s

" msgid "Updates from your network" -msgstr "" +msgstr "Actualisationes de tu rete" msgid "Send an email summary of the inbox to users." msgstr "Inviar in e-mail un summario del cassa de entrata al usatores." #. TRANS: Checkbox label in e-mail preferences form. -#, fuzzy msgid "Send me a periodic summary of updates from my network." -msgstr "Inviar in e-mail un summario del cassa de entrata al usatores." +msgstr "Inviar me un summario periodic del actualisationes de mi rete." diff --git a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po index 9e183fa709..c6d715d38d 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" @@ -23,22 +23,22 @@ msgstr "" #, php-format msgid "Recent updates from %1s for %2s:" -msgstr "" +msgstr "Скорешни поднови од %1s за %2s:" msgid "in context" -msgstr "" +msgstr "во контекст" #, php-format msgid "

change your email settings for %2s

" msgstr "" +"

сменете си ги нагодувањата за е-пошта на %2s

" msgid "Updates from your network" -msgstr "" +msgstr "Поднови од Вашата мрежа" msgid "Send an email summary of the inbox to users." msgstr "Испрати им на корисниците краток преглед на примената пошта." #. TRANS: Checkbox label in e-mail preferences form. -#, fuzzy msgid "Send me a periodic summary of updates from my network." -msgstr "Испрати им на корисниците краток преглед на примената пошта." +msgstr "Испраќај ми повремен краток преглед на подновите од мојата мрежа." diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index 31c76e8da0..e9d9b6e3f4 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:49+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 562558255f..8ef6f2fb03 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,26 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Event already exists." -msgstr "" +msgstr "Le evento ja existe." #. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, #. TRANS: %4$s is location, %5$s is a description. #, php-format msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" -msgstr "" +msgstr "\"%1$s\" %2$s - %3$s (%4$s): %5$s" #, php-format msgid "" @@ -37,56 +37,54 @@ msgid "" "$s (%6$s): %7" "$s " msgstr "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". msgid "No such RSVP." -msgstr "" +msgstr "Iste RSVP non existe." #. TRANS: Client exception thrown when referring to a non-existing event. -msgid "No such Event." -msgstr "" +msgid "No such event." +msgstr "Iste evento non existe." #. TRANS: Title for event. #. TRANS: %1$s is a user nickname, %2$s is an event title. #, php-format msgid "%1$s's RSVP for \"%2$s\"" -msgstr "" +msgstr "Le RSVP de %1$s pro \"%2$s\"" msgid "You will attend this event." -msgstr "" +msgstr "Tu participara a iste evento." msgid "You will not attend this event." -msgstr "" +msgstr "Tu non participara a iste evento." msgid "You might attend this event." -msgstr "" +msgstr "Tu participara forsan a iste evento." msgctxt "BUTTON" msgid "Cancel" msgstr "Cancellar" msgid "New RSVP" -msgstr "" - -#. TRANS: Client exception thrown when referring to a non-existing event. -msgid "No such event." -msgstr "" +msgstr "Nove RSVP" msgid "You must be logged in to RSVP for an event." -msgstr "" +msgstr "Es necessari aperir session pro responder a un invitation de evento." #. TRANS: Page title after sending a notice. -#, fuzzy msgid "Event saved" -msgstr "Evento" +msgstr "Evento salveguardate" -#, fuzzy msgid "Cancel RSVP" -msgstr "Cancellar" +msgstr "Cancellar RSVP" msgid "RSVP:" -msgstr "" +msgstr "RSVP:" msgctxt "BUTTON" msgid "Yes" @@ -102,59 +100,59 @@ msgstr "Forsan" msgctxt "LABEL" msgid "Title" -msgstr "" +msgstr "Titulo" -msgid "Title of the event" -msgstr "" +msgid "Title of the event." +msgstr "Le titulo del evento." msgctxt "LABEL" msgid "Start date" -msgstr "" +msgstr "Data de initio" -msgid "Date the event starts" -msgstr "" +msgid "Date the event starts." +msgstr "Le data a que le evento comencia." msgctxt "LABEL" msgid "Start time" -msgstr "" +msgstr "Hora de initio" -msgid "Time the event starts" -msgstr "" +msgid "Time the event starts." +msgstr "Le hora a que le evento comencia." msgctxt "LABEL" msgid "End date" -msgstr "" +msgstr "Data de fin" -msgid "Date the event ends" -msgstr "" +msgid "Date the event ends." +msgstr "Le data a que le evento fini." msgctxt "LABEL" msgid "End time" -msgstr "" +msgstr "Hora de fin" -msgid "Time the event ends" -msgstr "" +msgid "Time the event ends." +msgstr "Le hora a que le evento fini." msgctxt "LABEL" msgid "Location" -msgstr "" +msgstr "Loco" -msgid "Event location" -msgstr "" +msgid "Event location." +msgstr "Le loco del evento." msgctxt "LABEL" msgid "URL" -msgstr "" +msgstr "URL" -msgid "URL for more information" -msgstr "" +msgid "URL for more information." +msgstr "Le URL pro additional information." msgctxt "LABEL" msgid "Description" -msgstr "" +msgstr "Description" -msgid "Description of the event" -msgstr "" +msgid "Description of the event." +msgstr "Description del evento." msgctxt "BUTTON" msgid "Save" @@ -166,84 +164,129 @@ msgstr "Invitationes a eventos e responsas a illos." msgid "Event" msgstr "Evento" +msgid "Wrong type for object." +msgstr "Typo errate pro iste objecto." + +msgid "RSVP for unknown event." +msgstr "RSVP pro evento incognite." + +msgid "Unknown verb for events" +msgstr "Verbo incognite pro eventos" + +msgid "Unknown object type." +msgstr "Typo de objecto incognite." + +msgid "Unknown event notice." +msgstr "Nota de evento incognite." + msgid "Time:" -msgstr "" +msgstr "Hora:" msgid "Location:" -msgstr "" +msgstr "Loco:" msgid "Description:" -msgstr "" +msgstr "Description:" msgid "Attending:" -msgstr "" +msgstr "Presente:" #. TRANS: RSVP counts. #. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "" +msgstr "Si: %1$d No: %2$d Forsan: %3$d" msgid "RSVP already exists." -msgstr "" +msgstr "Le RSVP ja existe." + +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "Verbo incognite: \"%s\"." + +#, php-format +msgid "Unknown code \"%s\"." +msgstr "Codice incognite: \"%s\"." + +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "Le RSVP %s non corresponde a un nota in le base de datos." + +#, php-format +msgid "No profile with ID %s." +msgstr "Non existe un profilo con le ID %s." + +#, php-format +msgid "No event with ID %s." +msgstr "Non existe un evento con le ID %s." #, php-format msgid "" -"%2s is attending %4s." +"%2$s is attending %4$s." msgstr "" +"%2$s essera presente a " +"%4$s." #, php-format msgid "" -"%2s is not attending %4s." +"%2$s is not attending " +"%4$s." msgstr "" +"%2$s non essera " +"presente a %4$s." #, php-format msgid "" -"%2s might attend %4s." +"%2$s might attend %4$s." msgstr "" +"%2$s essera forsan " +"presente a %4$s." + +#, php-format +msgid "Unknown response code %s." +msgstr "Codice de responsa incognite: %s." msgid "an unknown event" -msgstr "" +msgstr "un evento incognite" #, php-format -msgid "%1s is attending %2s." -msgstr "" +msgid "%1$s is attending %2$s." +msgstr "%1$s essera presente a %2$s." #, php-format -msgid "%1s is not attending %2s." -msgstr "" +msgid "%1$s is not attending %2$s." +msgstr "%1$s non essera presente a %2$s." #, php-format -msgid "%1s might attend %2s.>" -msgstr "" +msgid "%1$s might attend %2$s." +msgstr "%1$s essera forsan presente a %2$s." msgid "New event" -msgstr "" +msgstr "Nove evento" msgid "Must be logged in to post a event." -msgstr "" +msgstr "Es necessari aperir session pro placiar un evento." msgid "Title required." -msgstr "" +msgstr "Titulo requirite." msgid "Start date required." -msgstr "" +msgstr "Data de initio requirite." msgid "End date required." -msgstr "" +msgstr "Data de fin requirite." #, php-format -msgid "Could not parse date \"%s\"" -msgstr "" +msgid "Could not parse date \"%s\"." +msgstr "Non poteva comprender le data \"%s\"." msgid "Event must have a title." -msgstr "" +msgstr "Le evento debe haber un titulo." msgid "Event must have a start time." -msgstr "" +msgstr "Le evento debe haber un hora de initio." msgid "Event must have an end time." -msgstr "" +msgstr "Le evento debe haber un hora de fin." diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index 61becf8b61..b65a0353b7 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,26 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" msgid "Event already exists." -msgstr "" +msgstr "Настанот веќе постои." #. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, #. TRANS: %4$s is location, %5$s is a description. #, php-format msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" -msgstr "" +msgstr "„%1$s“ %2$s - %3$s ч. (%4$s): %5$s" #, php-format msgid "" @@ -37,56 +37,54 @@ msgid "" "$s (%6$s): %7" "$s " msgstr "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". msgid "No such RSVP." -msgstr "" +msgstr "Нема таков одѕив." #. TRANS: Client exception thrown when referring to a non-existing event. -msgid "No such Event." -msgstr "" +msgid "No such event." +msgstr "Нема таков настан." #. TRANS: Title for event. #. TRANS: %1$s is a user nickname, %2$s is an event title. #, php-format msgid "%1$s's RSVP for \"%2$s\"" -msgstr "" +msgstr "Одѕив на %1$s за „%2$s“" msgid "You will attend this event." -msgstr "" +msgstr "Ќе присуствувате на настанов." msgid "You will not attend this event." -msgstr "" +msgstr "Нема да присуствувате на настанов." msgid "You might attend this event." -msgstr "" +msgstr "Можеби ќе присуствувате на настанов." msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" msgid "New RSVP" -msgstr "" - -#. TRANS: Client exception thrown when referring to a non-existing event. -msgid "No such event." -msgstr "" +msgstr "Нов одѕив" msgid "You must be logged in to RSVP for an event." -msgstr "" +msgstr "Мора да се најавени за да се одзвете на настан" #. TRANS: Page title after sending a notice. -#, fuzzy msgid "Event saved" -msgstr "Настан" +msgstr "Настанов е зачуван" -#, fuzzy msgid "Cancel RSVP" -msgstr "Откажи" +msgstr "Откажи одѕив" msgid "RSVP:" -msgstr "" +msgstr "Одѕив:" msgctxt "BUTTON" msgid "Yes" @@ -102,59 +100,59 @@ msgstr "Можеби" msgctxt "LABEL" msgid "Title" -msgstr "" +msgstr "Назив" -msgid "Title of the event" -msgstr "" +msgid "Title of the event." +msgstr "Назив на настанот." msgctxt "LABEL" msgid "Start date" -msgstr "" +msgstr "Почетен датум" -msgid "Date the event starts" -msgstr "" +msgid "Date the event starts." +msgstr "Кој датум почнува настанот." msgctxt "LABEL" msgid "Start time" -msgstr "" +msgstr "Време на почеток" -msgid "Time the event starts" -msgstr "" +msgid "Time the event starts." +msgstr "Во колку часот почнува настанот." msgctxt "LABEL" msgid "End date" -msgstr "" +msgstr "Завршен датум" -msgid "Date the event ends" -msgstr "" +msgid "Date the event ends." +msgstr "На кој датум завршува настанот." msgctxt "LABEL" msgid "End time" -msgstr "" +msgstr "Време на завршеток" -msgid "Time the event ends" -msgstr "" +msgid "Time the event ends." +msgstr "Во колку часот завршува настанот." msgctxt "LABEL" msgid "Location" -msgstr "" +msgstr "Место" -msgid "Event location" -msgstr "" +msgid "Event location." +msgstr "Место на случување." msgctxt "LABEL" msgid "URL" -msgstr "" +msgstr "URL" -msgid "URL for more information" -msgstr "" +msgid "URL for more information." +msgstr "URL за повеќе информации" msgctxt "LABEL" msgid "Description" -msgstr "" +msgstr "Опис" -msgid "Description of the event" -msgstr "" +msgid "Description of the event." +msgstr "Опис на настанот." msgctxt "BUTTON" msgid "Save" @@ -166,84 +164,129 @@ msgstr "Покани и одговори за настани" msgid "Event" msgstr "Настан" +msgid "Wrong type for object." +msgstr "Погрешен тип на објект." + +msgid "RSVP for unknown event." +msgstr "Одѕив на непознат настан." + +msgid "Unknown verb for events" +msgstr "Непознат глагол за настани" + +msgid "Unknown object type." +msgstr "Непознат тип на објект." + +msgid "Unknown event notice." +msgstr "Непозната забелешка за настан." + msgid "Time:" -msgstr "" +msgstr "Време:" msgid "Location:" -msgstr "" +msgstr "Место:" msgid "Description:" -msgstr "" +msgstr "Опис:" msgid "Attending:" -msgstr "" +msgstr "Присуство:" #. TRANS: RSVP counts. #. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "" +msgstr "Да: %1$d Не: %2$d Можеби: %3$d" msgid "RSVP already exists." -msgstr "" +msgstr "Одѕивот веќе постои." + +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "Непознат глагол: „%s“" + +#, php-format +msgid "Unknown code \"%s\"." +msgstr "Непознат код „%s“." + +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "Одзивот %s не соодветствува на забелешка во базата." + +#, php-format +msgid "No profile with ID %s." +msgstr "Нема профил со ID %s." + +#, php-format +msgid "No event with ID %s." +msgstr "Нема настан со ID %s." #, php-format msgid "" -"%2s is attending %4s." +"%2$s is attending %4$s." msgstr "" +"%2$s ќе присуствува на " +"%4$s." #, php-format msgid "" -"%2s is not attending %4s." +"%2$s is not attending " +"%4$s." msgstr "" +"%2$s нема да " +"присуствува на %4$s." #, php-format msgid "" -"%2s might attend %4s." +"%2$s might attend %4$s." msgstr "" +"%2$s можеби ќе " +"присуствува на %4$s." + +#, php-format +msgid "Unknown response code %s." +msgstr "Непознат одѕивен код %s." msgid "an unknown event" -msgstr "" +msgstr "непознат настан" #, php-format -msgid "%1s is attending %2s." -msgstr "" +msgid "%1$s is attending %2$s." +msgstr "%1$s ќе присуствува на %2$s." #, php-format -msgid "%1s is not attending %2s." -msgstr "" +msgid "%1$s is not attending %2$s." +msgstr "%1$s нема да присуствува на %2$s." #, php-format -msgid "%1s might attend %2s.>" -msgstr "" +msgid "%1$s might attend %2$s." +msgstr "%1$s можеби ќе присуствува на %2$s." msgid "New event" -msgstr "" +msgstr "Нов настан" msgid "Must be logged in to post a event." -msgstr "" +msgstr "Мора да сте најавени за да објавите настан." msgid "Title required." -msgstr "" +msgstr "Се бара назив." msgid "Start date required." -msgstr "" +msgstr "Се бара почетен датум." msgid "End date required." -msgstr "" +msgstr "Се бара завршен датум." #, php-format -msgid "Could not parse date \"%s\"" -msgstr "" +msgid "Could not parse date \"%s\"." +msgstr "Не можев да го парсирам датумот „%s“." msgid "Event must have a title." -msgstr "" +msgstr "Настанот мора да има назив." msgid "Event must have a start time." -msgstr "" +msgstr "Настанот мора да има почетно време." msgid "Event must have an end time." -msgstr "" +msgstr "Настанот мора да има завршно време." diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index ce6687efbf..a2590097e0 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:37+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -291,6 +291,3 @@ msgstr "" msgid "Event must have an end time." msgstr "" - -#~ msgid "No such Event." -#~ msgstr "Acara ini tidak wujud." diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index a8766392bd..da345995d2 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Event to Dutch (Nederlands) # Exported from translatewiki.net # +# Author: McDutchie # Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:53+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:08+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -45,7 +46,7 @@ msgstr "" #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". msgid "No such RSVP." -msgstr "Geen dergelijk verzoek tot antwoorden." +msgstr "Het verzoek tot antwoorden kon niet worden gevonden." #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." @@ -103,65 +104,57 @@ msgctxt "LABEL" msgid "Title" msgstr "Naam" -#, fuzzy msgid "Title of the event." -msgstr "Naam van het evenement" +msgstr "Naam van het evenement." msgctxt "LABEL" msgid "Start date" msgstr "Begindatum" -#, fuzzy msgid "Date the event starts." -msgstr "Datum waarop het evenement begint" +msgstr "Datum waarop het evenement begint." msgctxt "LABEL" msgid "Start time" msgstr "Starttijd" -#, fuzzy msgid "Time the event starts." -msgstr "Tijd waarop het evenement start" +msgstr "Tijd waarop het evenement begint." msgctxt "LABEL" msgid "End date" msgstr "Einddatum" -#, fuzzy msgid "Date the event ends." -msgstr "Datum waarop het evenement eindigt" +msgstr "Datum waarop het evenement eindigt." msgctxt "LABEL" msgid "End time" msgstr "Eindtijd" -#, fuzzy msgid "Time the event ends." -msgstr "Tijd waarop het evenement eindigt" +msgstr "Tijd waarop het evenement eindigt." msgctxt "LABEL" msgid "Location" msgstr "Locatie" -#, fuzzy msgid "Event location." -msgstr "Locatie waar het evenement plaatsvindt" +msgstr "Locatie waar het evenement plaatsvindt." msgctxt "LABEL" msgid "URL" msgstr "URL" -#, fuzzy msgid "URL for more information." -msgstr "URL met meer gegevens" +msgstr "URL met meer gegevens." msgctxt "LABEL" msgid "Description" msgstr "Beschrijving" -#, fuzzy msgid "Description of the event." -msgstr "Beschrijving van het evenement" +msgstr "Beschrijving van het evenement." msgctxt "BUTTON" msgid "Save" @@ -174,22 +167,19 @@ msgid "Event" msgstr "Evenement" msgid "Wrong type for object." -msgstr "" +msgstr "Verkeerde type voor object." -#, fuzzy msgid "RSVP for unknown event." -msgstr "een onbekend evenement" +msgstr "Antwoord gevraagd voor onbekend evenement." -#, fuzzy msgid "Unknown verb for events" -msgstr "een onbekend evenement" +msgstr "Onbekend werkwoord voor evenementen" msgid "Unknown object type." -msgstr "" +msgstr "Onbekend objecttype." -#, fuzzy msgid "Unknown event notice." -msgstr "een onbekend evenement" +msgstr "Onbekend mededeling over evenement." msgid "Time:" msgstr "Tijd:" @@ -214,66 +204,68 @@ msgstr "Het verzoek tot antwoorden bestaat al." #, php-format msgid "Unknown verb \"%s\"" -msgstr "" +msgstr "Onbekend werkwoord: \"%s\"." #, php-format msgid "Unknown code \"%s\"." -msgstr "" +msgstr "Onbekende code \"%s\"." #, php-format msgid "RSVP %s does not correspond to a notice in the database." msgstr "" +"Verzoek tot antwoorden %s komt niet overeen met een mededeling in de " +"database." #, php-format msgid "No profile with ID %s." -msgstr "" +msgstr "Er is geen profiel met ID %s." #, php-format msgid "No event with ID %s." -msgstr "" +msgstr "Geen evenement met ID %s." -#, fuzzy, php-format +#, php-format msgid "" "%2$s is attending %4$s." msgstr "" -"%2s is aanwezig bij %4s." +"%2$s is aanwezig bij " +"%4$s." -#, fuzzy, php-format +#, php-format msgid "" "%2$s is not attending " "%4$s." msgstr "" -"%2s is niet aanwezig " -"bij %4s." +"%2$s is niet aanwezig " +"bij %4$s." -#, fuzzy, php-format +#, php-format msgid "" "%2$s might attend %4$s." msgstr "" -"%2s is misschien " -"aanwezig bij %4s." +"%2$s is misschien " +"aanwezig bij %4$s." #, php-format msgid "Unknown response code %s." -msgstr "" +msgstr "Onbekende antwoordcode %s ." msgid "an unknown event" msgstr "een onbekend evenement" -#, fuzzy, php-format +#, php-format msgid "%1$s is attending %2$s." -msgstr "%1s is aanwezig bij %2s." +msgstr "%1$s is aanwezig bij %2$s." -#, fuzzy, php-format +#, php-format msgid "%1$s is not attending %2$s." -msgstr "%1s is niet aanwezig bij %2s." +msgstr "%1$s is niet aanwezig bij %2$s." -#, fuzzy, php-format +#, php-format msgid "%1$s might attend %2$s." -msgstr "%1s is misschien aanwezig bij %2s.>" +msgstr "%1$s is misschien aanwezig bij %2$s." msgid "New event" msgstr "Nieuw evenement" @@ -290,7 +282,7 @@ msgstr "De begindatum is vereist." msgid "End date required." msgstr "De einddatum is vereist." -#, fuzzy, php-format +#, php-format msgid "Could not parse date \"%s\"." msgstr "Het was niet mogelijk de datum \"%s\" te verwerken." @@ -302,6 +294,3 @@ msgstr "Een evenement moet een begintijd hebben." msgid "Event must have an end time." msgstr "Een evenement moet een eindtijd hebben." - -#~ msgid "No such Event." -#~ msgstr "Dat evenement bestaat niet." diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index d89f96c029..0fde7cd0fe 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index 3b721112d0..929fda261b 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -116,7 +116,7 @@ msgid "Save" msgstr "Salveguardar" msgid "Save details" -msgstr "" +msgstr "Salveguardar detalios" msgid "Phone" msgstr "Telephono" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index 796bb73ab9..c1a7fbc7c6 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -116,13 +116,13 @@ msgid "Save" msgstr "Зачувај" msgid "Save details" -msgstr "" +msgstr "Зачувај податоци" msgid "Phone" msgstr "Телефон" msgid "IM" -msgstr "IM" +msgstr "НП" msgid "Website" msgstr "Мреж. место" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index 82a8424148..d5b66e10f2 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -118,7 +118,7 @@ msgid "Save" msgstr "Opslaan" msgid "Save details" -msgstr "" +msgstr "Gegevens opslaan" msgid "Phone" msgstr "Telefoonnummer" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index f830dd246f..a6de85c963 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index 283ba57750..0af370c05c 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index 72e2ff5a9d..81ff420ae2 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:56+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index a81f78fe58..4361b0ac79 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:44+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -245,6 +245,3 @@ msgstr "" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "" - -#~ msgid "Save" -#~ msgstr "احفظ" diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 6f1750c5b1..33d7683c1c 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:44+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -244,6 +244,3 @@ msgstr "" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "" - -#~ msgid "Save" -#~ msgstr "Enrollañ" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 6b810116ec..96c2ec4367 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:44+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -260,6 +260,3 @@ msgstr "S'ha eliminat la connexió amb el Facebook" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Contacteu amb l'administrador de %s per recuperar el vostre compte" - -#~ msgid "Save" -#~ msgstr "Desa" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index ebea702470..cd6e0bdcd6 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:44+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -262,6 +262,3 @@ msgstr "Ihre Facebook-Verbindung wurde entfernt" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Kontaktiere den %s-Administrator um dein Konto zurück zu bekommen" - -#~ msgid "Save" -#~ msgstr "Speichern" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index f4fd82dabe..bc6550c5ac 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,13 +38,11 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Configurationes de integration de Facebook" -#, fuzzy msgid "Invalid Facebook ID. Maximum length is 255 characters." -msgstr "ID de Facebook invalide. Longitude maximal es 255 characteres." +msgstr "ID de Facebook invalide. Longitude maxime es 255 characteres." -#, fuzzy msgid "Invalid Facebook secret. Maximum length is 255 characters." -msgstr "Secreto de Facebook invalide. Longitude maximal es 255 characteres." +msgstr "Secreto de Facebook invalide. Longitude maxime es 255 characteres." msgid "Facebook application settings" msgstr "Configurationes del application de Facebook" @@ -52,25 +50,22 @@ msgstr "Configurationes del application de Facebook" msgid "Application ID" msgstr "ID de application" -#, fuzzy msgid "ID of your Facebook application." -msgstr "Le ID de tu application Facebook" +msgstr "Le ID de tu application Facebook." msgid "Secret" msgstr "Secreto" -#, fuzzy msgid "Application secret." -msgstr "Secreto de application" +msgstr "Secreto del application." #. TRANS: Submit button to save synchronisation settings. msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" -#, fuzzy msgid "Save Facebook settings." -msgstr "Salveguardar configuration Facebook" +msgstr "Salveguardar configuration Facebook." msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." @@ -123,7 +118,6 @@ msgstr "" msgid "Sync preferences saved." msgstr "Preferentias de synchronisation salveguardate." -#, fuzzy msgid "Could not delete link to Facebook." msgstr "Non poteva deler le ligamine a Facebook." @@ -139,22 +133,21 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Il ha jam un conto local ligate a iste conto de Facebook." -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." msgid "An unknown error has occured." msgstr "Un error incognite ha occurrite." -#, fuzzy, php-format +#, php-format msgid "" "This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" "Isto es le prime vice que tu ha aperite un session in %s; dunque, nos debe " -"connecter tu Facebook a un conto local. Tu pote crear un nove conto local, o " -"connecter con un conto local existente." +"connecter tu conto de Facebook a un conto local. Tu pote crear un nove conto " +"local, o connecter con un conto local existente." #. TRANS: Page title. msgid "Facebook Setup" @@ -185,9 +178,8 @@ msgstr "Crear un nove usator con iste pseudonymo." msgid "New nickname" msgstr "Nove pseudonymo" -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "1-64 minusculas o numeros, sin punctuation o spatios" +msgstr "1-64 minusculas o numeros, sin punctuation o spatios." #. TRANS: Submit button. msgctxt "BUTTON" @@ -260,6 +252,3 @@ msgstr "Tu connexion a Facebook ha essite removite" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Contacta le administrator de %s pro recuperar tu conto" - -#~ msgid "Save" -#~ msgstr "Salveguardar" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index 9818483fb1..323b46d11b 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:48:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,11 +38,9 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Поставки за обединување со Facebook" -#, fuzzy msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "Неважечка назнака (ID) за Facebook. Дозволени се највеќе 255 знаци." -#, fuzzy msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Неважечка тајна за Facebook. Дозволени се највеќе 255 знаци." @@ -52,25 +50,22 @@ msgstr "Поставки за програм за Facebook" msgid "Application ID" msgstr "Назнака (ID) на програмот" -#, fuzzy msgid "ID of your Facebook application." -msgstr "Назнака (ID) на Вашиот програм за Facebook" +msgstr "Назнака (ID) на Вашиот приложен програм за Facebook." msgid "Secret" msgstr "Тајна" -#, fuzzy msgid "Application secret." -msgstr "Тајна за програмот" +msgstr "Тајна за прилож. програм." #. TRANS: Submit button to save synchronisation settings. msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" -#, fuzzy msgid "Save Facebook settings." -msgstr "Зачувај поставки за Facebook" +msgstr "Зачувај поставки за Facebook." msgid "There was a problem with your session token. Try again, please." msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." @@ -121,9 +116,8 @@ msgstr "Се појави проблем при зачувувањето на н msgid "Sync preferences saved." msgstr "Нагодувањата за усогласување се зачувани." -#, fuzzy msgid "Could not delete link to Facebook." -msgstr "Не можев да ја избришам врската со Facebook." +msgstr "Не можев да ја избришам врската до Facebook." msgid "You have disconnected from Facebook." msgstr "Сега сте исклучени од Facebook." @@ -137,14 +131,13 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Веќе постои локална сметка поврзана со тааа сметка на Facebook." -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." msgid "An unknown error has occured." msgstr "Се појави непозната грешка." -#, fuzzy, php-format +#, php-format msgid "" "This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " @@ -169,7 +162,7 @@ msgid "" "email address, IM address, and phone number." msgstr "" "Мојот текст и податотеки се достапни под %s, освен следниве приватни " -"податоци: лозинка, е-пошта, IM-адреса и телефонски број." +"податоци: лозинка, е-пошта, НП-адреса и телефонски број." #. TRANS: Legend. msgid "Create new account" @@ -182,9 +175,8 @@ msgstr "Создај нов корисник со овој прекар." msgid "New nickname" msgstr "Нов прекар" -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "1-64 мали букви и бројки, без интерпункциски знаци и празни места" +msgstr "1-64 мали букви и бројки, без интерпункциски знаци и празни места." #. TRANS: Submit button. msgctxt "BUTTON" @@ -257,6 +249,3 @@ msgstr "Вашата врска со Facebook е отстранета" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Контактирајте го администраторот на %s за да си ја повртатите сметката" - -#~ msgid "Save" -#~ msgstr "Зачувај" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index 7c1873487a..1d83f84248 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -38,11 +38,9 @@ msgstr "Facebook" msgid "Facebook integration settings" msgstr "Instellingen voor Facebookkoppeling" -#, fuzzy msgid "Invalid Facebook ID. Maximum length is 255 characters." msgstr "Ongeldig Facebook-ID. De maximale lengte is 255 tekens." -#, fuzzy msgid "Invalid Facebook secret. Maximum length is 255 characters." msgstr "Ongeldig Facebookgeheim. De maximale lengte is 255 tekens." @@ -52,25 +50,22 @@ msgstr "Applicatieinstellingen voor Facebook" msgid "Application ID" msgstr "Applicatie-ID" -#, fuzzy msgid "ID of your Facebook application." -msgstr "ID van uw Facebookapplicatie" +msgstr "ID van uw Facebookapplicatie." msgid "Secret" msgstr "Geheim" -#, fuzzy msgid "Application secret." -msgstr "Applicatiegeheim" +msgstr "Applicatiegeheim." #. TRANS: Submit button to save synchronisation settings. msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" -#, fuzzy msgid "Save Facebook settings." -msgstr "Facebookinstellingen opslaan" +msgstr "Facebookinstellingen opslaan." msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -125,7 +120,6 @@ msgstr "" msgid "Sync preferences saved." msgstr "Uw synchronisatievoorkeuren zijn opgeslagen." -#, fuzzy msgid "Could not delete link to Facebook." msgstr "Het was niet mogelijk de verwijzing naar Facebook te verwijderen." @@ -141,20 +135,19 @@ msgstr "" msgid "There is already a local account linked with that Facebook account." msgstr "Er is al een lokale gebruiker verbonden met deze Facebookgebruiker." -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." msgid "An unknown error has occured." msgstr "Er is een onbekende fout opgetreden." -#, fuzzy, php-format +#, php-format msgid "" "This is the first time you have logged into %s so we must connect your " "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" -"De is de eerste keer dat u aanmeldt bij %s en dan moeten we uw " +"Dit is de eerste keer dat u aanmeldt bij %s en dan moeten we uw " "Facebookgebruiker koppelen met uw lokale gebruiker. U kunt een nieuwe lokale " "gebruiker aanmaken of koppelen met een bestaande gebruiker als u die al hebt." @@ -186,9 +179,8 @@ msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." msgid "New nickname" msgstr "Nieuwe gebruikersnaam" -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" +msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." #. TRANS: Submit button. msgctxt "BUTTON" @@ -264,6 +256,3 @@ msgid "Contact the %s administrator to retrieve your account" msgstr "" "Neem contact op met de beheerder van %s om uw gebruikersgegevens te " "verkrijgen" - -#~ msgid "Save" -#~ msgstr "Opslaan" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index d090143654..3bb23416b8 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -260,6 +260,3 @@ msgstr "З’єднання з Facebook було видалено" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "Зверніться до адміністратора %s, аби відновити свій обліковий запис" - -#~ msgid "Save" -#~ msgstr "Зберегти" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index 9467cb2991..9906a8236b 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -245,6 +245,3 @@ msgstr "Facebook 的连接已被删除" #, php-format msgid "Contact the %s administrator to retrieve your account" msgstr "与 %s 管理员联系,以检索您的帐户" - -#~ msgid "Save" -#~ msgstr "保存" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index 42a67cf02c..328357769d 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index 9826a9eaee..1cdeaebf6c 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index 54699701e6..bfbf8e8829 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:45+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index f0dbf27926..34c91863b4 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index b5b734aa54..e02fce6655 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index 334ef14a25..75d038d97a 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index 9db97b91a8..66875d7428 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index 684429ee12..7b8650513c 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index a7609ca951..aac7933420 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 1ce6b94636..27eaad1a0e 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index 922ed76dc8..817db83f00 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index 65010a89ee..7bdd243501 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index 8d916adda8..3472c3d42d 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index e446572b69..b3342e0e6a 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index 74f472b176..4ec98237e9 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index cf99e3fa21..23ebf3c6d6 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index 1f43184283..6924147983 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index 22dbb906d4..930d2c7858 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index 844a79713c..8e24d5935f 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index 3058137788..b8bf06b072 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Checkbox label in form for profile settings. msgid "Follow everyone" -msgstr "" +msgstr "Sequer omnes" msgid "New users follow everyone at registration and are followed in return." msgstr "Nove usatores seque omnes al inscription e es sequite per omnes." diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index 9754d7b81b..dc48680a98 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Checkbox label in form for profile settings. msgid "Follow everyone" -msgstr "" +msgstr "Следи ги сите" msgid "New users follow everyone at registration and are followed in return." msgstr "Новите корисници следат секого при регистрација и сите ги следат нив." diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index d6b9d39ea9..be67e48555 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index 0600a971f9..794d1181c5 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index b17c04ab6c..8dc2c35e33 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index 4b38e4b15a..96ed050b5f 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po index 6b025fb245..2679a08b8a 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index d28f5d2a12..668244443d 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 7be70a950c..f5f7a48fe4 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index 29590c6754..b3766c2b96 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index 22037f61e2..d41d0c0495 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index cac52d2077..2587532ad5 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 06b61e6f57..3398443528 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index 50950ae40a..25a85b0e8e 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index 06a38690f7..c60aedaf0b 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index a1bbd1917c..723d57be1e 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index 4a1307a145..b061b59a5c 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index cc103cee1b..2820f65c9d 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index 1ae54ecfb2..89776c2a6c 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po index 3d39a19f34..b4fe4161b1 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index b4336b29ae..d9bcdcaf62 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index 0f3713d057..e494cfcdf1 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index f7d2b58cdb..9eb6f43b9d 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index fc73cf073d..e83436b884 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index a18b956596..b9031532e9 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index 1e0ca4b8d7..1c9ea3d909 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index 3a08e71ff2..c9feb4a82c 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index 06fcbc6dc9..bff0dceb0e 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 837b6bbc1e..29c7b29d60 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index b9de6015c9..44b92264d8 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index 11417b53be..bf45ca78e3 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index e0266e9e97..337629bd53 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index 3f0cb3c4e9..0e15b13f59 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index 272df915ec..18e55cbcf5 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index c57c15681f..799e33540e 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index 588e8c7fdb..7744b86f89 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po index 04ed64d630..21e3736ea2 100644 --- a/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/br/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po index 7d6b146bae..4423738432 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index 819ed600ed..23aa72dda8 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po index 77f48224e6..60363356fd 100644 --- a/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/eo/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po index cf769efc51..95308696a6 100644 --- a/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/es/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 7c88a1d976..4f104aed39 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index 881c5a0e89..8faf3761c9 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po index d642893824..cff87cac61 100644 --- a/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/he/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index 11235c3f38..7343e15e20 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po index 979df9a3c0..6a0419c60a 100644 --- a/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/id/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index 827daec594..4482697a90 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po index 286705503c..296e219f2c 100644 --- a/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nb/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index 9f54825bdf..1c965f61bb 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po index 432ed8a0db..268405524b 100644 --- a/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/pt/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po index fa17b98d16..e24d11b1b7 100644 --- a/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/pt_BR/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:50+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po index cd795ca73b..3d2b1baf28 100644 --- a/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ru/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 3642078234..c82385d905 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index 368d90f12f..a4cf9e2121 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po index 281d7eb288..6020db159a 100644 --- a/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/zh_CN/LC_MESSAGES/Geonames.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po index 87f4439b86..72f101724d 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index d78a9131b3..39e012c735 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index 2ddb115582..88d18148df 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index bc5dedb570..9794b78410 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index 8eb360b492..50da783933 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 9bafa429da..953007877b 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index 68053cc076..7b1f3076a1 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 34f0229707..6b2ddfbe45 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index 00aad66d5c..b481816d52 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index d41c08f1de..beef3b4ebf 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index f516317b86..b15e445f41 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index cbb72956f6..cd4b1301db 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index f40df05776..bbe329c8a3 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index 13c95a66d2..b524cdfc15 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:53+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index 45135daf9f..36625cf4b8 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:54+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index b47bf7bb0e..66ad0fdf24 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index 1409dbbe68..29f8927308 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:54+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po index 78573dcd8f..3ada26db5b 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index 6eed044028..f3ba57b6bc 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index 4916e09205..39fb89a738 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index b181d03599..cb31e6de0c 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index e223c08867..2768c8e76f 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 7ad80962e1..8e12136b8d 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index c647c8c528..5ab1db48f3 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 24ab551a00..5a60a8d04d 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index ce0b6fd9e2..11647cae53 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 1d4515a793..fb04b7b7a9 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index e14429839b..ba7caf0760 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index 3b6f7e4b9a..1f0fde3c72 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index 941e3c3c00..ea29a15cc1 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index f13c852aa5..7f135716ba 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index 05cc9f8799..f7ea723b3f 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index 963eb5cb0f..df7bffb8d1 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 1d357926bf..9ae56d9c6d 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index 72fb781d26..5a4c6c89e7 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index bd6add8131..1de93a2bbc 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index 9dd4bcaf1a..b827f8f738 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index 1e3c98f42d..4c45ced6be 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index 8f19a632f8..27696777c8 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index 1d65732012..8899776d7d 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index 9c39cc5b8c..df0785ae8c 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:20:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po index 916931f595..49bfdef05c 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,44 +9,44 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:09:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-26 16:23:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" msgid "Must be logged in." -msgstr "" +msgstr "Мора да се најавени." -#, fuzzy, php-format -msgid "User %s not allowed to send private messages." -msgstr "Оваа група нема примено приватни пораки." +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "На корисникот %s не му е дозволено да испраќа приватни пораки." msgid "No such group." -msgstr "" +msgstr "Нема таква група." msgid "Message sent" -msgstr "" +msgstr "Пораката е испратена" #, php-format msgid "Direct message to %s sent." -msgstr "" +msgstr "Непосредната порака до %s е испратена." -#, fuzzy, php-format +#, php-format msgid "New message to group %s" -msgstr "Приватни пораки за групава" +msgstr "Приватни пораки за групата %s" #. TRANS: Subject for direct-message notification email. -#. TRANS: %s is the sending user's nickname. -#, fuzzy, php-format +#. TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. +#, php-format msgid "New private message from %1$s to group %2$s" -msgstr "Приватни пораки за групава" +msgstr "Нова приватна порака од %1$s за групата %2$s" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, @@ -69,80 +69,91 @@ msgid "" "With kind regards,\n" "%6$s" msgstr "" +"%1$s (%2$s) ѝ испрати приватна порака на групата %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"Можете да одговорите на пораката тука:\n" +"\n" +"%5$s\n" +"\n" +"Не одговарајте на ова писмо; никој нема да го добие одговорот.\n" +"\n" +"Со почит,\n" +"%6$s" +msgctxt "MENU" msgid "Inbox" msgstr "Примени" -msgid "Private messages for this group" -msgstr "Приватни пораки за групава" +msgid "Private messages for this group." +msgstr "Приватни пораки за групава." -#, fuzzy msgid "Private messages" -msgstr "Приватни пораки за групава" +msgstr "Приватни пораки" msgid "Sometimes" -msgstr "" +msgstr "Понекогаш" msgid "Always" -msgstr "" +msgstr "Секогаш" msgid "Never" -msgstr "" +msgstr "Никогаш" -#, fuzzy -msgid "Whether to allow private messages to this group" -msgstr "Приватни пораки за групава" +msgid "Whether to allow private messages to this group." +msgstr "Дали да се дозволени приватни пораки за групава." -msgid "Private sender" -msgstr "" +msgid "Private senders" +msgstr "Приватни испраќачи" msgid "Everyone" -msgstr "" +msgstr "Сите" msgid "Member" -msgstr "" +msgstr "Член" msgid "Admin" -msgstr "" +msgstr "Админ" -#, fuzzy -msgid "Who can send private messages to the group" -msgstr "Приватни пораки за групава" +msgid "Who can send private messages to the group." +msgstr "Кој може да ѝ испраќа приватни пораки на групава." -#, fuzzy -msgid "Send a direct message to this group" -msgstr "Приватни пораки за групава" +msgid "Send a direct message to this group." +msgstr "Испрати ѝ непосредна порака на групава." msgid "Message" -msgstr "" +msgstr "Порака" msgid "Forced notice to private group message." -msgstr "" +msgstr "Ја наметнав забелешката што известува за приватната порака за групата." msgid "Private" -msgstr "" +msgstr "Приватна" -msgid "Allow posting DMs to a group." -msgstr "Дозволи испраќање НП на група." +msgid "Allow posting private messages to groups." +msgstr "Дозволи испраќање приватни пораки на групи." msgid "Only for logged-in users." -msgstr "" +msgstr "Само за најавени корисници." msgid "Only for members." -msgstr "" +msgstr "Само за членови." msgid "This group has not received any private messages." msgstr "Оваа група нема примено приватни пораки." #, php-format msgid "%s group inbox" -msgstr "" +msgstr "Примени пораки на групата %s" #. TRANS: Page title for any but first group page. #. TRANS: %1$s is a group name, $2$s is a page number. #, php-format msgid "%1$s group inbox, page %2$d" -msgstr "" +msgstr "Примени пораки на групата %1$s, страница %2$d" #. TRANS: Instructions for user inbox page. msgid "" @@ -154,42 +165,38 @@ msgstr "" #, php-format msgid "Message to %s" -msgstr "" +msgstr "Порака за %s" #, php-format msgid "Direct message to %s" -msgstr "" +msgstr "Непосредна порака за %s" msgid "Available characters" -msgstr "" +msgstr "Знаци на располагање" msgctxt "Send button for sending notice" msgid "Send" msgstr "Испрати" -#, fuzzy, php-format +#, php-format msgid "Group %s does not allow private messages." -msgstr "Оваа група нема примено приватни пораки." +msgstr "Групата %s не дозволува приватни поаки." #, php-format msgid "User %1$s is blocked from group %2$s." -msgstr "" +msgstr "Корисникот %1$s е блокиран на групата %2$s." #, php-format msgid "User %1$s is not a member of group %2$s." -msgstr "" +msgstr "Корисникот %1$s не членува во групата %2$s." #, php-format msgid "User %1$s is not an administrator of group %2$s." -msgstr "" +msgstr "Корисникот %1$s не е администратор на групата %2$s." #, php-format msgid "Unknown privacy settings for group %s." -msgstr "" - -#, fuzzy, php-format -msgid "User %s is not allowed to send private messages." -msgstr "Оваа група нема примено приватни пораки." +msgstr "Непознати нагодувања за приватност на групата %s." #, php-format msgid "That's too long. Maximum message size is %d character." @@ -197,31 +204,31 @@ msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "Ова е предолго. Дозволен е само %d знак." msgstr[1] "Ова е предолго. Дозволени се највеќе %d знаци." -msgid "No group for group message" -msgstr "" +msgid "No group for group message." +msgstr "Нема група за групната порака." -msgid "No sender for group message" -msgstr "" +msgid "No sender for group message." +msgstr "Нема испраќач за групната порака." msgid "Only logged-in users can view private messages." -msgstr "" +msgstr "Само најавени корисници можат да гледаат приватни пораки." msgid "No such message." -msgstr "" +msgstr "Нема таква порака." msgid "Group not found." -msgstr "" +msgstr "Групата не е пронајдена." msgid "Cannot read message." -msgstr "" +msgstr "Пораката не може да се чита." msgid "No sender found." -msgstr "" +msgstr "Не пронајдов испраќач." #, php-format msgid "Message from %1$s to group %2$s on %3$s" -msgstr "" +msgstr "Порака од %1$s за групата %2$s на %3$s" #, php-format msgid "Direct message to group %s sent." -msgstr "" +msgstr "Испратена е непосрредна порака за групата %s." diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index 151b6861b8..d3e8d10dd7 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:05:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" @@ -30,14 +30,14 @@ msgid "User %s is not allowed to send private messages." msgstr "Gebruiker %s mag geen privéberichten verzenden." msgid "No such group." -msgstr "Geen dergelijke groep." +msgstr "De opgegeven groep bestaat niet." msgid "Message sent" msgstr "Bericht verzonden" #, php-format msgid "Direct message to %s sent." -msgstr "Direct bericht naar %s verzonden." +msgstr "Het directe bericht aan %s is verzonden." #, php-format msgid "New message to group %s" @@ -85,14 +85,12 @@ msgstr "" "Met vriendelijke groet,\n" "%6$s" -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "Postvak IN" -#, fuzzy msgid "Private messages for this group." -msgstr "Privéberichten voor deze groep" +msgstr "Privéberichten voor deze groep." msgid "Private messages" msgstr "Privéberichten" @@ -106,11 +104,9 @@ msgstr "Altijd" msgid "Never" msgstr "Nooit" -#, fuzzy msgid "Whether to allow private messages to this group." -msgstr "Of privéberichten voor deze groep zijn toegestaan" +msgstr "Of privéberichten voor deze groep zijn toegestaan." -#, fuzzy msgid "Private senders" msgstr "Gebruikers die privéberichten mogen verzenden" @@ -121,15 +117,13 @@ msgid "Member" msgstr "Lid" msgid "Admin" -msgstr "Admin" +msgstr "Beheerder" -#, fuzzy msgid "Who can send private messages to the group." -msgstr "Wie kan privéberichten verzenden aan de groep." +msgstr "Wie privéberichten kan verzenden aan de groep." -#, fuzzy msgid "Send a direct message to this group." -msgstr "Privéberichten naar deze groep verzenden" +msgstr "Privébericht naar deze groep verzenden." msgid "Message" msgstr "Bericht" @@ -140,12 +134,11 @@ msgstr "Van mededelingen in deze groep privéberichten aan de groep maken." msgid "Private" msgstr "Privé" -#, fuzzy msgid "Allow posting private messages to groups." -msgstr "Wie kan privéberichten verzenden aan de groep." +msgstr "Verzenden van privéberichten aan de groep toestaan." msgid "Only for logged-in users." -msgstr "Alleen voor ingelogde gebruikers." +msgstr "Alleen voor aangemelde gebruikers." msgid "Only for members." msgstr "Alleen voor leden." @@ -155,13 +148,13 @@ msgstr "Deze groep heeft geen privéberichten ontvangen." #, php-format msgid "%s group inbox" -msgstr "%s groep inbox" +msgstr "Postvak IN van de groep %s" #. TRANS: Page title for any but first group page. #. TRANS: %1$s is a group name, $2$s is a page number. #, php-format msgid "%1$s group inbox, page %2$d" -msgstr "%1$s groep inbox, pagina %2$d" +msgstr "Postvak IN van de groep %1$s, pagina %2$d" #. TRANS: Instructions for user inbox page. msgid "" @@ -177,7 +170,7 @@ msgstr "Bericht aan %s" #, php-format msgid "Direct message to %s" -msgstr "Direct bericht aan %s" +msgstr "Privébericht aan %s" msgid "Available characters" msgstr "Beschikbare tekens" @@ -196,11 +189,11 @@ msgstr "Gebruiker %1$s is verbannen uit groep %2$s." #, php-format msgid "User %1$s is not a member of group %2$s." -msgstr "Gebruiker %1$s is geen lid van groep %2$s ." +msgstr "De gebruiker %1$s is geen lid van de groep %2$s." #, php-format msgid "User %1$s is not an administrator of group %2$s." -msgstr "Gebruiker %1$s is geen beheerder van groep %2$s ." +msgstr "De gebruiker %1$s is geen beheerder van de groep %2$s." #, php-format msgid "Unknown privacy settings for group %s." @@ -212,11 +205,9 @@ msgid_plural "That's too long. Maximum message size is %d characters." msgstr[0] "Dat is te lang. De maximale berichtlengte is %d teken." msgstr[1] "Dat is te lang. De maximale berichtlengte is %d tekens." -#, fuzzy msgid "No group for group message." msgstr "Er is geen groep voor het groepsbericht." -#, fuzzy msgid "No sender for group message." msgstr "Er is geen afzender voor het groepsbericht." @@ -242,9 +233,3 @@ msgstr "Bericht van %1$s aan groep %2$s op %3$s" #, php-format msgid "Direct message to group %s sent." msgstr "Privébericht aan groep %s verzonden." - -#~ msgid "User %s not allowed to send private messages." -#~ msgstr "De gebruiker %s mag geen privéberichten verzenden." - -#~ msgid "Allow posting DMs to a group." -#~ msgstr "Verzenden van Directe berichten naar een groep toestaan." diff --git a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po index 68e4aac104..7df1507d9d 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index 29dc024870..7286c732f6 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index fb34fda792..648050007e 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index 262c34523f..9c0939f034 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index 05e1e981da..cb7915a6b8 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index 3bfef13f48..9ae9e84547 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index 498144d7ca..2680b13d65 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index e5e7f02791..a8f3dccf92 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index 19688cdf66..9d9662bcde 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index 83bfb11857..3260504451 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index c62e0919ae..d711e8b121 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po index 36c6908bf2..90c924d970 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index 63bff9a882..93789f42b5 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index 0251f542a6..a2aaed5f46 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index 1fe04f9fad..470f79407f 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index 02e0a0c61d..914a560341 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index 034cd6bde7..fa6b1a56c8 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index 3ce956dc10..9ea217196c 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index 07afed865f..80aca8eb17 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index 35f4f486dc..a4d4a3f737 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:04+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po index b5b683bb1c..ddd950a31b 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index 9156d4ebdd..56c014b9ac 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index c290c2f3d0..c3c76a9c89 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index 8314161cb1..7e14d801f2 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 8d15c71431..764fc79108 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index c2afeac92a..ea39bbedde 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index e914fc479f..e757f6edcb 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index 94c960cf3d..9ed889537a 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index a24efb194a..8050ea8c13 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index d015cf81e6..87234641cc 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index 40e60fe2e5..b9686388c1 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 8a7d181409..d7386c0453 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index 3c9d37449e..e6ef532499 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index 2a91abc870..966b1a871b 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index 5fdb969d23..d8c74d16f8 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:03+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po index 1c4d608e96..e8efaa5a82 100644 --- a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index bb43986594..0d259ded11 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index 481254f958..2eafb12728 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index 60c8ba1def..66b66ba4cc 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" @@ -32,6 +32,11 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" +"Корисникот „%1$s“ на %2$s има изјавено дека Вашиот прекар на %3$s е всушност " +"негов. Ако ова е вистина, можете да потврдите стискајќи на оваа URL-адреса: %" +"4$s . (Ако не можете да ја стиснете, прекопирајте ја во адресната лента на " +"прелистувачот). Ако ова не сте Вие, или ако не ја имате побарано оваа " +"потврда, слободно занемарете ја поракава." msgid "" "The IRC plugin allows users to send and receive notices over an IRC network." @@ -50,4 +55,4 @@ msgstr "" #. TRANS: Server error thrown on database error canceling IM address confirmation. msgid "Could not delete confirmation." -msgstr "" +msgstr "Не можев да ја избришам потврдата." diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index 9796fe141e..4ca2378caa 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index e9d3326860..c3dd74d204 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index 1480ce7f31..77762151ec 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index ffc637238e..440b6a90f5 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:37:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po index d64301d386..5b128af93e 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po index ceabae18b1..d1f649bb46 100644 --- a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po index 1208debb83..8631159985 100644 --- a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index 2d91180e1d..49a6ffe2d2 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po index ea84b19130..7e2d0994d4 100644 --- a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index 813a40ebf3..13b8b138a6 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po index 3d29b32f3d..721541a8e8 100644 --- a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po index 9aa53750a3..ae05162c9b 100644 --- a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index 29108c6ebc..8e2cc930bb 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po index 097bc5625b..c08d98117f 100644 --- a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index ce2a644def..7c4102f699 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po index 175230df5c..d76aca929b 100644 --- a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:06+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po index ffbceca023..a2ca831312 100644 --- a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po index 8da8bc20b5..2fbc46286f 100644 --- a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index 58596bf6e7..9c58cac94b 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index 7a5ff80323..fccddf48ee 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po index 4272366f8a..0205bc7c29 100644 --- a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po index bae36bdc9d..87acf7ebc5 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po index 1122dac45c..bd74a61399 100644 --- a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index cd582fdcb9..5af9d28674 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po index 3cdb121617..1572d56412 100644 --- a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index 7f73a7d16d..db6296f2f1 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po index e2d3eb3b5b..984de04b71 100644 --- a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 51e3a1e6dc..c18a3b9164 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po index 1147c4ed0d..3514ac4973 100644 --- a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index 79e10845aa..4f40a80933 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po index 3eb64a44ec..373932c976 100644 --- a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po index 83f2c98cb8..797adf832b 100644 --- a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po index 1bf2eaf52a..2f0258778e 100644 --- a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 1928edb506..52d0e6f1e2 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index c00350b43f..c4f00170be 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po index 3ba5633278..78906ab1c2 100644 --- a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index 63de2bf34d..31d3862765 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index cd9b873c5a..ff2773e6e9 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index 12c0774329..b953503763 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index b044559f49..48a5eddfdf 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index fd51946862..d50fafdad1 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 1f1ea9fdc5..6034db7791 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index 8ee9697743..8ca99b0700 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index 190a6e785c..4287c71537 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index 0019ed9ae5..045232ab69 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:19+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index e510a736b1..215dfb0ca4 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index 63c4c97ff8..a3795d0a89 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index 126615e7fe..362ef385bf 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index 80060dfc9f..d69137c56c 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po index 92c9f483b5..d5dfaead20 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index 5802ce4ce7..91242bbda3 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po index 4591dd3fa3..e5fd0dc618 100644 --- a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index 56728b1ac2..b9c43605cf 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index 855cfcff8a..82383c5dde 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" @@ -26,4 +26,4 @@ msgstr "" "Додатоци за корисничкиот посредник што даваат преглед на минијатури од врски." msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index 40972a8ee2..0cac3c13f7 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po index 28750caee6..7e1dc2e1b7 100644 --- a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po index f6940410b6..14a440d0e9 100644 --- a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index dcbdf4477d..0804b16f2c 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po index 4ee2da32f0..1dd3931c60 100644 --- a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index bffa5b07e2..3a0f434a3a 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index d5cf148c6b..42cca6b07f 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index be826c122a..0049ceb9ce 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:10+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index e53f59ca86..c1b2f31ba0 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index 65d7b26d5a..e054e6b7a1 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index 9ecb038fa9..b8f8b5b7e8 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 2b9aef6389..0fb4de6cd6 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index 6e4da04221..34565b6589 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" @@ -23,7 +23,7 @@ msgstr "" #, php-format msgid "%1$s's status on %2$s" -msgstr "" +msgstr "Статус на %1$s на %2$s" msgid "" "Notify blog authors when their posts have been linked in microblog notices " diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 0a712e5064..784855a982 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index 0fa4fef5dd..73981407bd 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index 6dbaf0797c..e44eadf313 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index 1426c663ac..2695774932 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 20d7427482..60b7c3f4c4 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index 126298b5a3..e2e6f4ccad 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index 057e35b693..2aab30b1a7 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:11+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:02+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po index caa0796ee1..62692fe083 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index 05950bedfa..489c90549d 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index fcff30ce37..095de4fe8c 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index c542e50d14..a851aa2433 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index f24f38ae41..4c535e7241 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index 8bafcf8fec..ac9d46f9b8 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index 07d123cef2..e3f3044106 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index 42b08fada7..d8ab85cf38 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index 9fc63c7403..731bda3de9 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index 1386bc7106..bec720e1b0 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:22+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index a5179afcb1..04b099e314 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:14+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po index ef274b06f5..8cebf6af38 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:14+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 4fe618e709..e4c82aebe2 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index 552ad4d0a8..3b0833f3ee 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 232532f37b..df1b34b309 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index 9af2ccd28b..10b6ec1ec6 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index 0126325d05..61c3be24ff 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index eab288b5b6..09c25cee70 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index fe4c892e91..889ec36cbe 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index 35c64234f9..1a0c4a53bd 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 459934a97a..f72b0d96a1 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -49,7 +49,7 @@ msgid "%1$s friends map, page %2$d" msgstr "Kaart van vrienden van %1$s, pagina %2$d" msgid "No such user." -msgstr "Deze gebruiker bestaat niet" +msgstr "Deze gebruiker bestaat niet." msgid "User has no profile." msgstr "Deze gebruiker heeft geen profiel." diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index b9a633c3d6..da8a22cac8 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index 3f17df83f8..414791a571 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index baf494f110..37fa88cdc5 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:15+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 8275017c81..ef8faa5b16 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index 7e01b7fa61..3de9cd1f80 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index 73811737c3..b0f2fc853e 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po index f18d528deb..dee09f5b7b 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index 9fb56799ef..dd589352d1 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index be7083576f..a72acf437e 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 5eb23f4cf9..83372ca060 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index 3f8eac4cf5..2c67c32e2c 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index b998f0d783..e4f490917f 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index 4bd16076d4..fe2691accd 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index 1a1bf7a95a..043d208d58 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index 07c715c5f0..90bdb9b8d4 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index d57196d5df..41c8d4bd60 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index dcc0e83a48..9bbc2201c4 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index 555f8eed29..259aebe519 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index 9ef4a44d3f..9c368c39cc 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index 7bc4473c63..a15c24a8d7 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index dacab0335f..0c3d239635 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:17+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po index a54c1734b3..f6a867e4a1 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index bc5b1d5d9b..56e6db7671 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index 3bbeaff44b..76bacc53e2 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index a838405b8b..bae6ed5af8 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index 1ee74bf8f8..68d067eaef 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index 82cfa2d028..73c37f6ae4 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index 220d961b34..9fbffcd509 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:18+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index e6efb9857b..2e3569e64a 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index b72e5e6fee..c14692a69b 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index 891931a987..e96fc3edab 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index 79bc03f40c..91ff3e609c 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index e5b05243c1..30d347ec9f 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index 53186b2864..f03077c628 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index e64cb3818b..116ea8819b 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index 48611e4967..b95fadc054 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index 7b09e64758..e613e6f2d4 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:26+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:19+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po index c0f751532f..385a6a9745 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index 069ebee9c6..671a78733e 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index d5601ed9c1..7b4ddad5b0 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po index fcdd23e7a9..3c836958e3 100644 --- a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index 0e677897d3..7aa395cba7 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index 6345bc85d9..86bdeb1331 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index eadeaf0d55..a160dcd1ba 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 9c097e00e2..e0ff82c728 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index 6c7d5ff6d3..174f738e63 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po index 3fd0d1ae17..9facc12d9c 100644 --- a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po index 1d766a10f6..2a8c9de6cc 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:27+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index b7d1ef381c..3c338ac255 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index 10d69bf38a..18cf784669 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index fd0623b0cd..a8955f39d9 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index 341f4602c8..7737c8c34a 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index 497bfe5aa6..3e0596c744 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index 29e296c88b..48f1b9c890 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index a3f8e45eae..0300e125b3 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index 5c5e50fd08..a8d8577432 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index f403f39bef..8a92be9b68 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:28+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:22+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po index 27447544ab..39f4b38b60 100644 --- a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po index dffedb8d67..6f7495fbc4 100644 --- a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index 8f56833739..02da652c26 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Chechen \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ce\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index 3ad3ce3da2..50b0328372 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 624c28629a..58f89a3533 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po index d4266469ec..021314f5c2 100644 --- a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index 6b2326cbf6..129b590e85 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 85e7d1ce8f..50e367d598 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:29+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index 36153a367f..dd1c79e255 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 1046874951..ff8d7c4f69 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po index f5f9c4dff6..7641ee6916 100644 --- a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Pashto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ps\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 92025c60f0..1a5bcea777 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po index 85286f26b4..25cc2a3bf4 100644 --- a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po index 65725f02de..261184a185 100644 --- a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index 6adc423d20..8797d2396f 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index 77cdcc673e..be5ecb59da 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index 24a72669f4..e7fd81a887 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:24+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:23:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po index 0a020eb198..f31080a842 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index a958fa58df..50e00678ae 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index f31c716817..7a3814df67 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index 1251ee7118..805530ee42 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index 67fe94e50c..516d618a03 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index 79862cc4af..a64d2e6a81 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:30+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index 5b377bca77..158c5c74f7 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index 912ea16287..875b0007b4 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index 4960b1ea71..5934310762 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index e2a25766fb..69f99d9d51 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 74085a0183..00fe4a72d8 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index cf7ab47cfc..67dd0f32e3 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index 140aa0f8af..1ecc8ab1ff 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index a95cae221c..a3636c48f8 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" msgid "User has no profile." -msgstr "" +msgstr "Корисникот нема профил." #, php-format msgid "%s on %s" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index 5d58cf1100..c4f0d11836 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index 1394efbffd..f05bf6dc8e 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po new file mode 100644 index 0000000000..2df94f14a1 --- /dev/null +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -0,0 +1,25 @@ +# Translation of StatusNet - Mollom to Macedonian (Македонски) +# Exported from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mollom\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:06:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-mollom\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +msgid "Spam Detected." +msgstr "Утврден е спам." diff --git a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po index 148dd8c1f1..2fa3d540f5 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 20:36:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po index c538ba2c29..77649cc2bd 100644 --- a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po index 44fab4c717..ef0f198e24 100644 --- a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" "Language-Team: Greek \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po index c37c03454d..e04fea8b0e 100644 --- a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index ad78ce0536..322caca3b9 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index 8ec2077f9f..8fe7e2fb22 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index ce94e2376b..a0c3e5f3d4 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po index 888bb638f5..31d65723ef 100644 --- a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index 4a9b06189c..c6f8d5b412 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index aa94e68901..ce4f39e828 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index 39e7531444..6d92c40db8 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po index 8ee1418599..7a1a053984 100644 --- a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po index 198bab2f49..cc7a75dbbd 100644 --- a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po index c222ea7e9f..fd7fdc54e9 100644 --- a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po index 07d1565942..6e58242318 100644 --- a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po index bd382e977c..821f34ab70 100644 --- a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po index d8c87f66ea..1fd10a14d2 100644 --- a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" @@ -34,7 +34,7 @@ msgid "Your profile" msgstr "Uw profiel" msgid "Public" -msgstr "Publiek" +msgstr "Openbaar" msgid "Everyone on this site" msgstr "Iedereen binnen deze site" diff --git a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po index db3c3ed6df..41ca7d8a8e 100644 --- a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po index 1afe8a9c20..f367dbc424 100644 --- a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po index 3aa649af0a..74270b71a6 100644 --- a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po @@ -10,13 +10,13 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:34+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:30+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po index a713422b26..7dc8bed770 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 5c2e280993..79c8016e6f 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index 18ebbedf7a..dd7504ad33 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index e671efbc1d..9979e5cd9a 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index 270c3b9856..12e60dc4a4 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index 3754da50a4..d9edac3cab 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 59424e5b26..03478dbb76 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 84109706bf..22237315ba 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index f3787b9d25..7db8943e60 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 72bda4efdb..ee86503638 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po index 2f1efebce7..fe24706c24 100644 --- a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po index aa15b32230..abb4b9e1ee 100644 --- a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index da47aaa542..226308facc 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index 1b4bcd9f6c..30b2cf28da 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index f0b07dca58..981e43ed54 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index 0d8c8bcd1a..4787cce415 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po index 3d68bda215..72cfdc914b 100644 --- a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index 11ea1ddd7a..811560bd89 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index df73ae7707..437381f5d4 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 1111b3f7f6..1b247ab0bd 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index a5b41cbad1..c24f0ca7ba 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -308,9 +308,8 @@ msgstr "" "Како одговор на забелешка која не е од овој корисник и не го споменува." #. TRANS: Client exception. -#, fuzzy msgid "This is already a favorite." -msgstr "Оваа цел не разбира бендисување на забелешки." +msgstr "Ова веќе Ви е бендисано." #. TRANS: Client exception. msgid "Could not save new favorite." @@ -318,7 +317,7 @@ msgstr "Не можам да го зачувам новобендисаното. #. TRANS: Client exception. msgid "Notice was not favorited!" -msgstr "" +msgstr "Забелешката не е бендисана!" #. TRANS: Client exception. msgid "Can't favorite/unfavorite without an object." diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index bb0152f812..cf490b4653 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -191,7 +191,7 @@ msgid "Unexpected unsubscribe request for %s." msgstr "Onverwacht verzoek om abonnement op te hebben voor %s." msgid "No such user." -msgstr "Onbekende gebruiker." +msgstr "Deze gebruiker bestaat niet." #. TRANS: Field label for a field that takes an OStatus user address. msgid "Subscribe to" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 26823261ab..69b6c162a4 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:54+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po index 2c70cd659e..ffed651659 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index e6811a513b..8d62eeeb81 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 3f6af58da8..da1c58c784 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index feccc5c396..07ad755146 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index f4fc7f1bb1..3c303f97ef 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 8a2aa54a0d..b0f6e3914e 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index 2d9646db5c..c9dfca28f8 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index f393bb5bfc..db13fc5173 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index a71871c283..480d2472bc 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:36+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index 738b013cf3..d05977c25b 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index 2130e3cd6e..a522434180 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index 1dac2aefac..57149a7dc8 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index 2be74ff5eb..f00c6870df 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:37+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index 543bbdf30d..1b9fe519c9 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:40+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po index 2cc5df23ad..7fe2f162af 100644 --- a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 16faa01b1a..b5c13e3647 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:40+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 7bc3fcbe44..f455e7ff55 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:43+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:40+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 85d51bfc4a..9207b3a4fa 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index ee867b9ff3..055cec5a11 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index 8a8a4095f1..314f9cf330 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -167,15 +167,14 @@ msgstr "Создај нов корисник со овој прекар." msgid "New nickname" msgstr "Нов прекар" -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" +msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места." msgid "Email" -msgstr "" +msgstr "Е-пошта" msgid "Used only for updates, announcements, and password recovery." -msgstr "" +msgstr "Се користи само за подновувања, објави и повраќање на лозинка." #. TRANS: OpenID plugin link text. #. TRANS: %s is a link to a licese with the license name as link text. @@ -184,6 +183,8 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +"Мојот текст и податотеки се достапни под %s, освен следниве приватни " +"податоци: лозинка, е-пошта, НП-адреса и телефонски број." #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" @@ -388,11 +389,10 @@ msgstr "" "ја оневозможува потврдата на лозинка за сите корисници!" msgid "Save" -msgstr "" +msgstr "Зачувај" -#, fuzzy msgid "Save OpenID settings." -msgstr "Зачувај нагодувања за OpenID" +msgstr "Зачувај нагодувања за OpenID." #. TRANS: Client error message msgid "Not logged in." diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 247da13ef8..413b55ec23 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 9afd74b082..b5ee2dce77 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 6f835f150c..86f2145d4b 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:44+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po index 864e0ca113..eec93cf94b 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index 42fedd285f..4ea45ae1cd 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index ff251f3c46..9d06d1755a 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:45+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index 54757e6dd3..44328b6011 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index 3b8fc89d6c..1b5fd005a3 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index 1a90b2ba46..c67768a981 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index bd2bd9170e..bb03fdfeba 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:46+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po index 519ef0b69d..f85005c814 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index 6a3225b8b5..8938796d5a 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index d1884d38d8..9f94b9bee7 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index faa77f00d6..a85adfabb8 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index 2162bb3d36..c0157af4a7 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index c4a796b839..09ba9dc05d 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index 3ec21c0060..77cb008529 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index e15a65237e..0e52bcfb51 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index 7a08bd54d5..3aab2ed2b2 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index ec9d407d1f..736042766b 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index 37e3c0b7e3..20d79e7335 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index 95463f22d0..9acd0d77e3 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index 20613c1d31..5bc06e6fb1 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index cbe5fb9a65..fcd5632bb4 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:55+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index 6810e2830a..d4f4a8b397 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index 59058dc1cb..b898882bd9 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -73,7 +73,7 @@ msgid "Unexpected type for poll plugin: %s." msgstr "Неочекуван тип за анкетен приклучок: %s." msgid "Poll data is missing" -msgstr "" +msgstr "Анкетните податоци недостасуваат" #. TRANS: Application title. msgctxt "APPTITLE" diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index 7365d1f4a1..0a09247612 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index edb67e8370..2aaf25ff2a 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index 4fcc90fe7b..37a1fd6a32 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:57+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:38:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:07+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po index a3c6fb066e..7d668c7742 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index 4a43e0350a..48d42d65c6 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index 45abc691c0..4359f1fab3 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index 27f99c34d4..021c94b537 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index 1794445a68..9d82832694 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:57+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index 9982000a60..5d8af9b373 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 20806f8b6a..019bc70b26 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index d6599c431e..1377ececd5 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index c9ce501283..2bab94ea9d 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index c506659d98..7201ddd49a 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index b7efc630ac..47c5a44a50 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index 02d24c773b..161b04fe0f 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index da8d70c8b1..5a0dce3519 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 9e25fe96dd..00f0756f9f 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index 92fa1340a3..80b7ec6b80 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index 8120ab74b9..ba3d1f31db 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:58+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index d75c61a01f..ef9cea182d 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index 0c98852e90..76e6092166 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index 553febc1bf..1fc0563be0 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index a17555e0cf..2ee17586ae 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index fb1fa7d324..8d0418d25c 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index dbe2838175..b2b774db8b 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 5177b948dd..fb676fb3f3 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index 5f5eebf90e..ffffdbf7f1 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 397f0825ae..9ffdb12c50 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:21:59+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index 5cd419fdd2..1722ad1a4a 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index bb517b6f94..769862ff95 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index e0dfeedb14..5431635b84 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:49:59+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po index 2041b92b8a..c64ed4e382 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index eeb71eff2e..6233cf1e6f 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index 9a698a1a33..59deab7b17 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index e5278e60ae..78bdad9374 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index 1849a2a16b..bd0eabcda9 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index c6d7c4f976..f48350fa87 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:00+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index a10c08918d..5a30f7b37a 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index 98f13f7888..8d85633f21 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index ce8401509b..77fb44e3e3 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index 520d9656c1..0f9aa84e6d 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index d418a68379..bccbf9d8ba 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index b9092680c3..fad06d3c09 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index eea0a5bc1f..951e464cf5 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index f59f687edd..147cf4c217 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:00+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index a4729b9334..e1af0f0274 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 942d07699b..bc1cfcf2ee 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po new file mode 100644 index 0000000000..f51a9e8270 --- /dev/null +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -0,0 +1,145 @@ +# Translation of StatusNet - QnA to Dutch (Nederlands) +# Exported from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - QnA\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:03+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 12:56:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-qna\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for Question page. +msgid "New question" +msgstr "Nieuwe vraag" + +msgid "You must be logged in to post a question." +msgstr "" +"U moet aangemeld zijn om een vraag te kunnen stellen te kunnen stellen." + +#. TRANS: Client exception thrown trying to create a question without a title. +msgid "Question must have a title." +msgstr "U moet de vraag een naam geven." + +#. TRANS: Page title after sending a notice. +msgid "Question posted" +msgstr "De vraag is gesteld" + +msgid "No such answer." +msgstr "Dat antwoord bestaat niet." + +msgid "No question for this answer." +msgstr "Er is geen vraag voor dit antwoord." + +#. TRANS: Client exception thrown trying to view a question of a non-existing user. +msgid "No such user." +msgstr "Deze gebruiker bestaat niet." + +#. TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded. +msgid "User without a profile." +msgstr "Gebruiker zonder profiel." + +#, php-format +msgid "%s's answer to \"%s\"" +msgstr "" + +#. TRANS: Client exception thrown trying to view a non-existing question. +msgid "No such question." +msgstr "De vraag bestaat niet." + +#. TRANS: Client exception thrown trying to view a non-existing question notice. +msgid "No such question notice." +msgstr "De vraagmededeling bestaat niet." + +#. TRANS: Page title for a question. +#. TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. +#, php-format +msgid "%1$s's question: %2$s" +msgstr "Vraag van %1$s: %2$s" + +#. TRANS: Page title for and answer to a question. +msgid "Answer" +msgstr "Antwoorden" + +#. TRANS: Client exception thrown trying to answer a question while not logged in. +msgid "You must be logged in to answer to a question." +msgstr "U moet aangemeld zijn om een vraag te kunnen beantwoorden." + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +msgid "Invalid or missing question." +msgstr "Ongeldige of ontbrekende vraag." + +#. TRANS: Page title after sending an answer. +msgid "Answers" +msgstr "Antwoorden" + +msgid "Question and Answers micro-app." +msgstr "Microapplicatie voor vragen en antwoorden." + +msgid "Question" +msgstr "Vraag" + +#, php-format +msgid "Unexpected type for QnA plugin: %s." +msgstr "Onverwacht type voor plug-in Vraag en Antwoord: %s." + +msgid "Question data is missing" +msgstr "" + +#, php-format +msgid "%1$s answered the question \"%2$s\": %3$s" +msgstr "%1$s heeft de vraag \"%2$s\" beantwoord: %3$s" + +#. TRANS: Rendered version of the notice content answering a question. +#. TRANS: %s a link to the question with question title as the link content. +#, php-format +msgid "answered \"%s\"" +msgstr "heeft geantwoord \"%s\"" + +#, php-format +msgid "%1$s asked the question \"%2$s\": %3$s" +msgstr "%1$s heeft de vraag \"%2$s\" gesteld: %3$s" + +#, php-format +msgid "question: %1$s %2$s" +msgstr "vraag: %1$s %2$s" + +#. TRANS: Rendered version of the notice content creating a question. +#. TRANS: %s a link to the question as link description. +#, php-format +msgid "Question: %s" +msgstr "Vraag: %s" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "Opslaan" + +msgid "Title" +msgstr "Naam" + +msgid "Title of your question" +msgstr "Naam van uw vraag" + +msgid "Description" +msgstr "Beschrijving" + +msgid "Your question in detail" +msgstr "Details van uw vraag" + +#. TRANS: Button text for saving a new question. +msgctxt "BUTTON" +msgid "Save" +msgstr "Opslaan" diff --git a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po index a3974fe4ea..e8bd186811 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:11+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index cd7e36e7c1..8e30cf7418 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 46aad668ac..be0cac0f98 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index 43e5864e27..dae271c59e 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,20 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" msgid "A URL parameter is required." -msgstr "" +msgstr "Се бара параметар за URL." msgid "This resource requires an HTTP GET." msgstr "Овој ресурс бара HTTP GET." diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index 4ab4dfd0ad..a48716f0b1 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index 0b0023c652..2706811a44 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:12+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index cad94efe59..7529ea0a87 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:07+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po index ac8c26f242..c8f819b5ae 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index 8fe74dee42..013ecfc088 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index 9b794ce75e..279b66da4d 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:01+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index 06de789d50..b69e8a76ef 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index a7d617a9c7..f683e49cd0 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index 7e12687c81..5e09576978 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index f996e6c65d..fd7a808e60 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 51d5894e00..ffccc3a8c0 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index 507d0837b2..db27f5ed96 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index 63977c4e3d..ac4b40edd2 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index de4d69b918..08abd055b6 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index cc07daf121..812fd78546 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:02+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index 380d1f4b89..b04e2aaee2 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:05+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index da32dd58e4..7ced1fd011 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index e59936c33e..1136603633 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index f9fe781264..7329df0353 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index 3d879ea564..994e93cba2 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 1f6a70419f..6b429a5e2e 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index cec204da3d..f300f79f8a 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index 9485238ff2..c201de04d6 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index 6a196670c1..8dcf18e479 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index bac3385797..ca7420496e 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index 924e56f40b..8aadb55ec6 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:03+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index 05b111ec06..d040838427 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index c2bfed0a6d..e2e7c2f09f 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 7bbc94a484..5623546bb7 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index 4e9bde5b51..1603aa45a7 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index 50bc21930d..f80a568599 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index c654606ef0..a58ca29e85 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index a7b8cc785d..90fa983ee4 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:04+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 2dceca79d7..81c6f09f54 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -33,51 +33,53 @@ msgid "Disables posting without a validated email address." msgstr "Оневозможува објавување без потврдена е-пошта." msgid "You are already logged in." -msgstr "" +msgstr "Веќе сте најавени." msgid "Confirmation code not found." -msgstr "" +msgstr "Потврдниот код не е пронајден." msgid "No user for that confirmation code." -msgstr "" +msgstr "Нема корисник за тој потврден код." #, php-format msgid "Unrecognized address type %s." -msgstr "" +msgstr "Непознат тип на адреса %s." #. TRANS: Client error for an already confirmed email/jabber/sms address. msgid "That address has already been confirmed." -msgstr "" +msgstr "Таа адреса е веќе потврдена." msgid "Password too short." -msgstr "" +msgstr "Лозинката е прекратка." msgid "Passwords do not match." -msgstr "" +msgstr "Лозинките не се совпаѓаат." #, php-format msgid "" "You have confirmed the email address for your new user account %s. Use the " "form below to set your new password." msgstr "" +"Ја потврдивте е-поштата за Вашата нова корисничка сметка %s. Задајте нова " +"лозинка во образецот подолу." msgid "Set a password" -msgstr "" +msgstr "Задајте лозинка" msgid "Confirm email" -msgstr "" +msgstr "Потврдете е-пошта" msgid "New password" -msgstr "" +msgstr "Нова лозинка" msgid "6 or more characters." -msgstr "" +msgstr "барем 6 знаци." msgid "Confirm" -msgstr "" +msgstr "Потврди" msgid "Same as password above." -msgstr "" +msgstr "Исто како лозинката погоре." msgid "Save" -msgstr "" +msgstr "Зачувај" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index 13e7c239cd..a1ecfaa8f7 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:05+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:36+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po index 44e01e9709..a68c9f49ca 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index 7a87734aa8..fdd701fa95 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index 1106ebedf4..462c38af42 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:09+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index f2b2e352d3..d8681eb705 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index 975465f151..82e32976d1 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index 999d1c59ab..eabce63571 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index 13f9f2675a..19f54fe359 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index 6e0296e709..d15145ebc7 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index 3f72cc7d75..c8cd9a8cc8 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index 117d948971..d59b1413e8 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index 83a3000845..365dd26649 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index 92b504ea8e..37842de64c 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:06+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po index baea5d29d0..0beb082895 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index b03dba99cd..5e4c406fad 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index 96f8e5de10..fa6ea343cb 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index 27125f20b1..8165a3b298 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index 0a38cc7038..351639c984 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index 8478fe2c7b..703c50c865 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index edf53f93ed..4a4250d4fb 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index 0d708264b3..9ba3084e4d 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index 5cac983f45..f1f2960a4a 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index 024cf8d63c..5959283e0e 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index bea0cde98e..1204cd369b 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index baa9f2a949..92877d9efe 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index 15f9e4688b..ccab0967e6 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 74776088bb..a4839e2c29 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index d80ed48fe2..d02d9a8611 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:08+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index d29cd1aa84..53c8f08955 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index 928458b4e1..ba5f0d1fea 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index fa2da6a9e0..aaf1775ab5 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index 78e1395e30..e4f9bb4574 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:09+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:14+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index 72fa7174b5..4971cd723b 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index 8d45a7d304..b97f0bc028 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -97,19 +97,19 @@ msgstr "Повеќе не сте претплатени на пребарува #. TRANS: Client error displayed trying to perform any request method other than POST. #. TRANS: Do not translate POST. msgid "This action only accepts POST requests." -msgstr "" +msgstr "Ова дејство прифаќа само POST-барања" #. TRANS: Client error displayed when the session token is not okay. msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." #. TRANS: Client error displayed trying to subscribe when not logged in. msgid "Not logged in." -msgstr "" +msgstr "Не сте најавени." #. TRANS: Client error displayed trying to subscribe to a non-existing profile. msgid "No such profile." -msgstr "" +msgstr "Нема таков профил." #. TRANS: Page title when search subscription succeeded. msgid "Subscribed" @@ -118,10 +118,9 @@ msgstr "Претплатено" msgid "Unsubscribe from this search" msgstr "Откажи претплата на ова пребарување" -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "Претплатата е откажана" +msgstr "Откажи претплата" #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" @@ -193,10 +192,9 @@ msgstr "Следите пребарувања на: %s" msgid "Subscribe to this search" msgstr "Претплати се на пребарувањево" -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" -msgstr "Претплатено" +msgstr "Претплати се" #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #, php-format diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index debdff8236..1cb5c76157 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index aa3f371fa8..9a4ed3b329 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index 7b6cfdb379..da4e49c549 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:11+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po index 82ced48026..ed12671ffd 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index 87eec6dd5b..32b16850ec 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index 3e0086a641..f6ef041576 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index 08f44ea43f..c003b0f942 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index 3318fb2823..13ed2bdc29 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index 5d9a800bb9..8f5644f29b 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index c580fd9b77..51724ff241 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index 43a4537f03..54e90dbd83 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index 4308dbb29d..4f2ca2c5ee 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index 632708f750..2c4aaabcc4 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index 8efc879338..6907f590b0 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:12+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po index 518fb81ff3..1d84a25d55 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index 1d428f6f0a..7cbcaec798 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index 8fd6be7cd1..96c96db090 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index 2e20ceae29..b3f720cb49 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index e7d22941e8..58bf564572 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index 832950160a..50726cf6e7 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index 6e0da55b06..39c72fbb3f 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index 4599f394ed..bd59088c88 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index d09940808d..8627f8aff0 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index 05492ae4d6..a58e1aaf54 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index 5bcb7bccc5..4b63d5a5a7 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index 3bb0a439d3..3456388cca 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index 07b5a2964a..d7cd1906c7 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 65aa82f304..b615395a9f 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 0747e23b9e..7a2d904979 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index 0463f47cd5..2f0d997731 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index 3b9c420cf3..875a1e0825 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:13+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po index 4d94ab1a6f..aeb839039a 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index 28e2ec462b..5767ad5e5f 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:14+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index 454eabdad3..3d8c0cddb3 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index c0d466c2d3..ea612f34b1 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index 13f96b3b78..67f0e9c8a2 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index 5328719f47..c962bcbc76 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index a93b5a02ab..951dde1607 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 808fc6d464..26e077de66 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index 668dc5a92f..350ef649b9 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po index f56902dbdf..6ddd28a270 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index fc39dc747d..0219accd68 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 2404bca710..82416d54e7 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index 6eeae02335..fc9213cc05 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:15+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index f418e497be..b77ed3377f 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index 31e3575445..459125eea0 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index 1f50b3afc3..2235307c1e 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index dc84cfb42d..69ae6ab419 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index 7690b120de..7310249e9d 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index b4580520ee..e0238af03a 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po index ab65262fd7..af39c3e3db 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index 8332b0b97a..704a4282a0 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index cf56ff4d00..d4ba83da85 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index a8fb9899ec..02c0c65611 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index 26c33f7944..d68849130d 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index d8cc28032d..00eafeba0c 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:16+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index 0d239ceafb..25885f24ae 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index 152662cfde..abd3b3738d 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:17+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index eb3782fb0d..6ac6426004 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index ae3215029b..ba54d6248d 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index d5b5be8278..7654ef3592 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index f8df36df54..92859c6800 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index cdb297acc2..654fcd6ad3 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:18+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index de351730e2..31319b9779 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index e7dd0dc5e9..06d802efe3 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index 362c103f99..a48da628f6 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index e1ca3cee74..e3e20a0597 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -73,7 +73,7 @@ msgstr "" "хронологија на StatusNet!" msgid "Provider add" -msgstr "" +msgstr "Адреса на услужникот" msgid "Pull feeds into your timeline!" msgstr "Повлекувајте каналски емитувања во Вашата хронологија!" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index 83586e0980..3b567529de 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 58889510a7..6bda4e4a2e 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index afcdbbbf08..005117fecd 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index 62b0265f67..c1fea762f5 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,23 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:38+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" msgid "Too many subscriptions. Take a break and try again later." -msgstr "" +msgstr "Премногу претплати. Направете пауза и обидете се подоцна." msgid "Too many memberships. Take a break and try again later." -msgstr "" +msgstr "Премногу членства. Направете пауза и обидете се подоцна." msgid "Configurable limits for subscriptions and group memberships." msgstr "Прилагодливи ограничувања за претплата и членства во групи." diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po index bf4423103b..2572c885cf 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index 3d9bcf494c..e275a99e16 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:20+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po index aef3874dbc..8a955a9f66 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index 6fcfa1cc69..502edfd3b4 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index 9ae2afe251..d076b28eec 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index 5b738ea8b2..b1cb1a54ee 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index 654c551e70..44da9fd005 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 77a7923558..e0bafca910 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index ae84967bcd..7da1c2b5d4 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index d99d581ad7..0a43d690dc 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index 14005257d5..ba19101702 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index b8f3ef3761..62ec9f9459 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index 0cb811b136..c813543d9d 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index 49b394492f..5eeffb188f 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index aae9cb669b..16189b75fd 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:21+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 21b5450eb2..e7200d6f69 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index 762cea08f1..c3f67306e2 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,10 +24,9 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Отпиши се од ознакава" -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "Претплатено" +msgstr "Откажи претплата" #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." @@ -48,10 +47,9 @@ msgstr "Претплати на ознаки" msgid "Subscribe to this tag" msgstr "Претплати се на ознакава" -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" -msgstr "Претплатата е откажана" +msgstr "Претплати се" #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" @@ -60,19 +58,19 @@ msgstr "Претплатено" #. TRANS: Client error displayed trying to perform any request method other than POST. #. TRANS: Do not translate POST. msgid "This action only accepts POST requests." -msgstr "" +msgstr "Ова дејство прифаќа само POST-барања" #. TRANS: Client error displayed when the session token is not okay. msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." #. TRANS: Client error displayed trying to subscribe when not logged in. msgid "Not logged in." -msgstr "" +msgstr "Не сте најавени." #. TRANS: Client error displayed trying to subscribe to a non-existing profile. msgid "No such profile." -msgstr "" +msgstr "Нема таков профил." #. TRANS: Page title when tag subscription succeeded. msgid "Subscribed" @@ -116,6 +114,10 @@ msgid "" "messages on this site that use that tag, even if you are not subscribed to " "the poster." msgstr "" +"Моментално не следите никакви тарабни ознаки. Можете да го притиснете " +"копчето „Претплати се“ на секоја страница со тарабна ознака за автоматски да " +"добивате јавни пораки од мреж. место што ја имаат таа ознака, дури и ако не " +"сте претплатени на објавувачот." #. TRANS: Tag subscription list text when looking at the subscriptions for a of a user other #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. diff --git a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po index 9385bee46a..c1b831d098 100644 --- a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index d8f86b4ecd..4ff685a583 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index f4b56ded97..fdbbef7056 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index 501a02d759..8e9b5134f6 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:39:50+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po index 3f756aefec..7ce22657d8 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:23+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index 367f7bf282..610f41530c 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index e0c1bf36ac..80f893c708 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index d2509cf857..4bb52f836a 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index 76f3a53fef..9ac714a226 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index b6725b2f03..c49006532a 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index 07ca690cd1..1328d0450a 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 2500e51635..3994cafc1e 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index 5f74095c47..b1b00ea89d 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po index da0eb49f5d..9ff50a2656 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index 7e6913e2ec..b46277fb15 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index 6b73d9ec3e..90778b0e52 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index 15d594c3a1..9718e1a06f 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index a9e7d7146c..65e7f70986 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index a402383a4e..89bea8df34 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index 58dbea120c..40cc2b8b06 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index fb88da0556..c2e6235354 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:24+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:05+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po index a4b7985ea3..2f2ce5bb8a 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index d8a34d63a6..7ca659c45b 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index bb3664c6e5..9c3c6dd20f 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index 3ade65e813..39839ad13b 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index 100a29f3e2..874fe36178 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index ecadcbaa00..77f0225811 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index f68f65ce38..615b309d78 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 290b938039..d5d766250a 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po index 966c816340..4af4e4b4a0 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index e89ab88740..d2f21049ce 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index a16d88157b..fbff2b2d51 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index 417ec6049f..950942a166 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 21d30258f4..c9dfc7eaaa 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index 63818adcb4..d402ba55bb 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index d7f5cf1513..14c26b86d2 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index d6d8436346..88cb9be72b 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:25+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po index f0e5212eeb..f4648acf0d 100644 --- a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index 46f3ae9904..5a00e8ee19 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po index 875eaec48c..a6c224109e 100644 --- a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 512cde83fc..31b0d1a3da 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index 7e909a8b0a..9520141a46 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 87f7a43363..89d4e1cf38 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -105,14 +105,12 @@ msgstr "Не можев да ги зачувам нагодувањата за T msgid "Twitter preferences saved." msgstr "Нагодувањата за Twitter се зачувани." -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "Не можете да се регистрирате ако не се согласувате со лиценцата." msgid "Something weird happened." msgstr "Се случи нешто чудно." -#, fuzzy msgid "Could not link your Twitter account." msgstr "Не можам да ја поврзам Вашата сметка на Twitter." @@ -146,7 +144,7 @@ msgid "" "email address, IM address, and phone number." msgstr "" "Мојот текст и податотеки се достапни под %s, освен следниве приватни " -"податоци: лозинка, е-пошта, IM-адреса и телефонски број." +"податоци: лозинка, е-пошта, НП-адреса и телефонски број." msgid "Create new account" msgstr "Создај нова сметка" @@ -157,16 +155,15 @@ msgstr "Создај нов корисник со овој прекар." msgid "New nickname" msgstr "Нов прекар" -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места" +msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места." msgctxt "LABEL" msgid "Email" -msgstr "" +msgstr "Е-пошта" msgid "Used only for updates, announcements, and password recovery" -msgstr "" +msgstr "Се користи само за подновувања, објави и повраќање на лозинка." msgid "Create" msgstr "Создај" diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index 8ba5848b00..1bde43c425 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -261,7 +261,7 @@ msgid "Twitter integration options" msgstr "Pilihan penyepaduan Twitter" msgid "Twitter bridge configuration" -msgstr "Tataletak pengantara Twitter" +msgstr "Tatarajah pengantara Twitter" msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 45e39e7831..2365211dea 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -107,14 +107,12 @@ msgstr "Het was niet mogelijk de Twittervoorkeuren op te slaan." msgid "Twitter preferences saved." msgstr "De Twitterinstellingen zijn opgeslagen." -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." msgid "Something weird happened." msgstr "Er is iets vreemds gebeurd." -#, fuzzy msgid "Could not link your Twitter account." msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." @@ -159,7 +157,6 @@ msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." msgid "New nickname" msgstr "Nieuwe gebruikersnaam" -#, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index e95e14015a..fd833650c8 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index c50e2640ce..8dfd573b20 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:31+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 287f1ad7f8..28acf61c51 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:32+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:41+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:04+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 1e4d4c1bad..b59038840b 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index 1797c8e03a..a78bd52136 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index fba8adc01e..1b4e88b26d 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index 399451b2a3..fce44e17ff 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index 3ef3e9dfe5..5cfab00183 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -54,10 +54,10 @@ msgid "Clear all flags" msgstr "Отстрани ги сите ознаки" msgid "Not logged in." -msgstr "" +msgstr "Не сте најавени." msgid "You cannot review profile flags." -msgstr "" +msgstr "Не можете да прегледувате профилни знаменца." #. TRANS: Title for page with a list of profiles that were flagged for review. msgid "Flagged profiles" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index ddcd4ea648..f8742006ad 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index 025b76dc6e..c1374ac7f1 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index 22eb4c877f..e7a2b42961 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index 2554b26e3c..1705d93cb4 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:33+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:54+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po index 3d212c989d..5e64c1d328 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index 204061040c..c36b61b24a 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index 4e299cf4a1..b524e93ceb 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index 23e669ec70..073b2c7971 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index e40d8f67b8..353d3e9830 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index 979933e3cd..586203cf4c 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index 38ca2a2f0d..e21eca7b64 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:44+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index b0e83de4ce..64e11a4e52 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 28816b59d1..85da65f5ed 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index 8cc75b802d..c2cc41abb1 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index bedafcdb94..bedec1c7d9 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index ab1a89eb67..16996f8185 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:34+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index b8e6174a45..bd171f27b4 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" @@ -24,6 +24,8 @@ msgstr "" #, php-format msgid "Cannot register; maximum number of users (%d) reached." msgstr "" +"Регистрацијата не може да се изврши. Достигнат е максималниот број на " +"корисници (%d)." msgid "Limit the number of users who can register." msgstr "Ограничување на бројот на корисници што можат да се регистрираат." diff --git a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po index 5bd9ba40dd..e129a850a3 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index be44b2f336..7626d4606e 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index d6a6da34e6..3722dfacab 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index 00ae889baa..9bf131778c 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index b41c1dba15..4f229fae95 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index 5081e8c2b9..d28c081ae8 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index e75af41faf..71767e40ee 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index 30e7b9dab1..ceb70ec369 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index 8a812ef456..66a795ea0e 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" -"PO-Revision-Date: 2011-04-01 20:50:35+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:40:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index 86250359ca..bc83296655 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" +"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"PO-Revision-Date: 2011-04-03 13:22:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:13+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" @@ -23,17 +23,19 @@ msgstr "" #, php-format msgid "Edit the article for #%s on WikiHashtags" -msgstr "" +msgstr "Уредете ја статијата за #%s на WikiHashtags" msgid "Edit" -msgstr "" +msgstr "Уреди" msgid "Shared under the terms of the GNU Free Documentation License" msgstr "" +"Споделувањето подлежи на условите на ГНУ-овата лиценца за слободна " +"документација" #, php-format msgid "Start the article for #%s on WikiHashtags" -msgstr "" +msgstr "Започнете ја статијата за #%s на WikiHashtags" msgid "" "Gets hashtag descriptions from \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-01 21:07:19+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -30,7 +30,7 @@ msgstr "XMPP/Jabber/GTalk" #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" -msgstr "" +msgstr "[%s]" msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" From 7bd594e9d3f479ed0f1b7be9e872c4ce9540701c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Apr 2011 22:08:50 +0200 Subject: [PATCH 41/52] Use _m() instead of ngettext(). --- lib/applicationeditform.php | 2 +- lib/command.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/applicationeditform.php b/lib/applicationeditform.php index ec6702cd64..dda61dbb69 100644 --- a/lib/applicationeditform.php +++ b/lib/applicationeditform.php @@ -198,7 +198,7 @@ class ApplicationEditForm extends Form if ($maxDesc > 0) { // TRANS: Form input field instructions. // TRANS: %d is the number of available characters for the description. - $descInstr = sprintf(ngettext('Describe your application in %d character','Describe your application in %d characters',$maxDesc), + $descInstr = sprintf(_m('Describe your application in %d character','Describe your application in %d characters',$maxDesc), $maxDesc); } else { // TRANS: Form input field instructions. diff --git a/lib/command.php b/lib/command.php index aaad577761..abc9e22b45 100644 --- a/lib/command.php +++ b/lib/command.php @@ -824,7 +824,7 @@ class SubscriptionsCommand extends Command // TRANS: Text shown after requesting other users a user is subscribed to. // TRANS: This message supports plural forms. This message is followed by a // TRANS: hard coded space and a comma separated list of subscribed users. - $out = ngettext('You are subscribed to this person:', + $out = _m('You are subscribed to this person:', 'You are subscribed to these people:', count($nicknames)); $out .= ' '; @@ -851,7 +851,7 @@ class SubscribersCommand extends Command // TRANS: Text shown after requesting other users that are subscribed to a user (followers). // TRANS: This message supports plural forms. This message is followed by a // TRANS: hard coded space and a comma separated list of subscribing users. - $out = ngettext('This person is subscribed to you:', + $out = _m('This person is subscribed to you:', 'These people are subscribed to you:', count($nicknames)); $out .= ' '; @@ -878,7 +878,7 @@ class GroupsCommand extends Command // TRANS: Text shown after requesting groups a user is subscribed to. // TRANS: This message supports plural forms. This message is followed by a // TRANS: hard coded space and a comma separated list of subscribed groups. - $out = ngettext('You are a member of this group:', + $out = _m('You are a member of this group:', 'You are a member of these groups:', count($nicknames)); $out.=implode(', ',$groups); From 436a02959ceedbf031a40a8b2435b09dfdd8661b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Apr 2011 22:44:41 +0200 Subject: [PATCH 42/52] Tabs to spaces. --- actions/apiblockcreate.php | 2 +- actions/emailsettings.php | 141 ++++++++++++++++++------------------- 2 files changed, 71 insertions(+), 72 deletions(-) diff --git a/actions/apiblockcreate.php b/actions/apiblockcreate.php index 6942a53bb8..766d91bd41 100644 --- a/actions/apiblockcreate.php +++ b/actions/apiblockcreate.php @@ -92,7 +92,7 @@ class ApiBlockCreateAction extends ApiAuthAction } if (empty($this->user) || empty($this->other)) { - // TRANS: Client error displayed when trying to block a non-existing user or a user from another site. + // TRANS: Client error displayed when trying to block a non-existing user or a user from another site. $this->clientError(_('No such user.'), 404, $this->format); return; } diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 6780928157..b3bd6d104c 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -207,45 +207,45 @@ class EmailsettingsAction extends SettingsAction $this->elementStart('ul', 'form_data'); if (Event::handle('StartEmailFormData', array($this))) { - $this->elementStart('li'); - $this->checkbox('emailnotifysub', - // TRANS: Checkbox label in e-mail preferences form. - _('Send me notices of new subscriptions through email.'), - $user->emailnotifysub); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailnotifyfav', - // TRANS: Checkbox label in e-mail preferences form. - _('Send me email when someone '. - 'adds my notice as a favorite.'), - $user->emailnotifyfav); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailnotifymsg', - // TRANS: Checkbox label in e-mail preferences form. - _('Send me email when someone sends me a private message.'), - $user->emailnotifymsg); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailnotifyattn', - // TRANS: Checkbox label in e-mail preferences form. - _('Send me email when someone sends me an "@-reply".'), - $user->emailnotifyattn); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailnotifynudge', - // TRANS: Checkbox label in e-mail preferences form. - _('Allow friends to nudge me and send me an email.'), - $user->emailnotifynudge); - $this->elementEnd('li'); - $this->elementStart('li'); - $this->checkbox('emailmicroid', - // TRANS: Checkbox label in e-mail preferences form. - _('Publish a MicroID for my email address.'), - $user->emailmicroid); - $this->elementEnd('li'); - Event::handle('EndEmailFormData', array($this)); - } + $this->elementStart('li'); + $this->checkbox('emailnotifysub', + // TRANS: Checkbox label in e-mail preferences form. + _('Send me notices of new subscriptions through email.'), + $user->emailnotifysub); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailnotifyfav', + // TRANS: Checkbox label in e-mail preferences form. + _('Send me email when someone '. + 'adds my notice as a favorite.'), + $user->emailnotifyfav); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailnotifymsg', + // TRANS: Checkbox label in e-mail preferences form. + _('Send me email when someone sends me a private message.'), + $user->emailnotifymsg); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailnotifyattn', + // TRANS: Checkbox label in e-mail preferences form. + _('Send me email when someone sends me an "@-reply".'), + $user->emailnotifyattn); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailnotifynudge', + // TRANS: Checkbox label in e-mail preferences form. + _('Allow friends to nudge me and send me an email.'), + $user->emailnotifynudge); + $this->elementEnd('li'); + $this->elementStart('li'); + $this->checkbox('emailmicroid', + // TRANS: Checkbox label in e-mail preferences form. + _('Publish a MicroID for my email address.'), + $user->emailmicroid); + $this->elementEnd('li'); + Event::handle('EndEmailFormData', array($this)); + } $this->elementEnd('ul'); // TRANS: Button label to save e-mail preferences. $this->submit('save', _m('BUTTON','Save')); @@ -319,48 +319,47 @@ class EmailsettingsAction extends SettingsAction */ function savePreferences() { - $user = common_current_user(); + $user = common_current_user(); - if (Event::handle('StartEmailSaveForm', array($this, &$user))) { + if (Event::handle('StartEmailSaveForm', array($this, &$user))) { + $emailnotifysub = $this->boolean('emailnotifysub'); + $emailnotifyfav = $this->boolean('emailnotifyfav'); + $emailnotifymsg = $this->boolean('emailnotifymsg'); + $emailnotifynudge = $this->boolean('emailnotifynudge'); + $emailnotifyattn = $this->boolean('emailnotifyattn'); + $emailmicroid = $this->boolean('emailmicroid'); + $emailpost = $this->boolean('emailpost'); - $emailnotifysub = $this->boolean('emailnotifysub'); - $emailnotifyfav = $this->boolean('emailnotifyfav'); - $emailnotifymsg = $this->boolean('emailnotifymsg'); - $emailnotifynudge = $this->boolean('emailnotifynudge'); - $emailnotifyattn = $this->boolean('emailnotifyattn'); - $emailmicroid = $this->boolean('emailmicroid'); - $emailpost = $this->boolean('emailpost'); + assert(!is_null($user)); // should already be checked - assert(!is_null($user)); // should already be checked + $user->query('BEGIN'); - $user->query('BEGIN'); + $original = clone($user); - $original = clone($user); + $user->emailnotifysub = $emailnotifysub; + $user->emailnotifyfav = $emailnotifyfav; + $user->emailnotifymsg = $emailnotifymsg; + $user->emailnotifynudge = $emailnotifynudge; + $user->emailnotifyattn = $emailnotifyattn; + $user->emailmicroid = $emailmicroid; + $user->emailpost = $emailpost; - $user->emailnotifysub = $emailnotifysub; - $user->emailnotifyfav = $emailnotifyfav; - $user->emailnotifymsg = $emailnotifymsg; - $user->emailnotifynudge = $emailnotifynudge; - $user->emailnotifyattn = $emailnotifyattn; - $user->emailmicroid = $emailmicroid; - $user->emailpost = $emailpost; + $result = $user->update($original); - $result = $user->update($original); + if ($result === false) { + common_log_db_error($user, 'UPDATE', __FILE__); + // TRANS: Server error thrown on database error updating e-mail preferences. + $this->serverError(_('Could not update user.')); + return; + } - if ($result === false) { - common_log_db_error($user, 'UPDATE', __FILE__); - // TRANS: Server error thrown on database error updating e-mail preferences. - $this->serverError(_('Could not update user.')); - return; - } + $user->query('COMMIT'); - $user->query('COMMIT'); + Event::handle('EndEmailSaveForm', array($this)); - Event::handle('EndEmailSaveForm', array($this)); - - // TRANS: Confirmation message for successful e-mail preferences save. - $this->showForm(_('Email preferences saved.'), true); - } + // TRANS: Confirmation message for successful e-mail preferences save. + $this->showForm(_('Email preferences saved.'), true); + } } /** From 18185b2237031e0931d76bb989f87f6c250de2a6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Apr 2011 23:02:24 +0200 Subject: [PATCH 43/52] Tabs to spaces. --- lib/apioauthstore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 409f56100f..ac53ec210c 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -66,7 +66,7 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore $id = $app->insert(); if (!$id) { - // TRANS: Server error displayed when trying to create an anynymous OAuth application. + // TRANS: Server error displayed when trying to create an anynymous OAuth application. $this->serverError(_("Could not create anonymous OAuth application.")); } } From 9a6ee5e859635bd7acfbdf1e1994f665d39455af Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 3 Apr 2011 23:47:46 +0200 Subject: [PATCH 44/52] Update translator documentation. --- actions/avatarsettings.php | 1 + actions/cancelsubscription.php | 1 + actions/deleteapplication.php | 1 + actions/deletenotice.php | 1 + actions/editapplication.php | 1 + actions/emailsettings.php | 1 + actions/favor.php | 1 + actions/geocode.php | 1 + actions/groupblock.php | 1 + actions/groupunblock.php | 1 + actions/imsettings.php | 1 + actions/invite.php | 1 + actions/makeadmin.php | 1 + actions/newapplication.php | 1 + actions/newmessage.php | 1 + actions/newnotice.php | 1 + actions/nudge.php | 1 + actions/oauthconnectionssettings.php | 1 + actions/passwordsettings.php | 1 + actions/pluginenable.php | 1 + actions/register.php | 1 + actions/remotesubscribe.php | 1 + actions/repeat.php | 1 + actions/showapplication.php | 1 + actions/smssettings.php | 1 + actions/subedit.php | 1 + actions/tagother.php | 1 + actions/unsubscribe.php | 1 + actions/urlsettings.php | 1 + actions/userauthorization.php | 1 + lib/designsettings.php | 1 + 31 files changed, 31 insertions(+) diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index d9542a39c8..7cc55e1e3f 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -277,6 +277,7 @@ class AvatarsettingsAction extends SettingsAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/cancelsubscription.php b/actions/cancelsubscription.php index 0cd922ff70..30726e0d04 100644 --- a/actions/cancelsubscription.php +++ b/actions/cancelsubscription.php @@ -71,6 +71,7 @@ class CancelsubscriptionAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. ' . 'Try again, please.')); return; diff --git a/actions/deleteapplication.php b/actions/deleteapplication.php index 9f9ac18971..8c3b8e0ba7 100644 --- a/actions/deleteapplication.php +++ b/actions/deleteapplication.php @@ -99,6 +99,7 @@ class DeleteapplicationAction extends Action // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); return; } diff --git a/actions/deletenotice.php b/actions/deletenotice.php index c997bb756a..9032de8974 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -174,6 +174,7 @@ class DeletenoticeAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. ' . 'Try again, please.')); return; diff --git a/actions/editapplication.php b/actions/editapplication.php index 4e67d9e57b..02fae3eb49 100644 --- a/actions/editapplication.php +++ b/actions/editapplication.php @@ -128,6 +128,7 @@ class EditApplicationAction extends OwnerDesignAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); return; } diff --git a/actions/emailsettings.php b/actions/emailsettings.php index b3bd6d104c..d515715eda 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -289,6 +289,7 @@ class EmailsettingsAction extends SettingsAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->show_form(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/favor.php b/actions/favor.php index 61db235738..494648f671 100644 --- a/actions/favor.php +++ b/actions/favor.php @@ -72,6 +72,7 @@ class FavorAction extends Action $notice = Notice::staticGet($id); $token = $this->trimmed('token-'.$notice->id); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/geocode.php b/actions/geocode.php index 123a839f56..9e208914c1 100644 --- a/actions/geocode.php +++ b/actions/geocode.php @@ -52,6 +52,7 @@ class GeocodeAction extends Action parent::prepare($args); $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. '. 'Try again, please.')); } diff --git a/actions/groupblock.php b/actions/groupblock.php index d426563d8c..3f8cb90e9e 100644 --- a/actions/groupblock.php +++ b/actions/groupblock.php @@ -62,6 +62,7 @@ class GroupblockAction extends RedirectingAction } $token = $this->trimmed('token'); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/groupunblock.php b/actions/groupunblock.php index de0af59821..7b92e83f71 100644 --- a/actions/groupunblock.php +++ b/actions/groupunblock.php @@ -62,6 +62,7 @@ class GroupunblockAction extends Action } $token = $this->trimmed('token'); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/imsettings.php b/actions/imsettings.php index b887fdb231..e809981a3f 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -240,6 +240,7 @@ class ImsettingsAction extends SettingsAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/invite.php b/actions/invite.php index bbb6b26c11..7a1f8b3f5b 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -57,6 +57,7 @@ class InviteAction extends CurrentUserDesignAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/makeadmin.php b/actions/makeadmin.php index 3613e1eb70..0ca537f755 100644 --- a/actions/makeadmin.php +++ b/actions/makeadmin.php @@ -64,6 +64,7 @@ class MakeadminAction extends RedirectingAction } $token = $this->trimmed('token'); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/newapplication.php b/actions/newapplication.php index a2c4f58b8d..ca5d902a26 100644 --- a/actions/newapplication.php +++ b/actions/newapplication.php @@ -109,6 +109,7 @@ class NewApplicationAction extends OwnerDesignAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); return; } diff --git a/actions/newmessage.php b/actions/newmessage.php index 8a03aebfac..8f185b55b5 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -137,6 +137,7 @@ class NewmessageAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. ' . 'Try again, please.')); return; diff --git a/actions/newnotice.php b/actions/newnotice.php index f48134c3b2..3b7cabaced 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -101,6 +101,7 @@ class NewnoticeAction extends Action // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. '. 'Try again, please.')); } diff --git a/actions/nudge.php b/actions/nudge.php index 61874c7505..401285b9f3 100644 --- a/actions/nudge.php +++ b/actions/nudge.php @@ -78,6 +78,7 @@ class NudgeAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return; } diff --git a/actions/oauthconnectionssettings.php b/actions/oauthconnectionssettings.php index bcef773ac6..5c66730931 100644 --- a/actions/oauthconnectionssettings.php +++ b/actions/oauthconnectionssettings.php @@ -132,6 +132,7 @@ class OauthconnectionssettingsAction extends SettingsAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php index d9a6d32ae0..3ac1a3f946 100644 --- a/actions/passwordsettings.php +++ b/actions/passwordsettings.php @@ -143,6 +143,7 @@ class PasswordsettingsAction extends SettingsAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/pluginenable.php b/actions/pluginenable.php index 0f2b4ba670..4caa6baf37 100644 --- a/actions/pluginenable.php +++ b/actions/pluginenable.php @@ -84,6 +84,7 @@ class PluginEnableAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.'. ' Try again, please.')); return false; diff --git a/actions/register.php b/actions/register.php index 084e3e6f1d..d8f752d2bb 100644 --- a/actions/register.php +++ b/actions/register.php @@ -160,6 +160,7 @@ class RegisterAction extends Action if (Event::handle('StartRegistrationTry', array($this))) { $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index 66cee65cab..5514b9a98c 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -74,6 +74,7 @@ class RemotesubscribeAction extends Action /* Use a session token for CSRF protection. */ $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/repeat.php b/actions/repeat.php index 44c57456fa..333e1cd02e 100644 --- a/actions/repeat.php +++ b/actions/repeat.php @@ -76,6 +76,7 @@ class RepeatAction extends Action $token = $this->trimmed('token-'.$id); if (empty($token) || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. Try again, please.')); return false; } diff --git a/actions/showapplication.php b/actions/showapplication.php index 38e6f1953e..c9cdbf1848 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -113,6 +113,7 @@ class ShowApplicationAction extends OwnerDesignAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); return; } diff --git a/actions/smssettings.php b/actions/smssettings.php index 1545679c17..d151ff45d6 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -246,6 +246,7 @@ class SmssettingsAction extends SettingsAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/subedit.php b/actions/subedit.php index 3b77aff584..f8b22d72b9 100644 --- a/actions/subedit.php +++ b/actions/subedit.php @@ -37,6 +37,7 @@ class SubeditAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. '. 'Try again, please.')); return false; diff --git a/actions/tagother.php b/actions/tagother.php index 518c707201..6d63ea5b5e 100644 --- a/actions/tagother.php +++ b/actions/tagother.php @@ -153,6 +153,7 @@ class TagotherAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/unsubscribe.php b/actions/unsubscribe.php index 8f90619f64..73661a4f16 100644 --- a/actions/unsubscribe.php +++ b/actions/unsubscribe.php @@ -66,6 +66,7 @@ class UnsubscribeAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token. ' . 'Try again, please.')); return; diff --git a/actions/urlsettings.php b/actions/urlsettings.php index aaaa1b78dd..02a895955d 100644 --- a/actions/urlsettings.php +++ b/actions/urlsettings.php @@ -167,6 +167,7 @@ class UrlsettingsAction extends SettingsAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; diff --git a/actions/userauthorization.php b/actions/userauthorization.php index e58a096bac..fd01cd7c02 100644 --- a/actions/userauthorization.php +++ b/actions/userauthorization.php @@ -50,6 +50,7 @@ class UserauthorizationAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { $srv = $this->getStoredParams(); + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm($srv->getRemoteUser(), _('There was a problem ' . 'with your session token. Try again, ' . 'please.')); diff --git a/lib/designsettings.php b/lib/designsettings.php index eb3a5908e6..e88bbf88cf 100644 --- a/lib/designsettings.php +++ b/lib/designsettings.php @@ -119,6 +119,7 @@ class DesignSettingsAction extends SettingsAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; From 84a2fb44b9f6f2b60124b651bb1d72496e81b5f0 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 4 Apr 2011 00:12:52 +0200 Subject: [PATCH 45/52] Add/update translator documentation. --- actions/apiaccountratelimitstatus.php | 1 + actions/apiaccountupdatedeliverydevice.php | 2 +- actions/apiaccountupdateprofile.php | 2 +- actions/apiaccountupdateprofilebackgroundimage.php | 2 +- actions/apiaccountupdateprofilecolors.php | 2 +- actions/apiaccountverifycredentials.php | 2 +- actions/apidirectmessage.php | 2 +- actions/apifavoritecreate.php | 2 +- actions/apifavoritedestroy.php | 2 +- actions/apifriendshipscreate.php | 2 +- actions/apifriendshipsdestroy.php | 2 +- actions/apifriendshipsshow.php | 2 +- actions/apigroupcreate.php | 2 +- actions/apigroupismember.php | 2 +- actions/apigroupjoin.php | 2 +- actions/apigroupleave.php | 2 +- actions/apigrouplist.php | 3 ++- actions/apigrouplistall.php | 2 +- actions/apigroupmembership.php | 2 +- actions/apigroupprofileupdate.php | 5 +++-- actions/apigroupshow.php | 2 +- actions/apihelptest.php | 2 +- actions/apistatusesdestroy.php | 2 +- actions/apistatusesretweets.php | 2 +- actions/apistatusesshow.php | 2 +- actions/apistatusesupdate.php | 4 ++-- actions/apistatusnetconfig.php | 2 +- actions/apistatusnetversion.php | 2 +- actions/apisubscriptions.php | 2 +- actions/apitimelinefavorites.php | 2 +- actions/apitimelinefriends.php | 4 +++- actions/apitimelinehome.php | 2 +- actions/apitimelinementions.php | 2 +- actions/apitimelinepublic.php | 2 +- actions/apitimelineretweetedtome.php | 2 +- actions/apitimelineretweetsofme.php | 4 +++- actions/apitimelinetag.php | 2 +- actions/apitimelineuser.php | 2 +- actions/apiusershow.php | 2 +- actions/newnotice.php | 2 ++ actions/register.php | 1 + actions/userrss.php | 2 ++ actions/userxrd.php | 1 + 43 files changed, 53 insertions(+), 40 deletions(-) diff --git a/actions/apiaccountratelimitstatus.php b/actions/apiaccountratelimitstatus.php index 8d7f89eadc..8490e2965c 100644 --- a/actions/apiaccountratelimitstatus.php +++ b/actions/apiaccountratelimitstatus.php @@ -66,6 +66,7 @@ class ApiAccountRateLimitStatusAction extends ApiBareAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountupdatedeliverydevice.php b/actions/apiaccountupdatedeliverydevice.php index a36806b216..57e4fbfa00 100644 --- a/actions/apiaccountupdatedeliverydevice.php +++ b/actions/apiaccountupdatedeliverydevice.php @@ -88,7 +88,7 @@ class ApiAccountUpdateDeliveryDeviceAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed handling a non-existing API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountupdateprofile.php b/actions/apiaccountupdateprofile.php index d0b9abe9b7..a572131f18 100644 --- a/actions/apiaccountupdateprofile.php +++ b/actions/apiaccountupdateprofile.php @@ -90,7 +90,7 @@ class ApiAccountUpdateProfileAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountupdateprofilebackgroundimage.php b/actions/apiaccountupdateprofilebackgroundimage.php index f26c30198d..36eaa6c411 100644 --- a/actions/apiaccountupdateprofilebackgroundimage.php +++ b/actions/apiaccountupdateprofilebackgroundimage.php @@ -88,7 +88,7 @@ class ApiAccountUpdateProfileBackgroundImageAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountupdateprofilecolors.php b/actions/apiaccountupdateprofilecolors.php index 4c102c4090..621b05b0d9 100644 --- a/actions/apiaccountupdateprofilecolors.php +++ b/actions/apiaccountupdateprofilecolors.php @@ -111,7 +111,7 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method updating profile colours. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apiaccountverifycredentials.php b/actions/apiaccountverifycredentials.php index 26d4e2fc5c..359939b0cc 100644 --- a/actions/apiaccountverifycredentials.php +++ b/actions/apiaccountverifycredentials.php @@ -64,7 +64,7 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { - // TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); return; } diff --git a/actions/apidirectmessage.php b/actions/apidirectmessage.php index e072e27b83..584decc747 100644 --- a/actions/apidirectmessage.php +++ b/actions/apidirectmessage.php @@ -153,7 +153,7 @@ class ApiDirectMessageAction extends ApiAuthAction $this->showJsonDirectMessages(); break; default: - // TRANS: Client error given when an API method was not found (404). + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php index b2f6266ebf..b890d4af69 100644 --- a/actions/apifavoritecreate.php +++ b/actions/apifavoritecreate.php @@ -94,7 +94,7 @@ class ApiFavoriteCreateAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apifavoritedestroy.php b/actions/apifavoritedestroy.php index f86c985dc0..db121ac882 100644 --- a/actions/apifavoritedestroy.php +++ b/actions/apifavoritedestroy.php @@ -94,7 +94,7 @@ class ApiFavoriteDestroyAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apifriendshipscreate.php b/actions/apifriendshipscreate.php index 89557f8392..9932809818 100644 --- a/actions/apifriendshipscreate.php +++ b/actions/apifriendshipscreate.php @@ -95,7 +95,7 @@ class ApiFriendshipsCreateAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apifriendshipsdestroy.php b/actions/apifriendshipsdestroy.php index a5dff08bab..1534aa799f 100644 --- a/actions/apifriendshipsdestroy.php +++ b/actions/apifriendshipsdestroy.php @@ -95,7 +95,7 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apifriendshipsshow.php b/actions/apifriendshipsshow.php index 6b069c4fcf..1eaca49f0e 100644 --- a/actions/apifriendshipsshow.php +++ b/actions/apifriendshipsshow.php @@ -120,7 +120,7 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { - // TRANS: Client error displayed trying to execute an unknown API method showing friendship. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404); return; } diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php index d01504bc80..8615bcff7e 100644 --- a/actions/apigroupcreate.php +++ b/actions/apigroupcreate.php @@ -134,7 +134,7 @@ class ApiGroupCreateAction extends ApiAuthAction break; default: $this->clientError( - // TRANS: Client error given when an API method was not found (404). + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigroupismember.php b/actions/apigroupismember.php index 8d31c65ddb..13ed9e1fbf 100644 --- a/actions/apigroupismember.php +++ b/actions/apigroupismember.php @@ -111,7 +111,7 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method showing group membership. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 400, $this->format diff --git a/actions/apigroupjoin.php b/actions/apigroupjoin.php index 7124a4b0f0..6f3df0d8cd 100644 --- a/actions/apigroupjoin.php +++ b/actions/apigroupjoin.php @@ -144,7 +144,7 @@ class ApiGroupJoinAction extends ApiAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method joining a group. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php index 35a4e04d78..9d2825b00e 100644 --- a/actions/apigroupleave.php +++ b/actions/apigroupleave.php @@ -134,7 +134,7 @@ class ApiGroupLeaveAction extends ApiAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method leaving a group. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigrouplist.php b/actions/apigrouplist.php index f80fbce932..c7518ca129 100644 --- a/actions/apigrouplist.php +++ b/actions/apigrouplist.php @@ -67,6 +67,7 @@ class ApiGroupListAction extends ApiBareAuthAction $this->user = $this->getTargetUser(null); if (empty($this->user)) { + // TRANS: Client error displayed when user not found for an action. $this->clientError(_('No such user.'), 404, $this->format); return false; } @@ -130,7 +131,7 @@ class ApiGroupListAction extends ApiBareAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method checking group membership. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigrouplistall.php b/actions/apigrouplistall.php index d05baa0992..65ff9ae59a 100644 --- a/actions/apigrouplistall.php +++ b/actions/apigrouplistall.php @@ -116,7 +116,7 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php index 939d22d757..7ad8fb767e 100644 --- a/actions/apigroupmembership.php +++ b/actions/apigroupmembership.php @@ -101,7 +101,7 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction break; default: $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method showing group membership. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apigroupprofileupdate.php b/actions/apigroupprofileupdate.php index 9a629a47d7..379e01a428 100644 --- a/actions/apigroupprofileupdate.php +++ b/actions/apigroupprofileupdate.php @@ -85,6 +85,7 @@ class ApiGroupProfileUpdateAction extends ApiAuthAction if ($_SERVER['REQUEST_METHOD'] != 'POST') { $this->clientError( + // TRANS: Client error message. POST is a HTTP command. It should not be translated. _('This method requires a POST.'), 400, $this->format ); @@ -93,7 +94,7 @@ class ApiGroupProfileUpdateAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed when using an unsupported API format. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format @@ -211,7 +212,7 @@ class ApiGroupProfileUpdateAction extends ApiAuthAction $this->showSingleJsonGroup($this->group); break; default: - // TRANS: Client error displayed when using an unsupported API format. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404, $this->format); break; } diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index 471aa141f9..a7385ffaaf 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -110,7 +110,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction $this->showSingleJsonGroup($this->group); break; default: - // TRANS: Client error displayed trying to execute an unknown API method showing a group. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404, $this->format); break; } diff --git a/actions/apihelptest.php b/actions/apihelptest.php index fbe5f12784..1bbbe572bf 100644 --- a/actions/apihelptest.php +++ b/actions/apihelptest.php @@ -80,7 +80,7 @@ class ApiHelpTestAction extends ApiPrivateAuthAction $this->endDocument('json'); } else { $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apistatusesdestroy.php b/actions/apistatusesdestroy.php index d73e574b3c..b4a8870faa 100644 --- a/actions/apistatusesdestroy.php +++ b/actions/apistatusesdestroy.php @@ -97,7 +97,7 @@ class ApiStatusesDestroyAction extends ApiAuthAction if (!in_array($this->format, array('xml', 'json'))) { $this->clientError( - // TRANS: Client error displayed trying to execute an unknown API method deleting a status. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404 ); diff --git a/actions/apistatusesretweets.php b/actions/apistatusesretweets.php index cc7caee19d..7220196836 100644 --- a/actions/apistatusesretweets.php +++ b/actions/apistatusesretweets.php @@ -106,7 +106,7 @@ class ApiStatusesRetweetsAction extends ApiAuthAction $this->showJsonTimeline($strm); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apistatusesshow.php b/actions/apistatusesshow.php index de4c4065c1..13cc88c2c7 100644 --- a/actions/apistatusesshow.php +++ b/actions/apistatusesshow.php @@ -101,7 +101,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction parent::handle($args); if (!in_array($this->format, array('xml', 'json', 'atom'))) { - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404); return; } diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index 5773bdc2e8..b0f3527160 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -239,8 +239,8 @@ class ApiStatusesUpdateAction extends ApiAuthAction $this->clientError( sprintf( - // TRANS: Client error displayed when the parameter "status" is missing. - // TRANS: %d is the maximum number of character for a notice. + // TRANS: Client error displayed exceeding the maximum notice length. + // TRANS: %d is the maximum length for a notice. _m('That\'s too long. Maximum notice size is %d character.', 'That\'s too long. Maximum notice size is %d characters.', Notice::maxContent()), diff --git a/actions/apistatusnetconfig.php b/actions/apistatusnetconfig.php index b34c6cc544..7cd7c5ed6c 100644 --- a/actions/apistatusnetconfig.php +++ b/actions/apistatusnetconfig.php @@ -135,7 +135,7 @@ class ApiStatusnetConfigAction extends ApiAction break; default: $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apistatusnetversion.php b/actions/apistatusnetversion.php index bc2babc3f2..3a7b150cab 100644 --- a/actions/apistatusnetversion.php +++ b/actions/apistatusnetversion.php @@ -87,7 +87,7 @@ class ApiStatusnetVersionAction extends ApiPrivateAuthAction break; default: $this->clientError( - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 404, $this->format diff --git a/actions/apisubscriptions.php b/actions/apisubscriptions.php index fc0a2638b6..84731ac00f 100644 --- a/actions/apisubscriptions.php +++ b/actions/apisubscriptions.php @@ -105,7 +105,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction parent::handle($args); if (!in_array($this->format, array('xml', 'json'))) { - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); return; } diff --git a/actions/apitimelinefavorites.php b/actions/apitimelinefavorites.php index 36fc3089f5..2c962b450a 100644 --- a/actions/apitimelinefavorites.php +++ b/actions/apitimelinefavorites.php @@ -178,7 +178,7 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index 0e356bb18b..00eb4de502 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -204,6 +204,8 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction $profile = $this->user->getProfile(); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); $sitename = common_config('site', 'name'); + // TRANS: Title of API timeline for a user and friends. + // TRANS: %s is a username. $title = sprintf(_("%s and friends"), $this->user->nickname); $taguribase = TagURI::base(); $id = "tag:$taguribase:FriendsTimeline:" . $this->user->id; @@ -272,7 +274,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelinehome.php b/actions/apitimelinehome.php index 023c9698a1..96642cbfab 100644 --- a/actions/apitimelinehome.php +++ b/actions/apitimelinehome.php @@ -177,7 +177,7 @@ class ApiTimelineHomeAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelinementions.php b/actions/apitimelinementions.php index 2857bd41ea..ecd2a1a0e6 100644 --- a/actions/apitimelinementions.php +++ b/actions/apitimelinementions.php @@ -178,7 +178,7 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelinepublic.php b/actions/apitimelinepublic.php index 353973b653..a786aa15cc 100644 --- a/actions/apitimelinepublic.php +++ b/actions/apitimelinepublic.php @@ -243,7 +243,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelineretweetedtome.php b/actions/apitimelineretweetedtome.php index 628dc40247..ef943f4f88 100644 --- a/actions/apitimelineretweetedtome.php +++ b/actions/apitimelineretweetedtome.php @@ -146,7 +146,7 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelineretweetsofme.php b/actions/apitimelineretweetsofme.php index aec6877f15..d38e730ac6 100644 --- a/actions/apitimelineretweetsofme.php +++ b/actions/apitimelineretweetsofme.php @@ -101,6 +101,8 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction $profile = $this->auth_user->getProfile(); $subtitle = sprintf( + // TRANS: Subtitle of API time with retweets of me. + // TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. _('%1$s notices that %2$s / %3$s has repeated.'), $sitename, $this->auth_user->nickname, $profile->getBestName() ); @@ -143,7 +145,7 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), 404); break; } diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php index 5fa76d0cd0..6c3b135ed9 100644 --- a/actions/apitimelinetag.php +++ b/actions/apitimelinetag.php @@ -161,7 +161,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php index 3fe73c691c..b0681c191a 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -213,7 +213,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction $this->raw($doc->asString()); break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } diff --git a/actions/apiusershow.php b/actions/apiusershow.php index fbd4d60598..ab1bfb9c9c 100644 --- a/actions/apiusershow.php +++ b/actions/apiusershow.php @@ -96,7 +96,7 @@ class ApiUserShowAction extends ApiPrivateAuthAction } if (!in_array($this->format, array('xml', 'json'))) { - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); return; } diff --git a/actions/newnotice.php b/actions/newnotice.php index 3b7cabaced..97282e215d 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -181,6 +181,8 @@ class NewnoticeAction extends Action if (Notice::contentTooLong($content_shortened)) { $upload->delete(); + // TRANS: Client error displayed exceeding the maximum notice length. + // TRANS: %d is the maximum length for a notice. $this->clientError(sprintf(_m('Maximum notice size is %d character, including attachment URL.', 'Maximum notice size is %d characters, including attachment URL.', Notice::maxContent()), diff --git a/actions/register.php b/actions/register.php index d8f752d2bb..e5f3ef1080 100644 --- a/actions/register.php +++ b/actions/register.php @@ -212,6 +212,7 @@ class RegisterAction extends Action // TRANS: Form validation error displayed when trying to register with an invalid nickname. $this->showForm(_('Not a valid nickname.')); } else if ($this->emailExists($email)) { + // TRANS: Form validation error displayed when trying to register with an already registered e-mail address. $this->showForm(_('Email address already exists.')); } else if (!is_null($homepage) && (strlen($homepage) > 0) && !Validate::uri($homepage, diff --git a/actions/userrss.php b/actions/userrss.php index ba9f64f8ac..b60cc5e0c7 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -37,6 +37,7 @@ class UserrssAction extends Rss10Action $this->tag = $this->trimmed('tag'); if (!$this->user) { + // TRANS: Client error displayed when user not found for an action. $this->clientError(_('No such user.')); return false; } else { @@ -105,6 +106,7 @@ class UserrssAction extends Rss10Action $profile = $user->getProfile(); if (!$profile) { common_log_db_error($user, 'SELECT', __FILE__); + // TRANS: Server error displayed in user RSS when user does not have a matching profile. $this->serverError(_('User without matching profile.')); return null; } diff --git a/actions/userxrd.php b/actions/userxrd.php index 7691ff155b..1d888064d6 100644 --- a/actions/userxrd.php +++ b/actions/userxrd.php @@ -56,6 +56,7 @@ class UserxrdAction extends XrdAction } if (!$this->user) { + // TRANS: Client error displayed when user not found for an action. $this->clientError(_('No such user.'), 404); return false; } From 065a327a86409ff888cd2c555208aa0ef4d963f8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 3 Apr 2011 15:22:11 -0700 Subject: [PATCH 46/52] Add the root index.php to gettext .pot template file generation; some error messages and such in there weren't making it into the TranslateWiki.net database. --- scripts/update_po_templates.php | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/update_po_templates.php b/scripts/update_po_templates.php index a0ab5819d5..a5730e6d2f 100755 --- a/scripts/update_po_templates.php +++ b/scripts/update_po_templates.php @@ -43,6 +43,7 @@ xgettext \ --keyword="_m:1c,2,3,4t" \ --keyword="pgettext:1c,2" \ --keyword="npgettext:1c,2,3" \ + index.php \ actions/*.php \ classes/*.php \ lib/*.php \ From c642eb27717d98c835908db878990d90203e96a1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 3 Apr 2011 15:37:39 -0700 Subject: [PATCH 47/52] Switch some strings from heredoc to double-quotes so xgettext picks them up. --- lib/searchaction.php | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/lib/searchaction.php b/lib/searchaction.php index 7038424fab..030d2bb724 100644 --- a/lib/searchaction.php +++ b/lib/searchaction.php @@ -138,22 +138,18 @@ class SearchAction extends Action } function searchSuggestions($q) { - // @todo FIXME: i18n issue: This formatting does not make this string get picked up by gettext. - // TRANS: Standard search suggestions shown when a search does not give any results. - $message = _(<<elementStart('div', 'help instructions'); $this->raw(common_markup_to_html($message)); From 2dbdb0f185cb9b98097ce2f20bbd9430ab715203 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 4 Apr 2011 00:41:21 +0200 Subject: [PATCH 48/52] Translator documentation updated/added. i18n tweaks. Superfluous whitespace removed. YAY! All StatusNet core messages in the 1.0.x branch have been documented at this point in time!!! --- actions/cancelsubscription.php | 2 +- actions/deletenotice.php | 2 +- actions/disfavor.php | 2 +- actions/favor.php | 2 +- actions/groupblock.php | 2 +- actions/groupunblock.php | 2 +- actions/logout.php | 2 +- actions/makeadmin.php | 2 +- actions/newmessage.php | 2 +- actions/newnotice.php | 7 ++++--- actions/nudge.php | 2 +- actions/pluginenable.php | 2 +- actions/subedit.php | 2 +- actions/subscribe.php | 2 +- actions/tagother.php | 2 +- actions/unsubscribe.php | 2 +- index.php | 14 ++++++++++---- lib/adminpanelaction.php | 2 +- lib/deletegroupform.php | 10 ++-------- lib/joinform.php | 10 ++-------- lib/jsonsearchresultslist.php | 3 +-- lib/noticeform.php | 1 + lib/noticelist.php | 8 ++------ lib/noticelistitem.php | 1 + lib/primarynav.php | 11 ++++++----- lib/profileformaction.php | 2 +- lib/settingsaction.php | 1 + plugins/OpenID/finishaddopenid.php | 2 +- plugins/SearchSub/searchsubaction.php | 2 +- plugins/SubMirror/actions/basemirror.php | 1 + plugins/TagSub/tagsubaction.php | 2 +- plugins/UserFlag/adminprofileflag.php | 1 + 32 files changed, 52 insertions(+), 56 deletions(-) diff --git a/actions/cancelsubscription.php b/actions/cancelsubscription.php index 30726e0d04..226fd0822e 100644 --- a/actions/cancelsubscription.php +++ b/actions/cancelsubscription.php @@ -53,7 +53,7 @@ class CancelsubscriptionAction extends Action StatusNet::setApi(true); } if (!common_logged_in()) { - // TRANS: Client error displayed when trying to leave a group while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } diff --git a/actions/deletenotice.php b/actions/deletenotice.php index 9032de8974..e3690c51d4 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -48,7 +48,7 @@ class DeletenoticeAction extends Action $this->user = common_current_user(); if (!$this->user) { - // TRANS: Error message displayed trying to delete a notice while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. common_user_error(_('Not logged in.')); exit; } diff --git a/actions/disfavor.php b/actions/disfavor.php index 39598d60bf..e9fc17c5b7 100644 --- a/actions/disfavor.php +++ b/actions/disfavor.php @@ -57,7 +57,7 @@ class DisfavorAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to remove a favorite while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } diff --git a/actions/favor.php b/actions/favor.php index 494648f671..39d7735d00 100644 --- a/actions/favor.php +++ b/actions/favor.php @@ -58,7 +58,7 @@ class FavorAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } diff --git a/actions/groupblock.php b/actions/groupblock.php index 3f8cb90e9e..a597d47c29 100644 --- a/actions/groupblock.php +++ b/actions/groupblock.php @@ -56,7 +56,7 @@ class GroupblockAction extends RedirectingAction { parent::prepare($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to block a user from a group while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/actions/groupunblock.php b/actions/groupunblock.php index 7b92e83f71..c14ec04adc 100644 --- a/actions/groupunblock.php +++ b/actions/groupunblock.php @@ -56,7 +56,7 @@ class GroupunblockAction extends Action { parent::prepare($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to unblock a user from a group while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/actions/logout.php b/actions/logout.php index 8e903db221..567d808cd1 100644 --- a/actions/logout.php +++ b/actions/logout.php @@ -65,7 +65,7 @@ class LogoutAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to log out when not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); } else { if (Event::handle('StartLogout', array($this))) { diff --git a/actions/makeadmin.php b/actions/makeadmin.php index 0ca537f755..8ec8a7ce0c 100644 --- a/actions/makeadmin.php +++ b/actions/makeadmin.php @@ -58,7 +58,7 @@ class MakeadminAction extends RedirectingAction { parent::prepare($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to access the "make admin" page while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/actions/newmessage.php b/actions/newmessage.php index 8f185b55b5..dd7c5357ba 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -85,7 +85,7 @@ class NewmessageAction extends Action parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to create a new direct message while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.'), 403); } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { $this->saveNewMessage(); diff --git a/actions/newnotice.php b/actions/newnotice.php index 97282e215d..a8a5fa932f 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -64,7 +64,7 @@ class NewnoticeAction extends Action function title() { // TRANS: Page title for sending a new notice. - return _('New notice'); + return _m('TITLE','New notice'); } /** @@ -83,7 +83,7 @@ class NewnoticeAction extends Action function handle($args) { if (!common_logged_in()) { - // TRANS: Client error displayed trying to send a notice while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { // check for this before token since all POST and FILES data @@ -289,7 +289,8 @@ class NewnoticeAction extends Action { $this->startHTML('text/xml;charset=utf-8', true); $this->elementStart('head'); - $this->element('title', null, _('New notice')); + // TRANS: Title for form to send a new notice. + $this->element('title', null, _m('TITLE','New notice')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/actions/nudge.php b/actions/nudge.php index 401285b9f3..a44915a2d6 100644 --- a/actions/nudge.php +++ b/actions/nudge.php @@ -60,7 +60,7 @@ class NudgeAction extends Action parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to nudge a user without being logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } diff --git a/actions/pluginenable.php b/actions/pluginenable.php index 4caa6baf37..156a604cf0 100644 --- a/actions/pluginenable.php +++ b/actions/pluginenable.php @@ -95,7 +95,7 @@ class PluginEnableAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - // TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/actions/subedit.php b/actions/subedit.php index f8b22d72b9..7439904af0 100644 --- a/actions/subedit.php +++ b/actions/subedit.php @@ -29,7 +29,7 @@ class SubeditAction extends Action parent::prepare($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying a change a subscription while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/actions/subscribe.php b/actions/subscribe.php index fad153fc6e..b8c1cdd8f7 100644 --- a/actions/subscribe.php +++ b/actions/subscribe.php @@ -94,7 +94,7 @@ class SubscribeAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - // TRANS: Client error displayed trying to subscribe when not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/actions/tagother.php b/actions/tagother.php index 6d63ea5b5e..be1aae20eb 100644 --- a/actions/tagother.php +++ b/actions/tagother.php @@ -31,7 +31,7 @@ class TagotherAction extends Action { parent::prepare($args); if (!common_logged_in()) { - // TRANS: Client error displayed on user tag page when trying to add tags while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.'), 403); return false; } diff --git a/actions/unsubscribe.php b/actions/unsubscribe.php index 73661a4f16..ba9ecd8f00 100644 --- a/actions/unsubscribe.php +++ b/actions/unsubscribe.php @@ -48,7 +48,7 @@ class UnsubscribeAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed when trying to unsubscribe while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } diff --git a/index.php b/index.php index c8d4fbee9b..8617780be7 100644 --- a/index.php +++ b/index.php @@ -106,20 +106,22 @@ function handleError($error) $_cur = null; $msg = sprintf( + // TRANS: Database error message. _( - 'The database for %s isn\'t responding correctly, '. - 'so the site won\'t work properly. '. + 'The database for %1$s is not responding correctly, '. + 'so the site will not work properly. '. 'The site admins probably know about the problem, '. - 'but you can contact them at %s to make sure. '. + 'but you can contact them at %2$s to make sure. '. 'Otherwise, wait a few minutes and try again.' ), common_config('site', 'name'), common_config('site', 'email') ); } else { + // TRANS: Error message. $msg = _( 'An important error occured, probably related to email setup. '. - 'Check logfiles for more info..' + 'Check logfiles for more info.' ); } @@ -127,6 +129,7 @@ function handleError($error) $dac->showPage(); } catch (Exception $e) { + // TRANS: Error message. echo _('An error occurred.'); } exit(-1); @@ -250,6 +253,7 @@ function main() if (!_have_config()) { $msg = sprintf( + // TRANS: Error message displayed when there is no StatusNet configuration file. _( "No configuration file found. Try running ". "the installation program first." @@ -281,6 +285,7 @@ function main() $args = $r->map($path); if (!$args) { + // TRANS: Error message displayed when trying to access a non-existing page. $cac = new ClientErrorAction(_('Unknown page'), 404); $cac->showPage(); return; @@ -335,6 +340,7 @@ function main() $action_class = ucfirst($action).'Action'; if (!class_exists($action_class)) { + // TRANS: Error message displayed when trying to perform an undefined action. $cac = new ClientErrorAction(_('Unknown action'), 404); $cac->showPage(); } else { diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index 5e7e284b5c..5642c68d62 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -67,7 +67,7 @@ class AdminPanelAction extends Action // User must be logged in. if (!common_logged_in()) { - // TRANS: Client error message thrown when trying to access the admin panel while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return false; } diff --git a/lib/deletegroupform.php b/lib/deletegroupform.php index 9d8012d33b..65bc34812e 100644 --- a/lib/deletegroupform.php +++ b/lib/deletegroupform.php @@ -47,13 +47,11 @@ if (!defined('STATUSNET')) { * @see UnsubscribeForm * @fixme merge a bunch of this stuff with similar form types to reduce boilerplate */ - class DeleteGroupForm extends Form { /** * group for user to delete */ - var $group = null; /** @@ -62,7 +60,6 @@ class DeleteGroupForm extends Form * @param HTMLOutputter $out output channel * @param group $group group to join */ - function __construct($out=null, $group=null) { parent::__construct($out); @@ -75,7 +72,6 @@ class DeleteGroupForm extends Form * * @return string ID of the form */ - function id() { return 'group-delete-' . $this->group->id; @@ -86,7 +82,6 @@ class DeleteGroupForm extends Form * * @return string of the form class */ - function formClass() { return 'form_group_delete'; @@ -97,7 +92,6 @@ class DeleteGroupForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('deletegroup', @@ -115,9 +109,9 @@ class DeleteGroupForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Delete')); + // TRANS: Button text for deleting a group. + $this->out->submit('submit', _m('BUTTON','Delete')); } } diff --git a/lib/joinform.php b/lib/joinform.php index 0918133a55..a1a6189b08 100644 --- a/lib/joinform.php +++ b/lib/joinform.php @@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php'; * * @see UnsubscribeForm */ - class JoinForm extends Form { /** * group for user to join */ - var $group = null; /** @@ -61,7 +59,6 @@ class JoinForm extends Form * @param HTMLOutputter $out output channel * @param group $group group to join */ - function __construct($out=null, $group=null) { parent::__construct($out); @@ -74,7 +71,6 @@ class JoinForm extends Form * * @return string ID of the form */ - function id() { return 'group-join-' . $this->group->id; @@ -85,7 +81,6 @@ class JoinForm extends Form * * @return string of the form class */ - function formClass() { return 'form_group_join ajax'; @@ -96,7 +91,6 @@ class JoinForm extends Form * * @return string URL of the action */ - function action() { return common_local_url('joingroup', @@ -108,9 +102,9 @@ class JoinForm extends Form * * @return void */ - function formActions() { - $this->out->submit('submit', _('Join')); + // TRANS: Button text for joining a group. + $this->out->submit('submit', _m('BUTTON','Join')); } } diff --git a/lib/jsonsearchresultslist.php b/lib/jsonsearchresultslist.php index 80d4036aad..8bf3678d4f 100644 --- a/lib/jsonsearchresultslist.php +++ b/lib/jsonsearchresultslist.php @@ -256,9 +256,9 @@ class ResultItem * * @return string a fully rendered source of the Notice */ - function getSourceLink($source) { + // Gettext translations for the below source types are available. $source_name = _($source); switch ($source) { case 'web': @@ -277,5 +277,4 @@ class ResultItem return $source_name; } - } diff --git a/lib/noticeform.php b/lib/noticeform.php index ee4e2ca967..bc47dd1bd3 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -256,6 +256,7 @@ class NoticeForm extends Form 'data-api' => common_local_url('geocode'))); // @fixme checkbox method allows no way to change the id without changing the name + //// TRANS: Checkbox label to allow sharing geo location in notices. //$this->out->checkbox('notice_data-geo', _('Share my location'), true); $this->out->elementStart('label', 'notice_data-geo'); $this->out->element('input', array( diff --git a/lib/noticelist.php b/lib/noticelist.php index dbe2a0996f..273bf3a231 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -53,7 +53,6 @@ require_once INSTALLDIR.'/lib/attachmentlist.php'; * @see NoticeListItem * @see ProfileNoticeList */ - class NoticeList extends Widget { /** the current stream of notices being displayed. */ @@ -65,7 +64,6 @@ class NoticeList extends Widget * * @param Notice $notice stream of notices from DB_DataObject */ - function __construct($notice, $out=null) { parent::__construct($out); @@ -80,11 +78,11 @@ class NoticeList extends Widget * * @return int count of notices listed. */ - function show() { $this->out->elementStart('div', array('id' =>'notices_primary')); - $this->out->element('h2', null, _('Notices')); + // TRANS: Header in notice list. + $this->out->element('h2', null, _m('HEADER','Notices')); $this->out->elementStart('ol', array('class' => 'notices xoxo')); $cnt = 0; @@ -122,10 +120,8 @@ class NoticeList extends Widget * * @return NoticeListItem a list item for displaying the notice */ - function newListItem($notice) { return new NoticeListItem($notice, $this->out); } } - diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index aafa935140..9c50966406 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -420,6 +420,7 @@ class NoticeListItem extends Widget $ns = $this->notice->getSource(); if ($ns) { + // TRANS: A possible notice source (web interface). $source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _m('SOURCE','web')) : _($ns->name); $this->out->text(' '); $this->out->elementStart('span', 'source'); diff --git a/lib/primarynav.php b/lib/primarynav.php index fc9f3c7203..7a9815af7b 100644 --- a/lib/primarynav.php +++ b/lib/primarynav.php @@ -57,7 +57,7 @@ class PrimaryNav extends Menu // TRANS: Menu item in primary navigation panel. _m('MENU','Settings'), // TRANS: Menu item title in primary navigation panel. - _('Change your personal settings'), + _('Change your personal settings.'), false, 'nav_account'); if ($user->hasRight(Right::CONFIGURESITE)) { @@ -65,14 +65,15 @@ class PrimaryNav extends Menu // TRANS: Menu item in primary navigation panel. _m('MENU','Admin'), // TRANS: Menu item title in primary navigation panel. - _('Site configuration'), + _('Site configuration.'), false, 'nav_admin'); } $this->action->menuItem(common_local_url('logout'), // TRANS: Menu item in primary navigation panel. _m('MENU','Logout'), - _('Logout from the site'), + // TRANS: Menu item title in primary navigation panel. + _('Logout from the site.'), false, 'nav_logout'); } else { @@ -80,7 +81,7 @@ class PrimaryNav extends Menu // TRANS: Menu item in primary navigation panel. _m('MENU','Login'), // TRANS: Menu item title in primary navigation panel. - _('Login to the site'), + _('Login to the site.'), false, 'nav_login'); } @@ -90,7 +91,7 @@ class PrimaryNav extends Menu // TRANS: Menu item in primary navigation panel. _m('MENU','Search'), // TRANS: Menu item title in primary navigation panel. - _('Search the site'), + _('Search the site.'), false, 'nav_search'); } diff --git a/lib/profileformaction.php b/lib/profileformaction.php index 5706528223..b5f2e5d2a3 100644 --- a/lib/profileformaction.php +++ b/lib/profileformaction.php @@ -59,7 +59,7 @@ class ProfileFormAction extends RedirectingAction if (!common_logged_in()) { if ($_SERVER['REQUEST_METHOD'] == 'POST') { - // TRANS: Client error displayed when trying to change user options while not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); } else { // Redirect to login. diff --git a/lib/settingsaction.php b/lib/settingsaction.php index c7113d15c2..c70a5ffa8d 100644 --- a/lib/settingsaction.php +++ b/lib/settingsaction.php @@ -69,6 +69,7 @@ class SettingsAction extends CurrentUserDesignAction { parent::handle($args); if (!common_logged_in()) { + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } else if (!common_is_real_login()) { diff --git a/plugins/OpenID/finishaddopenid.php b/plugins/OpenID/finishaddopenid.php index 6eb2f2d206..c442aac989 100644 --- a/plugins/OpenID/finishaddopenid.php +++ b/plugins/OpenID/finishaddopenid.php @@ -64,7 +64,7 @@ class FinishaddopenidAction extends Action { parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error message + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_m('Not logged in.')); } else { $this->tryLogin(); diff --git a/plugins/SearchSub/searchsubaction.php b/plugins/SearchSub/searchsubaction.php index db1a0e9abc..0234feef40 100644 --- a/plugins/SearchSub/searchsubaction.php +++ b/plugins/SearchSub/searchsubaction.php @@ -95,7 +95,7 @@ class SearchsubAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - // TRANS: Client error displayed trying to subscribe when not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_m('Not logged in.')); return false; } diff --git a/plugins/SubMirror/actions/basemirror.php b/plugins/SubMirror/actions/basemirror.php index 6a9109d13a..9a01e2ddb7 100644 --- a/plugins/SubMirror/actions/basemirror.php +++ b/plugins/SubMirror/actions/basemirror.php @@ -133,6 +133,7 @@ abstract class BaseMirrorAction extends Action $this->user = common_current_user(); if (empty($this->user)) { + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_m('Not logged in.')); return false; } diff --git a/plugins/TagSub/tagsubaction.php b/plugins/TagSub/tagsubaction.php index 83bf106bed..18335f4cc8 100644 --- a/plugins/TagSub/tagsubaction.php +++ b/plugins/TagSub/tagsubaction.php @@ -95,7 +95,7 @@ class TagsubAction extends Action $this->user = common_current_user(); if (empty($this->user)) { - // TRANS: Client error displayed trying to subscribe when not logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_m('Not logged in.')); return false; } diff --git a/plugins/UserFlag/adminprofileflag.php b/plugins/UserFlag/adminprofileflag.php index 2f62fa7c41..1aafa3c1bf 100644 --- a/plugins/UserFlag/adminprofileflag.php +++ b/plugins/UserFlag/adminprofileflag.php @@ -61,6 +61,7 @@ class AdminprofileflagAction extends Action // User must be logged in. if (!common_logged_in()) { + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_m('Not logged in.')); return; } From 34ed86981bb9c92fbfa81d7c9f9b0224e7b03cb1 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 4 Apr 2011 01:01:42 +0200 Subject: [PATCH 49/52] Fixes for an xgettext peculiarity. --- index.php | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/index.php b/index.php index 8617780be7..3265f0c0e9 100644 --- a/index.php +++ b/index.php @@ -107,20 +107,18 @@ function handleError($error) $msg = sprintf( // TRANS: Database error message. - _( - 'The database for %1$s is not responding correctly, '. - 'so the site will not work properly. '. - 'The site admins probably know about the problem, '. - 'but you can contact them at %2$s to make sure. '. - 'Otherwise, wait a few minutes and try again.' + _('The database for %1$s is not responding correctly, '. + 'so the site will not work properly. '. + 'The site admins probably know about the problem, '. + 'but you can contact them at %2$s to make sure. '. + 'Otherwise, wait a few minutes and try again.' ), common_config('site', 'name'), common_config('site', 'email') ); } else { // TRANS: Error message. - $msg = _( - 'An important error occured, probably related to email setup. '. + $msg = _('An important error occured, probably related to email setup. '. 'Check logfiles for more info.' ); } @@ -254,9 +252,8 @@ function main() if (!_have_config()) { $msg = sprintf( // TRANS: Error message displayed when there is no StatusNet configuration file. - _( - "No configuration file found. Try running ". - "the installation program first." + _("No configuration file found. Try running ". + "the installation program first." ) ); $sac = new ServerErrorAction($msg); From cdebd59970a2b8c30fdb9f9d2bef554ea6617385 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 4 Apr 2011 01:08:11 +0200 Subject: [PATCH 50/52] L10n consistency tweak. --- lib/designsettings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/designsettings.php b/lib/designsettings.php index e88bbf88cf..cb65ca14cb 100644 --- a/lib/designsettings.php +++ b/lib/designsettings.php @@ -214,7 +214,7 @@ class DesignSettingsAction extends SettingsAction if ($result === false) { common_log_db_error($design, 'UPDATE', __FILE__); // TRANS: Error message displayed if design settings could not be saved. - $this->showForm(_('Couldn\'t update your design.')); + $this->showForm(_('Could not update your design.')); return; } } @@ -236,7 +236,7 @@ class DesignSettingsAction extends SettingsAction if ($result === false) { common_log_db_error($design, 'DELETE', __FILE__); // TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". - $this->showForm(_('Couldn\'t update your design.')); + $this->showForm(_('Could not update your design.')); return; } } From c50b06dd7e8f0f2e33b67bfe8a39e8fef86ab617 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 4 Apr 2011 01:27:23 +0200 Subject: [PATCH 51/52] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 174 ++-- locale/bg/LC_MESSAGES/statusnet.po | 178 ++-- locale/br/LC_MESSAGES/statusnet.po | 178 ++-- locale/ca/LC_MESSAGES/statusnet.po | 181 ++-- locale/cs/LC_MESSAGES/statusnet.po | 174 ++-- locale/de/LC_MESSAGES/statusnet.po | 177 ++-- locale/en_GB/LC_MESSAGES/statusnet.po | 176 ++-- locale/eo/LC_MESSAGES/statusnet.po | 178 ++-- locale/es/LC_MESSAGES/statusnet.po | 177 ++-- locale/fa/LC_MESSAGES/statusnet.po | 253 +++--- locale/fi/LC_MESSAGES/statusnet.po | 176 ++-- locale/fr/LC_MESSAGES/statusnet.po | 176 ++-- locale/gl/LC_MESSAGES/statusnet.po | 174 ++-- locale/hsb/LC_MESSAGES/statusnet.po | 176 ++-- locale/hu/LC_MESSAGES/statusnet.po | 176 ++-- locale/ia/LC_MESSAGES/statusnet.po | 185 ++-- locale/it/LC_MESSAGES/statusnet.po | 176 ++-- locale/ja/LC_MESSAGES/statusnet.po | 176 ++-- locale/ka/LC_MESSAGES/statusnet.po | 174 ++-- locale/ko/LC_MESSAGES/statusnet.po | 176 ++-- locale/mk/LC_MESSAGES/statusnet.po | 238 ++--- locale/ml/LC_MESSAGES/statusnet.po | 176 ++-- locale/nb/LC_MESSAGES/statusnet.po | 174 ++-- locale/nl/LC_MESSAGES/statusnet.po | 229 ++--- locale/pl/LC_MESSAGES/statusnet.po | 176 ++-- locale/pt/LC_MESSAGES/statusnet.po | 177 ++-- locale/pt_BR/LC_MESSAGES/statusnet.po | 176 ++-- locale/ru/LC_MESSAGES/statusnet.po | 177 ++-- locale/statusnet.pot | 826 ++++++++++-------- locale/sv/LC_MESSAGES/statusnet.po | 176 ++-- locale/te/LC_MESSAGES/statusnet.po | 177 ++-- locale/uk/LC_MESSAGES/statusnet.po | 189 ++-- locale/zh_CN/LC_MESSAGES/statusnet.po | 178 ++-- .../locale/br/LC_MESSAGES/Directory.po | 75 ++ plugins/Event/locale/br/LC_MESSAGES/Event.po | 282 ++++++ plugins/OpenID/locale/OpenID.pot | 4 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/br/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 12 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 10 +- plugins/QnA/locale/QnA.pot | 10 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 147 ++++ plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 21 +- plugins/SearchSub/locale/SearchSub.pot | 4 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 10 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 10 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 10 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 10 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 10 +- plugins/SubMirror/locale/SubMirror.pot | 7 +- .../locale/de/LC_MESSAGES/SubMirror.po | 9 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 9 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 9 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 9 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 9 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 9 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 9 +- plugins/TagSub/locale/TagSub.pot | 4 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/ms/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 16 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 10 +- plugins/UserFlag/locale/UserFlag.pot | 15 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 9 +- .../locale/de/LC_MESSAGES/UserFlag.po | 9 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 9 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 9 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 9 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 9 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 9 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 9 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 103 +++ .../locale/uk/LC_MESSAGES/UserFlag.po | 9 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 9 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 16 +- plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po | 10 +- .../locale/tl/LC_MESSAGES/YammerImport.po | 229 +++++ 85 files changed, 5159 insertions(+), 2819 deletions(-) create mode 100644 plugins/Directory/locale/br/LC_MESSAGES/Directory.po create mode 100644 plugins/Event/locale/br/LC_MESSAGES/Event.po create mode 100644 plugins/QnA/locale/mk/LC_MESSAGES/QnA.po create mode 100644 plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po create mode 100644 plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index b6e6a5ad6b..3947731741 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -12,19 +12,54 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:18:51+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:36+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "غير معروفة" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "إجراء غير معروف" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -111,6 +146,7 @@ msgstr "لا صفحة كهذه." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -135,6 +171,7 @@ msgstr "لا صفحة كهذه." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -151,6 +188,8 @@ msgstr "%1$s والأصدقاء, الصفحة %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -225,28 +264,14 @@ msgstr "أنت والأصدقاء" msgid "Updates from %1$s and friends on %2$s!" msgstr "الإشعارات التي فضلها %1$s في %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "لم يتم العثور على وسيلة API." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -320,6 +345,8 @@ msgstr "تعذّر حفظ إعدادات تصميمك." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "تعذّر تحديث تصميمك." @@ -705,9 +732,12 @@ msgstr "لا تملك تصريحًا." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -895,6 +925,8 @@ msgstr "حُذِف الإشعار %d" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -914,6 +946,8 @@ msgstr "تعذر إيجاد الإشعار الوالد." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -988,6 +1022,8 @@ msgstr "الإشعارات التي فضلها %1$s في %2$s!" msgid "Repeats of %s" msgstr "تكرارات %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته" @@ -1357,6 +1393,7 @@ msgstr "بإمكانك رفع أفتارك الشخصي. أقصى حجم للم #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "المستخدم بدون ملف مطابق." @@ -1383,6 +1420,7 @@ msgstr "معاينة" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "احذف" @@ -1556,24 +1594,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ترك المجموعة %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "لست والجًا." @@ -1735,6 +1756,7 @@ msgstr "لم يوجد التطبيق." msgid "You are not the owner of this application." msgstr "أنت لست مالك هذا التطبيق." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -3316,6 +3338,9 @@ msgid "Ajax Error" msgstr "خطأ أجاكس" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "إشعار جديد" @@ -4301,10 +4326,6 @@ msgstr "طُلبت استعادة كلمة السر" msgid "Password saved" msgstr "حُفظت كلمة السر" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "إجراء غير معروف" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 أحرف أو أكثر، لا تنسها!" @@ -4395,6 +4416,7 @@ msgstr "لا يُسمح بالتسجيل." msgid "You cannot register if you do not agree to the license." msgstr "لا يمكن أن تسجل ما لم توافق على الرخصة." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "عنوان البريد الإلكتروني موجود مسبقًا." @@ -7539,11 +7561,6 @@ msgctxt "RADIO" msgid "Off" msgstr "عطّل" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "تعذّر تحديث تصميمك." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "استعيدت مبدئيات التصميم." @@ -7913,6 +7930,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "انضم" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8443,6 +8466,12 @@ msgid "" "try again later" msgstr "" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "الإشعارات" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "ش" @@ -8608,12 +8637,12 @@ msgstr "إعدادات" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "غيّر إعدادات ملفك الشخصي" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "ضبط المستخدم" #. TRANS: Menu item in primary navigation panel. @@ -8621,11 +8650,14 @@ msgctxt "MENU" msgid "Logout" msgstr "اخرج" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "اخرج من الموقع" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "لُج إلى الموقع" #. TRANS: Menu item in primary navigation panel. @@ -8635,7 +8667,7 @@ msgstr "ابحث" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "ابحث في الموقع" #. TRANS: H2 text for user subscription statistics. @@ -8762,6 +8794,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "ابحث" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9072,11 +9126,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "خطأ في فتح أرشيف السمات." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "الإشعارات" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9296,8 +9345,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "نعم" - -#~ msgid "Subscribe" -#~ msgstr "اشترك" +#~ msgid "Couldn't update your design." +#~ msgstr "تعذّر تحديث تصميمك." diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 9483cfe0b4..aba471cdfa 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,17 +11,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:18:53+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:38+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Непознато" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Непознато действие" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -108,6 +143,7 @@ msgstr "Няма такака страница." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -132,6 +168,7 @@ msgstr "Няма такака страница." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -148,6 +185,8 @@ msgstr "%1$s и приятели, страница %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -218,28 +257,14 @@ msgstr "Вие и приятелите" msgid "Updates from %1$s and friends on %2$s!" msgstr "Бележки от %1$s и приятели в %2$s." -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Не е открит методът в API." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -310,6 +335,8 @@ msgstr "Грешка при записване настройките за Twitt #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #, fuzzy msgid "Could not update your design." msgstr "Грешка при обновяване на потребителя." @@ -695,9 +722,12 @@ msgstr "Не сте абонирани за никого." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" @@ -887,6 +917,8 @@ msgstr "Изтриване на бележката" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -903,6 +935,8 @@ msgstr "Не е открит методът в API." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -973,6 +1007,8 @@ msgstr "%1$s реплики на съобщения от %2$s / %3$s." msgid "Repeats of %s" msgstr "Повторения на %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) отбеляза бележката ви като любима" @@ -1351,6 +1387,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Потребителят няма профил." @@ -1377,6 +1414,7 @@ msgstr "Преглед" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Изтриване" @@ -1546,24 +1584,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s напусна групата %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не сте влезли в системата." @@ -1727,6 +1748,7 @@ msgstr "Приложението не е открито." msgid "You are not the owner of this application." msgstr "Не сте собственик на това приложение." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." @@ -3373,6 +3395,9 @@ msgid "Ajax Error" msgstr "Грешка в Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Нова бележка" @@ -4377,10 +4402,6 @@ msgstr "Поискано е възстановяване на парола" msgid "Password saved" msgstr "Паролата е записана." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Непознато действие" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4478,6 +4499,7 @@ msgstr "Записването не е позволено." msgid "You cannot register if you do not agree to the license." msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Адресът на е-поща вече се използва." @@ -7661,12 +7683,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Изкл." -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -#, fuzzy -msgid "Couldn't update your design." -msgstr "Грешка при обновяване на потребителя." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "" @@ -8012,6 +8028,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Присъединяване" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8521,6 +8543,13 @@ msgid "" "try again later" msgstr "" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Бележки" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "С" @@ -8688,12 +8717,12 @@ msgstr "Настройки за SMS" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Промяна настройките на профила" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Настройка на пътищата" #. TRANS: Menu item in primary navigation panel. @@ -8701,11 +8730,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Изход" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Излизане от сайта" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Влизане в сайта" #. TRANS: Menu item in primary navigation panel. @@ -8715,7 +8747,7 @@ msgstr "Търсене" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Търсене в сайта" #. TRANS: H2 text for user subscription statistics. @@ -8844,6 +8876,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Търсене" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9154,12 +9208,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "Грешка при изпращане на прякото съобщение" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Бележки" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9358,8 +9406,6 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Да" - -#~ msgid "Subscribe" -#~ msgstr "Абониране" +#, fuzzy +#~ msgid "Couldn't update your design." +#~ msgstr "Грешка при обновяване на потребителя." diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 3693435406..8a17da2eb5 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:18:55+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:39+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Dianav" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Oberiadenn dianav" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -110,6 +145,7 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -134,6 +170,7 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -150,6 +187,8 @@ msgstr "%1$s hag e vignoned, pajenn %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -226,28 +265,14 @@ msgstr "C'hwi hag o mignoned" msgid "Updates from %1$s and friends on %2$s!" msgstr "Hizivadennoù %1$s ha mignoned e %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "N'eo ket bet kavet an hentenn API !" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -317,6 +342,8 @@ msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Dibosupl eo hizivaat ho design." @@ -692,9 +719,12 @@ msgstr "Aotreet eo bet ar jedouer reked dija." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit." @@ -885,6 +915,8 @@ msgstr "Kemenn dilamet %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Ret eo d'an arval pourchas un arventenn « statut » gant un talvoud." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -901,6 +933,8 @@ msgstr "N'eo ket bet kavet an hentenn API !" #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -971,6 +1005,8 @@ msgstr "%1$s statud pennroll da %2$s / %2$s." msgid "Repeats of %s" msgstr "Adkemeret eus %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll." @@ -1343,6 +1379,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Implijer hep profil klotus." @@ -1369,6 +1406,7 @@ msgstr "Rakwelet" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Dilemel" @@ -1539,24 +1577,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s en deus kuitaet ar strollad %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nann-kevreet." @@ -1716,6 +1737,7 @@ msgstr "N'eo ket bet kavet ar poellad" msgid "You are not the owner of this application." msgstr "N'oc'h ket perc'henn ar poellad-se." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h." @@ -3299,6 +3321,9 @@ msgid "Ajax Error" msgstr "Fazi Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Ali nevez" @@ -4324,10 +4349,6 @@ msgstr "Goulennet eo an adtapout gerioù-tremen" msgid "Password saved" msgstr "Ger-tremen enrollet." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Oberiadenn dianav" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4427,6 +4448,7 @@ msgstr "" "Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur " "gont." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Implijet eo dija ar chomlec'h postel-se." @@ -7572,11 +7594,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Diweredekaet" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Dibosupl eo hizivaat ho design." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". #, fuzzy msgid "Design defaults restored." @@ -7923,6 +7940,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Stagañ" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8429,6 +8452,13 @@ msgid "" "try again later" msgstr "" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Ali" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8593,12 +8623,13 @@ msgid "Settings" msgstr "Arventennoù" #. TRANS: Menu item title in primary navigation panel. -msgid "Change your personal settings" +#, fuzzy +msgid "Change your personal settings." msgstr "Kemmañ ho arventennoù hiniennel" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Kefluniadur an implijer" #. TRANS: Menu item in primary navigation panel. @@ -8606,11 +8637,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Digevreañ" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Digevreañ diouzh al lec'hienn" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Kevreañ d'al lec'hienn" #. TRANS: Menu item in primary navigation panel. @@ -8619,7 +8653,8 @@ msgid "Search" msgstr "Klask" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Klask el lec'hienn" #. TRANS: H2 text for user subscription statistics. @@ -8748,6 +8783,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Klask" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9058,12 +9115,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "Fazi en ur hizivaat ar profil a-bell." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Ali" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9262,8 +9313,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Ya" - -#~ msgid "Subscribe" -#~ msgstr "En em enskrivañ" +#~ msgid "Couldn't update your design." +#~ msgstr "Dibosupl eo hizivaat ho design." diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index a88b5932a2..a6a77839b9 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:18:57+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:41+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Desconegut" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Acció desconeguda" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -115,6 +150,7 @@ msgstr "No existeix la pàgina." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -139,6 +175,7 @@ msgstr "No existeix la pàgina." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -155,6 +192,8 @@ msgstr "%1$s i amics, pàgina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -233,28 +272,14 @@ msgstr "Un mateix i amics" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualitzacions de %1$s i amics a %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "No s'ha trobat el mètode API!" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -330,6 +355,8 @@ msgstr "No s'han pogut desar els paràmetres de disseny." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "No s'ha pogut actualitzar el vostre disseny." @@ -701,9 +728,12 @@ msgstr "El testimoni de sol·licitud ja està autoritzat." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " @@ -899,6 +929,8 @@ msgstr "S'ha eliminat l'avís %d" msgid "Client must provide a 'status' parameter with a value." msgstr "El client ha de proporcionar un paràmetre 'status' amb un valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -914,6 +946,8 @@ msgstr "No s'ha trobat l'avís pare." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -985,6 +1019,8 @@ msgstr "%1$s actualitzacions que responen a avisos de %2$s / %3$s." msgid "Repeats of %s" msgstr "Repeticions de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s ha marcat l'avís %2$s com a preferit" @@ -1350,6 +1386,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "L'usuari que no coincideix amb cap perfil" @@ -1376,6 +1413,7 @@ msgstr "Vista prèvia" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Elimina" @@ -1554,24 +1592,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ha abandonat el grup %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "No heu iniciat una sessió." @@ -1735,6 +1756,7 @@ msgstr "No s'ha trobat l'aplicació." msgid "You are not the owner of this application." msgstr "No sou el propietari d'aquesta aplicació." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "S'ha produït un problema amb el testimoni de la vostra sessió." @@ -3350,6 +3372,9 @@ msgid "Ajax Error" msgstr "Ajax Error" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nou avís" @@ -4362,10 +4387,6 @@ msgstr "Recuperació de contrasenya sol·licitada" msgid "Password saved" msgstr "Contrasenya desada" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Acció desconeguda" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 o més caràcters, i no ho oblideu!" @@ -4456,6 +4477,7 @@ msgstr "Registre no permès." msgid "You cannot register if you do not agree to the license." msgstr "No podeu registrar-vos si no accepteu la llicència." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "L'adreça de correu electrònic ja existeix." @@ -7667,11 +7689,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desactivada" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "No s'ha pogut actualitzar el vostre disseny." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "S'han restaurat els paràmetres de disseny per defecte." @@ -8017,6 +8034,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Inici de sessió" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8405,7 +8428,6 @@ msgstr "" "vostres ulls." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "Safata d'entrada" @@ -8416,7 +8438,6 @@ msgid "Your incoming messages." msgstr "Els teus missatges rebuts" #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "Safata de sortida" @@ -8621,6 +8642,13 @@ msgstr "" "Ho sentim, la obtenció de la vostra ubicació geogràfica està trigant més de " "l'esperat; torneu-ho a provar més tard" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Avisos" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8782,11 +8810,13 @@ msgid "Settings" msgstr "Paràmetres de l'SMS" #. TRANS: Menu item title in primary navigation panel. -msgid "Change your personal settings" +#, fuzzy +msgid "Change your personal settings." msgstr "Canvieu els vostres paràmetres personals" #. TRANS: Menu item title in primary navigation panel. -msgid "Site configuration" +#, fuzzy +msgid "Site configuration." msgstr "Configuració del lloc" #. TRANS: Menu item in primary navigation panel. @@ -8794,11 +8824,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Finalitza la sessió" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Finalitza la sessió del lloc" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Inicia una sessió al lloc" #. TRANS: Menu item in primary navigation panel. @@ -8807,7 +8840,8 @@ msgid "Search" msgstr "Cerca" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Cerca al lloc" #. TRANS: H2 text for user subscription statistics. @@ -8933,6 +8967,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Cerca" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9241,12 +9297,6 @@ msgstr "El tema conté un tipus de fitxer «.%s», que no està permès." msgid "Error opening theme archive." msgstr "S'ha produït un error en obrir l'arxiu del tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Avisos" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9440,8 +9490,5 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." -#~ msgid "Yes" -#~ msgstr "Sí" - -#~ msgid "Subscribe" -#~ msgstr "Subscriu-m'hi" +#~ msgid "Couldn't update your design." +#~ msgstr "No s'ha pogut actualitzar el vostre disseny." diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index d99e511f3a..017fd666c7 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -12,18 +12,53 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:18:59+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:42+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Neznámé" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Neznámá akce" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -110,6 +145,7 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -134,6 +170,7 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -150,6 +187,8 @@ msgstr "%1$s a přátelé, strana %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -228,28 +267,14 @@ msgstr "Vy a přátelé" msgid "Updates from %1$s and friends on %2$s!" msgstr "Novinky od uživatele %1$s a přátel na %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr " API metoda nebyla nalezena." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -327,6 +352,8 @@ msgstr "Nelze uložit vaše nastavení designu." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Nelze uložit design." @@ -706,9 +733,12 @@ msgstr "Nejste autorizován." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Nastal problém s vaším session tokenem. Zkuste to znovu, prosím." @@ -907,6 +937,8 @@ msgstr "Odstranit oznámení" msgid "Client must provide a 'status' parameter with a value." msgstr "Klient musí poskytnout 'status' parametr s hodnotou." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -924,6 +956,8 @@ msgstr " API metoda nebyla nalezena." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -995,6 +1029,8 @@ msgstr "updaty na %1$s odpovídající na updaty od %2$s / %3$s." msgid "Repeats of %s" msgstr "Opakování %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) přidal vaše oznámení jako oblíbené" @@ -1374,6 +1410,7 @@ msgstr "Můžete nahrát váš osobní avatar. Maximální velikost souboru je % #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Uživatel bez odpovídajícího profilu." @@ -1400,6 +1437,7 @@ msgstr "Náhled" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1577,24 +1615,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s opustil(a) skupinu %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nejste přihlášen(a)." @@ -1760,6 +1781,7 @@ msgstr "Aplikace nebyla nalezena." msgid "You are not the owner of this application." msgstr "Nejste vlastníkem této aplikace." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Nastal problém s vaším session tokenem." @@ -3404,6 +3426,9 @@ msgid "Ajax Error" msgstr "Ajax Chyba" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nové sdělení" @@ -4434,10 +4459,6 @@ msgstr "Zažádáno o obnovu hesla" msgid "Password saved" msgstr "Heslo uloženo" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Neznámá akce" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4534,6 +4555,7 @@ msgstr "Registrace není povolena." msgid "You cannot register if you do not agree to the license." msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Emailová adresa již existuje" @@ -7768,11 +7790,6 @@ msgctxt "RADIO" msgid "Off" msgstr "vyp." -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Nelze uložit vzhled." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Obnoveno výchozí nastavení vzhledu." @@ -8124,6 +8141,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Připojit se" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8729,6 +8752,13 @@ msgstr "" "Je nám líto, načítání vaší geo lokace trvá déle, než se očekávalo, zkuste to " "prosím znovu později" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Sdělení" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "S" @@ -8894,12 +8924,12 @@ msgstr "nastavení SMS" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Změňte nastavení profilu" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Akce uživatele" #. TRANS: Menu item in primary navigation panel. @@ -8907,13 +8937,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Odhlásit se" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "Odhlášení z webu" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Přihlásit se na stránky" #. TRANS: Menu item in primary navigation panel. @@ -8923,7 +8954,7 @@ msgstr "Hledat" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Prohledat stránky" #. TRANS: H2 text for user subscription statistics. @@ -9050,6 +9081,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9364,12 +9417,6 @@ msgstr "Téma obsahuje soubor typu '.%s', což není povoleno." msgid "Error opening theme archive." msgstr "Chyba při otevírání archivu tématu." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Sdělení" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9573,8 +9620,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Ano" - -#~ msgid "Subscribe" -#~ msgstr "Odebírat" +#~ msgid "Couldn't update your design." +#~ msgstr "Nelze uložit vzhled." diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 1dec93fef4..72c9d63ff5 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -22,17 +22,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:01+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Unbekannt" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Unbekannter Befehl" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -120,6 +155,7 @@ msgstr "Seite nicht vorhanden" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -144,6 +180,7 @@ msgstr "Seite nicht vorhanden" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -160,6 +197,8 @@ msgstr "%1$s und Freunde, Seite% 2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -238,28 +277,14 @@ msgstr "Du und Freunde" msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-Methode nicht gefunden." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -335,6 +360,8 @@ msgstr "Konnte Design-Einstellungen nicht speichern." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Konnte Benutzerdesign nicht aktualisieren." @@ -711,9 +738,12 @@ msgstr "Anfrage-Token bereits autorisiert." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." @@ -910,6 +940,8 @@ msgstr "" "Der Client muss einen „status“-Parameter mit einen Wert zur Verfügung " "stellen." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -927,6 +959,8 @@ msgstr "API-Methode nicht gefunden." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -1000,6 +1034,8 @@ msgstr "%1$s Nachrichten, die auf %2$s / %3$s wiederholt wurden." msgid "Repeats of %s" msgstr "Antworten von %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s Notizen wurden von %2$s / %3$s wiederholt." @@ -1372,6 +1408,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Benutzer ohne passendes Profil" @@ -1398,6 +1435,7 @@ msgstr "Vorschau" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Löschen" @@ -1575,24 +1613,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s hat die Gruppe %2$s verlassen" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nicht angemeldet." @@ -1758,6 +1779,7 @@ msgstr "Programm nicht gefunden." msgid "You are not the owner of this application." msgstr "Du bist Besitzer dieses Programms" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -3406,6 +3428,9 @@ msgid "Ajax Error" msgstr "Ajax-Fehler" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Neue Nachricht" @@ -4433,10 +4458,6 @@ msgstr "Wiederherstellung des Passworts angefordert" msgid "Password saved" msgstr "Passwort gespeichert." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Unbekannter Befehl" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4532,6 +4553,7 @@ msgid "You cannot register if you do not agree to the license." msgstr "" "Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Diese E-Mail-Adresse existiert bereits." @@ -7773,11 +7795,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Aus" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Konnte dein Design nicht aktualisieren." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Standard-Design wieder hergestellt." @@ -8123,6 +8140,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Beitreten" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8511,7 +8534,6 @@ msgstr "" "Nachrichten schicken, die nur du sehen kannst." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "Posteingang" @@ -8729,6 +8751,13 @@ msgstr "" "Es tut uns leid, aber die Abfrage deiner GPS-Position hat zu lange gedauert. " "Bitte versuche es später wieder." +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Nachrichten" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8895,12 +8924,12 @@ msgstr "SMS-Einstellungen" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Ändern der Profileinstellungen" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Benutzereinstellung" #. TRANS: Menu item in primary navigation panel. @@ -8908,11 +8937,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Abmelden" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Von der Seite abmelden" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Auf der Seite anmelden" #. TRANS: Menu item in primary navigation panel. @@ -8922,7 +8954,7 @@ msgstr "Suchen" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Website durchsuchen" #. TRANS: H2 text for user subscription statistics. @@ -9048,6 +9080,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Suchen" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9359,12 +9413,6 @@ msgstr "Das Theme enthält Dateien des Types „.%s“, die nicht erlaubt sind." msgid "Error opening theme archive." msgstr "Fehler beim Öffnen des Theme-Archives." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Nachrichten" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9559,8 +9607,5 @@ msgstr "Ungültiges XML, XRD-Root fehlt." msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." -#~ msgid "Yes" -#~ msgstr "Ja" - -#~ msgid "Subscribe" -#~ msgstr "Abonnieren" +#~ msgid "Couldn't update your design." +#~ msgstr "Konnte dein Design nicht aktualisieren." diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index eea7f152cf..4cc841e2a5 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -14,17 +14,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:03+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:45+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Unknown" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Unknown action" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -111,6 +146,7 @@ msgstr "No such page." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -135,6 +171,7 @@ msgstr "No such page." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -151,6 +188,8 @@ msgstr "%1$s and friends, page %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -228,28 +267,14 @@ msgstr "You and friends" msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates from %1$s and friends on %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API method not found." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -325,6 +350,8 @@ msgstr "Unable to save your design settings." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Could not update your design." @@ -699,9 +726,12 @@ msgstr "You are not authorised." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "There was a problem with your session token. Try again, please." @@ -898,6 +928,8 @@ msgstr "Delete notice" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -914,6 +946,8 @@ msgstr "API method not found." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -984,6 +1018,8 @@ msgstr "%1$s updates that reply to updates from %2$s / %3$s." msgid "Repeats of %s" msgstr "Repeats of %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s marked notice %2$s as a favourite." @@ -1362,6 +1398,7 @@ msgstr "You can upload your personal avatar. The maximum file size is %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "User without matching profile." @@ -1388,6 +1425,7 @@ msgstr "Preview" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1565,24 +1603,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s left group %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Not logged in." @@ -1748,6 +1769,7 @@ msgstr "Application not found." msgid "You are not the owner of this application." msgstr "You are not the owner of this application." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -3384,6 +3406,9 @@ msgid "Ajax Error" msgstr "Ajax Error" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "New notice" @@ -4399,10 +4424,6 @@ msgstr "Password recovery requested" msgid "Password saved" msgstr "Password saved." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Unknown action" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4499,6 +4520,7 @@ msgstr "Registration not allowed." msgid "You cannot register if you do not agree to the license." msgstr "You can't register if you don't agree to the licence." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "E-mail address already exists." @@ -7659,11 +7681,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Off" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Couldn't update your design." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Design defaults restored." @@ -8008,6 +8025,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Join" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8522,6 +8545,13 @@ msgid "" "try again later" msgstr "" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notices" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8688,12 +8718,12 @@ msgstr "SMS settings" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Change your profile settings" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "User configuration" #. TRANS: Menu item in primary navigation panel. @@ -8701,11 +8731,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Logout" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Logout from the site" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Login to the site" #. TRANS: Menu item in primary navigation panel. @@ -8715,7 +8748,7 @@ msgstr "Search" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Search site" #. TRANS: H2 text for user subscription statistics. @@ -8842,6 +8875,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9144,12 +9199,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "Error opening theme archive." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notices" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9346,8 +9395,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Yes" - -#~ msgid "Subscribe" -#~ msgstr "Subscribe" +#~ msgid "Couldn't update your design." +#~ msgstr "Couldn't update your design." diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index a1ac99e0f1..f69d3f1fec 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:05+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:46+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Nekonata" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Nekonata ago" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -114,6 +149,7 @@ msgstr "Ne estas tiu paĝo." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -138,6 +174,7 @@ msgstr "Ne estas tiu paĝo." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -154,6 +191,8 @@ msgstr "%1$s kaj amikoj, paĝo %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -231,28 +270,14 @@ msgstr "Vi kaj amikoj" msgid "Updates from %1$s and friends on %2$s!" msgstr "Ĝisdatiĝoj de %1$s kaj amikoj ĉe %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Metodo de API ne troviĝas." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -328,6 +353,8 @@ msgstr "Malsukcesis konservi vian desegnan agordon" #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Malsukcesis ĝisdatigi vian desegnon." @@ -699,9 +726,12 @@ msgstr "" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Estis problemo pri via seanco. Bonvolu provi refoje." @@ -898,6 +928,8 @@ msgstr "Estas forigita la avizo %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Kliento devas providi al \"stato\"-parametro valoron." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -914,6 +946,8 @@ msgstr "Respondata avizo ne trovitas." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -986,6 +1020,8 @@ msgstr "%1$s ĝisdatigoj kiuj respondas al ĝisdatigoj de %2$s / %3$s." msgid "Repeats of %s" msgstr "Ripetoj de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Avizoj ĉe %1$s, ripetitaj de %2$s / %3$s." @@ -1358,6 +1394,7 @@ msgstr "Vi povas alŝuti vian personan vizaĝbildon. Dosiero-grandlimo estas %s. #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Uzanto sen egala profilo." @@ -1384,6 +1421,7 @@ msgstr "Antaŭrigardo" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Forigi" @@ -1562,24 +1600,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s eksaniĝis de grupo %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Ne konektita." @@ -1746,6 +1767,7 @@ msgstr "Aplikaĵo ne trovita." msgid "You are not the owner of this application." msgstr "Vi ne estas la posedanto de ĉi tiu aplikaĵo." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Problemo okazas pri via seancĵetono." @@ -3358,6 +3380,9 @@ msgid "Ajax Error" msgstr "Eraro de Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nova avizo" @@ -4364,10 +4389,6 @@ msgstr "Petiĝas pasvorton rehavado" msgid "Password saved" msgstr "Pasvorto konservitas." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Nekonata ago" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4464,6 +4485,7 @@ msgstr "Registriĝo ne permesita." msgid "You cannot register if you do not agree to the license." msgstr "Vi ne povas registriĝi, se vi ne konsentas kun la permesilo." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Retpoŝta adreso jam ekzistas." @@ -7663,11 +7685,6 @@ msgctxt "RADIO" msgid "Off" msgstr "For" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Malsukcesis ĝisdatigi vian desegnon." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Desegnaj defaŭltoj konserviĝas." @@ -8013,6 +8030,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Aniĝi" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8611,6 +8634,13 @@ msgstr "" "Pardonon, legi vian lokon estas pli malrapide, ol ni pensis. Bonvolu reprovi " "poste." +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Avizoj" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8775,11 +8805,13 @@ msgid "Settings" msgstr "Agordoj" #. TRANS: Menu item title in primary navigation panel. -msgid "Change your personal settings" +#, fuzzy +msgid "Change your personal settings." msgstr "Ŝanĝi viajn personajn agordojn" #. TRANS: Menu item title in primary navigation panel. -msgid "Site configuration" +#, fuzzy +msgid "Site configuration." msgstr "Retej-agordo" #. TRANS: Menu item in primary navigation panel. @@ -8787,12 +8819,14 @@ msgctxt "MENU" msgid "Logout" msgstr " Elsaluti" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Elsaluti el la retpaĝaro" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Ensaluti al la retpaĝaro" #. TRANS: Menu item in primary navigation panel. @@ -8801,7 +8835,8 @@ msgid "Search" msgstr "Serĉi" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Serĉi en la retpaĝaro" #. TRANS: H2 text for user subscription statistics. @@ -8928,6 +8963,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Serĉi" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9240,12 +9297,6 @@ msgstr "Desegno enhavas dosieron de tipo \".%s\", kiu malpermesiĝas." msgid "Error opening theme archive." msgstr "Eraris malfermi desegnan arkivon." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Avizoj" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9442,8 +9493,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Jes" - -#~ msgid "Subscribe" -#~ msgstr "Aboni" +#~ msgid "Couldn't update your design." +#~ msgstr "Malsukcesis ĝisdatigi vian desegnon." diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index a50a02e676..17590b07c1 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -19,17 +19,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:07+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:48+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Desconocido" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Acción desconocida" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -116,6 +151,7 @@ msgstr "No existe tal página." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -140,6 +176,7 @@ msgstr "No existe tal página." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -156,6 +193,8 @@ msgstr "%1$s y sus amistades, página %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -234,28 +273,14 @@ msgstr "Tú y tus amistades" msgid "Updates from %1$s and friends on %2$s!" msgstr "¡Actualizaciones de %1$s y sus amistades en %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Método de API no encontrado." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -331,6 +356,8 @@ msgstr "No se pudo grabar tu configuración de diseño." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "No se pudo actualizar tu diseño." @@ -703,9 +730,12 @@ msgstr "No estás autorizado." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." @@ -903,6 +933,8 @@ msgstr "Aviso eliminado %d" msgid "Client must provide a 'status' parameter with a value." msgstr "El cliente debe proveer un parámetro de 'status' con un valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -919,6 +951,8 @@ msgstr "Método de API no encontrado." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -991,6 +1025,8 @@ msgstr "actualizaciones de %1$s en respuesta a las de %2$s / %3$s" msgid "Repeats of %s" msgstr "Repeticiones de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) agregó tu mensaje a los favoritos" @@ -1363,6 +1399,7 @@ msgstr "Puedes subir tu imagen personal. El tamaño máximo de archivo es %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Usuario sin perfil coincidente." @@ -1389,6 +1426,7 @@ msgstr "Vista previa" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Borrar" @@ -1563,24 +1601,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ha dejado el grupo %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "No conectado." @@ -1747,6 +1768,7 @@ msgstr "Aplicación no encontrada." msgid "You are not the owner of this application." msgstr "No eres el propietario de esta aplicación." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -3389,6 +3411,9 @@ msgid "Ajax Error" msgstr "Error de Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nuevo mensaje" @@ -4416,10 +4441,6 @@ msgstr "Recuperación de contraseña solicitada" msgid "Password saved" msgstr "Contraseña guardada." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Acción desconocida" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 o más caracteres, ¡y no la olvides!" @@ -4513,6 +4534,7 @@ msgstr "Registro de usuario no permitido." msgid "You cannot register if you do not agree to the license." msgstr "No puedes registrarte si no estás de acuerdo con la licencia." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "La dirección de correo electrónico ya existe." @@ -7751,11 +7773,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desactivar" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "No fue posible actualizar tu diseño." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Diseño predeterminado restaurado." @@ -8103,6 +8120,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Unirse" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8710,6 +8733,13 @@ msgstr "" "Lo sentimos, pero geolocalizarte está tardando más de lo esperado. Por " "favor, inténtalo más tarde." +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Mensajes" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8875,12 +8905,12 @@ msgstr "Configuración de SMS" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Cambia tus opciones de perfil" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuración de usuario" #. TRANS: Menu item in primary navigation panel. @@ -8888,11 +8918,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Cerrar sesión" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Cerrar sesión en el sitio" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Iniciar sesión en el sitio" #. TRANS: Menu item in primary navigation panel. @@ -8901,7 +8934,8 @@ msgid "Search" msgstr "Buscar" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Buscar en el sitio" #. TRANS: H2 text for user subscription statistics. @@ -9028,6 +9062,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Buscar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9342,12 +9398,6 @@ msgstr "El tema contiene archivo de tipo '.%s', que no está permitido." msgid "Error opening theme archive." msgstr "Error al abrir archivo de tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Mensajes" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9543,8 +9593,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Sí" - -#~ msgid "Subscribe" -#~ msgstr "Suscribirse" +#~ msgid "Couldn't update your design." +#~ msgstr "No fue posible actualizar tu diseño." diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 29f0aa6124..91fe6eb01a 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: ArianHT +# Author: Bersam # Author: Brion # Author: Choxos # Author: Ebraminio @@ -17,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:09+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:49+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -27,9 +28,44 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "ناشناخته" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "عمل نامعلوم" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -116,6 +152,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -140,6 +177,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -156,6 +194,8 @@ msgstr "%1$s و دوستان، صفحهٔ %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -232,28 +272,14 @@ msgstr "شما و دوستان" msgid "Updates from %1$s and friends on %2$s!" msgstr "به روز رسانی از %1$s و دوستان در %2$s" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "رابط مورد نظر پیدا نشد." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -324,6 +350,8 @@ msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد. #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "نمی‌توان طرح‌تان به‌هنگام‌سازی کرد." @@ -411,7 +439,6 @@ msgid "Recipient user not found." msgstr "کاربر گیرنده یافت نشد." #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). -#, fuzzy msgid "Cannot send direct messages to users who aren't your friend." msgstr "نمی‌توان پیام مستقیم را به کاربرانی که دوست شما نیستند، فرستاد." @@ -512,7 +539,6 @@ msgstr "صفحهٔ خانگی یک نشانی معتبر نیست." #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with a too long full name. -#, fuzzy msgid "Full name is too long (maximum 255 characters)." msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نویسه)." @@ -667,9 +693,8 @@ msgstr "لقب باید شامل حروف کوچک و اعداد و بدون ف #. TRANS: API validation exception thrown when alias is the same as nickname. #. TRANS: Group create form validation error. -#, fuzzy msgid "Alias cannot be the same as nickname." -msgstr "نام و نام مستعار شما نمی تواند یکی باشد ." +msgstr "نام و نام مستعار شما نمی‌تواند یکی باشد ." #. TRANS: Client error displayed when uploading a media file has failed. msgid "Upload failed." @@ -697,9 +722,12 @@ msgstr "شما شناسایی نشده اید." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "مشکلی در دریافت نشست شما وجود دارد. لطفا بعدا سعی کنید." @@ -763,7 +791,6 @@ msgstr "" "بدهید." #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Account" msgstr "حساب کاربری" @@ -794,7 +821,6 @@ msgid "Cancel" msgstr "انصراف" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "اجازه دادن" @@ -816,15 +842,15 @@ msgid "The request token %s has been revoked." msgstr "نشانهٔ درخواست %s پذیرفته نشد و لغو شد." #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. -#, fuzzy msgid "You have successfully authorized the application" -msgstr "شما شناسایی نشده اید." +msgstr "شما با موفقیت برنامه را تایید کردید." #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. msgid "" "Please return to the application and enter the following security code to " "complete the process." msgstr "" +"لطفا به نرم‌افزار بازگردید و برای تکمیل فرایند، کد امنیتی زیر را وارد کنید" #. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. @@ -839,6 +865,7 @@ msgid "" "Please return to %s and enter the following security code to complete the " "process." msgstr "" +"لطفا به نرم‌افزار %s بازگردید و برای تکمیل فرایند، کد امنیتی زیر را وارد کنید" #. TRANS: Client error displayed trying to delete a status not using POST or DELETE. #. TRANS: POST and DELETE should not be translated. @@ -900,6 +927,8 @@ msgstr "پیام را پاک کن" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -915,6 +944,8 @@ msgstr "رابط مورد نظر پیدا نشد." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -984,6 +1015,8 @@ msgstr "%1$s به روز رسانی هایی که در پاسخ به $2$s / %3$s msgid "Repeats of %s" msgstr "تکرار %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "پیام شما را به برگزیده‌های خود اضافه کرد %s (@%s)" @@ -1113,7 +1146,7 @@ msgstr "شما به سیستم وارد نشده اید." #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." -msgstr "" +msgstr "فقط مدیر گروه می‌تواند که درخواست‌های عضویت را تایید یا لغو کند." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. #. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. @@ -1154,11 +1187,11 @@ msgstr "وضعیت %1$s در %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." -msgstr "" +msgstr "درخواست عضویت تایید شد." #. TRANS: Message on page for group admin after rejecting a join request. msgid "Join request canceled." -msgstr "" +msgstr "درخواست عضویت لغو شد." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. #, fuzzy, php-format @@ -1258,7 +1291,7 @@ msgstr "همهٔ اعضا" #. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group. msgid "Blocked by admin." -msgstr "" +msgstr "توسط مدیر مسدود شده است." #. TRANS: Client exception thrown when referencing a non-existing favorite. #, fuzzy @@ -1362,6 +1395,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "کاربر نمایهٔ تطبیق ندارد." @@ -1388,6 +1422,7 @@ msgstr "پیش‌نمایش" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1434,7 +1469,7 @@ msgstr "چهره پاک شد." #. TRANS: Title for backup account page. #. TRANS: Option in profile settings to create a backup of the account of the currently logged in user. msgid "Backup account" -msgstr "" +msgstr "تهیه نسخهٔ پشتیبان از حساب کاربری" #. TRANS: Client exception thrown when trying to backup an account while not logged in. #, fuzzy @@ -1443,7 +1478,7 @@ msgstr "تنها کاربران وارد شده می توانند پیام‌ه #. TRANS: Client exception thrown when trying to backup an account without having backup rights. msgid "You may not backup your account." -msgstr "" +msgstr "شما نمی‌توانید از حساب کاربری خود نسخهٔ پشتیبان تهیه کنید." #. TRANS: Information displayed on the backup account page. msgid "" @@ -1461,7 +1496,7 @@ msgstr "پشتیبان‌گیری" #. TRANS: Title for submit button to backup an account on the backup account page. msgid "Backup your account." -msgstr "" +msgstr "از حساب کاربری خود نسخهٔ پشتیبان تهیه کنید." #. TRANS: Client error displayed when blocking a user that has already been blocked. msgid "You already blocked that user." @@ -1495,9 +1530,8 @@ msgid "No" msgstr "خیر" #. TRANS: Submit button title for 'No' when blocking a user. -#, fuzzy msgid "Do not block this user." -msgstr "کاربر را مسدود نکن" +msgstr "کاربر را مسدود نکن." #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -1511,7 +1545,6 @@ msgid "Yes" msgstr "بله" #. TRANS: Submit button title for 'Yes' when blocking a user. -#, fuzzy msgid "Block this user." msgstr "کاربر را مسدود کن" @@ -1540,10 +1573,9 @@ msgid "Unblock user from group" msgstr "آزاد کردن کاربر در پیوستن به گروه" #. TRANS: Button text for unblocking a user from a group. -#, fuzzy msgctxt "BUTTON" msgid "Unblock" -msgstr "آزاد سازی" +msgstr "باز شود" #. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. @@ -1559,29 +1591,12 @@ msgstr "فرستادن به %s" #. TRANS: Title for leave group page after leaving. #. TRANS: %s$s is the leaving user's name, %2$s is the group name. #. TRANS: Title for leave group page after leaving. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s گروه %2$s را ترک کرد" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "شما به سیستم وارد نشده اید." @@ -1602,7 +1617,6 @@ msgid "No profile with that ID." msgstr "کاربری با چنین شناسه‌ای وجود ندارد." #. TRANS: Title after unsubscribing from a group. -#, fuzzy msgctxt "TITLE" msgid "Unsubscribed" msgstr "لغو اشتراک شده" @@ -1673,14 +1687,12 @@ msgid "Notice" msgstr "پیام‌ها" #. TRANS: Client exception displayed trying to delete a user account while not logged in. -#, fuzzy msgid "Only logged-in users can delete their account." -msgstr "تنها کاربران وارد شده می توانند پیام‌ها را تکرار کنند." +msgstr "تنها کاربران وارد شده می توانند حساب کاربری خود را حذف کنند." #. TRANS: Client exception displayed trying to delete a user account without have the rights to do that. -#, fuzzy msgid "You cannot delete your account." -msgstr "شما نمی‌توانید کاربران را پاک کنید." +msgstr "شما نمی‌توانید حساب کاربری خود را حذف کنید." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." @@ -1690,7 +1702,7 @@ msgstr "من مطمئن هستم." #. TRANS: %s is the text that needs to be input. #, php-format msgid "You must write \"%s\" exactly in the box." -msgstr "" +msgstr "شما باید عبارت \"%s\" را در کادر بنویسید." #. TRANS: Confirmation that a user account has been deleted. msgid "Account deleted." @@ -1745,6 +1757,7 @@ msgstr "برنامه یافت نشد." msgid "You are not the owner of this application." msgstr "شما مالک این برنامه نیستید." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "یک مشکل با رمز نشست شما وجود داشت." @@ -1839,12 +1852,10 @@ msgid "Are you sure you want to delete this notice?" msgstr "آیا اطمینان دارید که می‌خواهید این پیام را پاک کنید؟" #. TRANS: Submit button title for 'No' when deleting a notice. -#, fuzzy msgid "Do not delete this notice." msgstr "این پیام را پاک نکن" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#, fuzzy msgid "Delete this notice." msgstr "این پیام را پاک کن" @@ -1857,7 +1868,6 @@ msgid "You can only delete local users." msgstr "شما فقط می‌توانید کاربران محلی را پاک کنید." #. TRANS: Title of delete user page. -#, fuzzy msgctxt "TITLE" msgid "Delete user" msgstr "حذف کاربر" @@ -1875,9 +1885,8 @@ msgstr "" "پاک و بدون برگشت خواهند بود." #. TRANS: Submit button title for 'No' when deleting a user. -#, fuzzy msgid "Do not delete this user." -msgstr "این پیام را پاک نکن" +msgstr "این کاربر را حذف نکن" #. TRANS: Submit button title for 'Yes' when deleting a user. msgid "Delete this user." @@ -2231,6 +2240,8 @@ 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. @@ -2654,7 +2665,7 @@ msgstr "یک فهرست از کاربران در این گروه" #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." -msgstr "" +msgstr "فقط مدیر گروه اجازه دارد تا عضویت کاربران را تایید کند." #. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. #. TRANS: %s is the name of the group. @@ -2807,7 +2818,7 @@ msgstr "نشانی پیام‌رسان فوری" #. TRANS: Field title for IM address. %s is the IM service name. #, php-format msgid "%s screenname." -msgstr "" +msgstr "%s نام کاربری." #. TRANS: Header for IM preferences form. #, fuzzy @@ -3103,7 +3114,7 @@ msgstr "شما یک کاربر این گروه نیستید." #. TRANS: User admin panel title msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "مجوز" #. TRANS: Form instructions for the site license admin panel. msgid "License for this StatusNet site" @@ -3118,6 +3129,8 @@ msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"هنگامی که شما از گزینه‌ی «تمام حقوق محفوظ است» استفاده می‌کنید، باید نام صاحب " +"اثر را مشخص کنید." #. TRANS: Client error displayed selecting a too long license title in the license admin panel. #, fuzzy @@ -3142,7 +3155,7 @@ msgstr "" #. TRANS: Form legend in the license admin panel. msgid "License selection" -msgstr "" +msgstr "انتخاب مجوز" #. TRANS: License option in the license admin panel. #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. @@ -3151,15 +3164,15 @@ msgstr "خصوصی" #. TRANS: License option in the license admin panel. msgid "All Rights Reserved" -msgstr "" +msgstr "تمام حقوق محفوظ است." #. TRANS: License option in the license admin panel. msgid "Creative Commons" -msgstr "" +msgstr "کریتیو کامانز" #. TRANS: Dropdown field label in the license admin panel. msgid "Type" -msgstr "" +msgstr "نوع" #. TRANS: Dropdown field instructions in the license admin panel. #, fuzzy @@ -3172,7 +3185,7 @@ msgstr "" #. TRANS: Field label in the license admin panel. msgid "Owner" -msgstr "" +msgstr "صاحب" #. TRANS: Field title in the license admin panel. msgid "Name of the owner of the site's content (if applicable)." @@ -3180,7 +3193,7 @@ msgstr "" #. TRANS: Field label in the license admin panel. msgid "License Title" -msgstr "" +msgstr "عنوان مجوز" #. TRANS: Field title in the license admin panel. msgid "The title of the license." @@ -3383,6 +3396,9 @@ msgid "Ajax Error" msgstr "خطای آژاکس" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "پیام جدید" @@ -4143,11 +4159,11 @@ msgstr "اشتراک‌ها" #. TRANS: Dropdown field option for following policy. msgid "Let anyone follow me" -msgstr "" +msgstr "به همه اجازه دهید تا من را دنبال کند." #. TRANS: Dropdown field option for following policy. msgid "Ask me first" -msgstr "" +msgstr "اول از من بپرس" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." @@ -4411,10 +4427,6 @@ msgstr "بازیابی گذرواژه درخواست شد" msgid "Password saved" msgstr "گذرواژه ذخیره شد." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "عمل نامعلوم" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4511,6 +4523,7 @@ msgstr "اجازهٔ ثبت‌نام داده نشده است." msgid "You cannot register if you do not agree to the license." msgstr "شما نمی توانید ثبت نام کنید اگر با لیسانس( جواز ) موافقت نکنید." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "نشانی پست الکترونیکی از قبل وجود دارد." @@ -7725,11 +7738,6 @@ msgctxt "RADIO" msgid "Off" msgstr "خاموش" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "نمی‌توان ظاهر را به روز کرد." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "پیش‌فرض‌های طراحی برگردانده شدند." @@ -8070,6 +8078,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "مشارکت کردن" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8670,6 +8684,13 @@ msgstr "" "متاسفیم، دریافت محل جغرافیایی شما بیش از انتظار طول کشیده است، لطفا بعدا " "دوباره تلاش کنید." +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "پیام‌ها" + #. TRANS: Used in coordinates as abbreviation of north. #, fuzzy msgid "N" @@ -8837,12 +8858,12 @@ msgstr "تنظیمات پیامک" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "تنظیمات نمایه‌تان را تغییر دهید" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "پیکربندی کاربر" #. TRANS: Menu item in primary navigation panel. @@ -8850,11 +8871,14 @@ msgctxt "MENU" msgid "Logout" msgstr "خروج" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "خارج شدن از سایت ." #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "ورود به وب‌گاه" #. TRANS: Menu item in primary navigation panel. @@ -8864,7 +8888,7 @@ msgstr "جست‌وجو" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "جست‌وجوی وب‌گاه" #. TRANS: H2 text for user subscription statistics. @@ -8993,6 +9017,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9300,12 +9346,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "پیام‌ها" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9496,8 +9536,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "بله" - -#~ msgid "Subscribe" -#~ msgstr "اشتراک" +#~ msgid "Couldn't update your design." +#~ msgstr "نمی‌توان ظاهر را به روز کرد." diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 456eebf23e..74600b27ad 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -16,17 +16,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:11+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:51+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Tuntematon toiminto" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Tuntematon toiminto" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -114,6 +149,7 @@ msgstr "Sivua ei ole." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -138,6 +174,7 @@ msgstr "Sivua ei ole." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -154,6 +191,8 @@ msgstr "%1$s ja kaverit, sivu %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -230,28 +269,14 @@ msgstr "Sinä ja kaverisi" msgid "Updates from %1$s and friends on %2$s!" msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-metodia ei löytynyt." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -322,6 +347,8 @@ msgstr "Ulkoasun tallennus epäonnistui." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Ulkoasua ei voitu päivittää." @@ -694,9 +721,12 @@ msgstr "Pyyntötunniste on jo hyväksytty." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " @@ -893,6 +923,8 @@ msgstr "Poistettiin päivitys %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Asiakasohjelman on annettava 'status'-parametri arvoineen." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -908,6 +940,8 @@ msgstr "Viestiä, johon vastataan, ei löytynyt." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -979,6 +1013,8 @@ msgstr "" msgid "Repeats of %s" msgstr "Toistot käyttäjältä %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." @@ -1342,6 +1378,7 @@ msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Käyttäjällä ei ole profiilia." @@ -1368,6 +1405,7 @@ msgstr "Esikatselu" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Poista" @@ -1541,24 +1579,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Et ole kirjautunut sisään." @@ -1722,6 +1743,7 @@ msgstr "Vahvistuskoodia ei löytynyt." msgid "You are not the owner of this application." msgstr "Et ole tämän sovelluksen omistaja." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -3326,6 +3348,9 @@ msgid "Ajax Error" msgstr "Ajax-virhe" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Uusi päivitys" @@ -4365,10 +4390,6 @@ msgstr "Salasanan palautuspyyntö lähetetty." msgid "Password saved" msgstr "Salasana tallennettu." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Tuntematon toiminto" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4466,6 +4487,7 @@ msgstr "Rekisteröityminen ei ole sallittu." msgid "You cannot register if you do not agree to the license." msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Sähköpostiosoite on jo käytössä." @@ -7689,11 +7711,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Off" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Ei voitu päivittää sinun sivusi ulkoasua." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". #, fuzzy msgid "Design defaults restored." @@ -8042,6 +8059,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Liity" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8561,6 +8584,13 @@ msgid "" "try again later" msgstr "" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Päivitykset" + #. TRANS: Used in coordinates as abbreviation of north. #, fuzzy msgid "N" @@ -8730,12 +8760,12 @@ msgstr "Profiilikuva-asetukset" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Vaihda profiiliasetuksesi" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "SMS vahvistus" #. TRANS: Menu item in primary navigation panel. @@ -8743,11 +8773,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Kirjaudu ulos" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Kirjaudu sisään" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Kirjaudu sisään" #. TRANS: Menu item in primary navigation panel. @@ -8758,7 +8791,7 @@ msgstr "Haku" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Haku" #. TRANS: H2 text for user subscription statistics. @@ -8890,6 +8923,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9199,12 +9254,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "Tapahtui virhe, kun estoa poistettiin." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Päivitykset" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9403,8 +9452,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Kyllä" - -#~ msgid "Subscribe" -#~ msgstr "Tilaa" +#~ msgid "Couldn't update your design." +#~ msgstr "Ei voitu päivittää sinun sivusi ulkoasua." diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 8d5e35497c..828a226df3 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -23,17 +23,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:13+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Inconnu" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Action inconnue" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -120,6 +155,7 @@ msgstr "Page non trouvée." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -144,6 +180,7 @@ msgstr "Page non trouvée." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -160,6 +197,8 @@ msgstr "%1$s et ses amis, page %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -239,28 +278,14 @@ msgstr "Vous et vos amis" msgid "Updates from %1$s and friends on %2$s!" msgstr "Statuts de %1$s et ses amis dans %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Méthode API non trouvée !" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -336,6 +361,8 @@ msgstr "Impossible de sauvegarder les parmètres de la conception." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Impossible de mettre à jour votre conception." @@ -709,9 +736,12 @@ msgstr "Le jeton de requête a déjà été autorisé." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " @@ -912,6 +942,8 @@ msgstr "A supprimé l’avis %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Le client doit fournir un paramètre « statut » avec une valeur." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -929,6 +961,8 @@ msgstr "L’avis parent correspondant à cette réponse n’a pas été trouvé. #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -1002,6 +1036,8 @@ msgstr "%1$s avis qui ont été répétées à %2$s / %3$s." msgid "Repeats of %s" msgstr "Reprises de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s avis que %2$s / %3$s a répété." @@ -1386,6 +1422,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Utilisateur sans profil correspondant." @@ -1412,6 +1449,7 @@ msgstr "Aperçu" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Supprimer" @@ -1585,24 +1623,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s a quitté le groupe %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Non connecté." @@ -1765,6 +1786,7 @@ msgstr "Application non trouvée." msgid "You are not the owner of this application." msgstr "Vous n’êtes pas le propriétaire de cette application." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -3416,6 +3438,9 @@ msgid "Ajax Error" msgstr "Erreur Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nouvel avis" @@ -4437,10 +4462,6 @@ msgstr "Récupération de mot de passe demandée" msgid "Password saved" msgstr "Mot de passe enregistré." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Action inconnue" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4536,6 +4557,7 @@ msgstr "Inscription non autorisée." msgid "You cannot register if you do not agree to the license." msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Cette adresse courriel est déjà utilisée." @@ -7799,11 +7821,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Désactivé" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Impossible de mettre à jour votre conception." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Les paramètre par défaut de la conception ont été restaurés." @@ -8152,6 +8169,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Rejoindre" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8761,6 +8784,13 @@ msgstr "" "Désolé, l’obtention de votre localisation prend plus de temps que prévu. " "Veuillez réessayer plus tard." +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Avis" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8926,12 +8956,12 @@ msgstr "Paramètres SMS" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Modifier vos paramètres de profil" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuration utilisateur" #. TRANS: Menu item in primary navigation panel. @@ -8939,11 +8969,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Déconnexion" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Fermer la session" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Ouvrir une session" #. TRANS: Menu item in primary navigation panel. @@ -8953,7 +8986,7 @@ msgstr "Rechercher" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Rechercher sur le site" #. TRANS: H2 text for user subscription statistics. @@ -9079,6 +9112,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Rechercher" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9393,12 +9448,6 @@ msgstr "Le thème contient un fichier de type « .%s », qui n'est pas autorisé msgid "Error opening theme archive." msgstr "Erreur lors de l’ouverture de l’archive du thème." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Avis" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9594,8 +9643,5 @@ msgstr "XML invalide, racine XRD manquante." msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." -#~ msgid "Yes" -#~ msgstr "Oui" - -#~ msgid "Subscribe" -#~ msgstr "S’abonner" +#~ msgid "Couldn't update your design." +#~ msgstr "Impossible de mettre à jour votre conception." diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 5e41c557e3..5ec8e2c0c4 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,17 +12,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:15+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:54+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Descoñecida" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Non se coñece esa acción" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -109,6 +144,7 @@ msgstr "Esa páxina non existe." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,6 +169,7 @@ msgstr "Esa páxina non existe." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -149,6 +186,8 @@ msgstr "%1$s e amigos, páxina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -227,28 +266,14 @@ msgstr "Vostede e mailos seus amigos" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións de %1$s e amigos en %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Non se atopou o método da API." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -324,6 +349,8 @@ msgstr "Non se puido gardar a súa configuración de deseño." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Non se puido actualizar o seu deseño." @@ -696,9 +723,12 @@ msgstr "O pase solicitado xa está autorizado." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Houbo un erro co seu pase. Inténteo de novo." @@ -892,6 +922,8 @@ msgstr "Borrar a nota %d" msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente debe proporcionar un parámetro de \"estado\" cun valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -908,6 +940,8 @@ msgstr "Non se atopou o método da API." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -982,6 +1016,8 @@ msgstr "%1$s actualizacións que responden a actualizacións de %2$s / %3$s." msgid "Repeats of %s" msgstr "Repeticións de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s marcou a nota %2$s como favorita" @@ -1363,6 +1399,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "O usuario non ten perfil." @@ -1389,6 +1426,7 @@ msgstr "Vista previa" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Borrar" @@ -1562,24 +1600,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Non iniciou sesión." @@ -1745,6 +1766,7 @@ msgstr "Non se atopou a aplicación." msgid "You are not the owner of this application." msgstr "Non é o dono desa aplicación." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Houbo un problema co seu pase." @@ -3402,6 +3424,9 @@ msgid "Ajax Error" msgstr "Houbo un erro de AJAX" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nova nota" @@ -4438,10 +4463,6 @@ msgstr "Solicitouse a recuperación do contrasinal" msgid "Password saved" msgstr "Gardouse o contrasinal." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Non se coñece esa acción" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4540,6 +4561,7 @@ msgstr "Non se permite o rexistro." msgid "You cannot register if you do not agree to the license." msgstr "Non pode rexistrarse se non acepta a licenza." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "O enderezo de correo electrónico xa existe." @@ -7804,11 +7826,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desactivado" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Non se puido actualizar o seu deseño." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Restableceuse o deseño por defecto." @@ -8158,6 +8175,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Unirse" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8765,6 +8788,13 @@ msgstr "" "Estase tardando máis do esperado en obter a súa xeolocalización, vólvao " "intentar máis tarde" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notas" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8931,12 +8961,12 @@ msgstr "Configuración dos SMS" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Cambie a configuración do seu perfil" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuración do usuario" #. TRANS: Menu item in primary navigation panel. @@ -8944,13 +8974,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Saír" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "Saír ao anonimato" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Identificarse no sitio" #. TRANS: Menu item in primary navigation panel. @@ -8960,7 +8991,7 @@ msgstr "Buscar" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Buscar no sitio" #. TRANS: H2 text for user subscription statistics. @@ -9087,6 +9118,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Procurar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9403,12 +9456,6 @@ msgstr "O tema visual contén o tipo de ficheiro \".%s\". Non está permitido." msgid "Error opening theme archive." msgstr "Houbo un erro ao abrir o arquivo do tema visual." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notas" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9605,8 +9652,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Si" - -#~ msgid "Subscribe" -#~ msgstr "Subscribirse" +#~ msgid "Couldn't update your design." +#~ msgstr "Non se puido actualizar o seu deseño." diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 1017a8b9fb..2590f4bad6 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,53 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:17+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:55+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Njeznaty" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Njeznata akcija" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -109,6 +144,7 @@ msgstr "Strona njeeksistuje." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,6 +169,7 @@ msgstr "Strona njeeksistuje." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -149,6 +186,8 @@ msgstr "%1$s a přećeljo, strona %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -219,28 +258,14 @@ msgstr "Ty a přećeljo" msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacije wot %1$s a přećelow na %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-metoda njenamakana." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -314,6 +339,8 @@ msgstr "Njeje móžno, designowe nastajenja składować." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Design njeda so aktualizować." @@ -690,9 +717,12 @@ msgstr "Naprašowanski token hižo awtorizowany." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -877,6 +907,8 @@ msgstr "Zhašana zdźělenka %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Klient dyrbi parameter 'status' z hódnotu podać." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -894,6 +926,8 @@ msgstr "Wotpowědna zdźělenka njenamakana." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -965,6 +999,8 @@ msgstr "Aktualizacije z %1$s wot %2$s / %3$s faworizowane" msgid "Repeats of %s" msgstr "Wospjetowanja wot %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s je zdźělenku %2$s jako faworit markěrował." @@ -1329,6 +1365,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Wužiwar bjez hodźaceho so profila." @@ -1355,6 +1392,7 @@ msgstr "Přehlad" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Zhašeć" @@ -1520,24 +1558,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s je skupinu %2$s wopušćił" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Njepřizjewjeny." @@ -1696,6 +1717,7 @@ msgstr "Aplikaciska njenamakana." msgid "You are not the owner of this application." msgstr "Njejsy wobsedźer tuteje aplikacije." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -3236,6 +3258,9 @@ msgid "Ajax Error" msgstr "Zmylk Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nowa zdźělenka" @@ -4205,10 +4230,6 @@ msgstr "Wobnowjenje hesła požadane" msgid "Password saved" msgstr "Hesło składowane" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Njeznata akcija" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 abo wjace znamješkow, a njezabudź jo!" @@ -4301,6 +4322,7 @@ msgstr "Registracija njedowolena." msgid "You cannot register if you do not agree to the license." msgstr "Njemóžeš so registrować, jeli njepřizwoleš do licency." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "E-mejlowa adresa hižo eksistuje." @@ -7381,11 +7403,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Wupinjeny" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Twój design njeda so aktualizować." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Designowe standardne nastajenja wobnowjene." @@ -7741,6 +7758,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Zastupić" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8032,7 +8055,6 @@ msgstr "" "jenož ty móžeš widźeć." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "Dochadny póst" @@ -8043,7 +8065,6 @@ msgid "Your incoming messages." msgstr "Twoje dochadźace powěsće" #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "Wuchadny póst" @@ -8248,6 +8269,13 @@ msgid "" "try again later" msgstr "" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Zdźělenki" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "S" @@ -8411,12 +8439,12 @@ msgstr "SMS-nastajenja" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Twoje profilowe nastajenja změnić" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Wužiwarska konfiguracija" #. TRANS: Menu item in primary navigation panel. @@ -8424,13 +8452,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Wotzjewić" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "Ze sydła wotzjewić" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Při sydle přizjewić" #. TRANS: Menu item in primary navigation panel. @@ -8440,7 +8469,7 @@ msgstr "Pytać" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Pytanske sydło" #. TRANS: H2 text for user subscription statistics. @@ -8565,6 +8594,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Pytać" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -8871,12 +8922,6 @@ msgstr "Šat wobsahuje dataju typa '.%s', kotryž njeje dowoleny." msgid "Error opening theme archive." msgstr "Zmylk při wočinjenju šatoweho archiwa." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Zdźělenki" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9086,8 +9131,5 @@ msgstr "Njepłaćiwy XML, korjeń XRD faluje." msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" -#~ msgid "Yes" -#~ msgstr "Haj" - -#~ msgid "Subscribe" -#~ msgstr "Abonować" +#~ msgid "Couldn't update your design." +#~ msgstr "Twój design njeda so aktualizować." diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 830a0587fa..9af6024782 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,18 +12,53 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:19+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:57+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Ismeretlen fájltípus" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Ismeretlen művelet" + #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" msgstr "Hozzáférés" @@ -111,6 +146,7 @@ msgstr "Nincs ilyen lap." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -135,6 +171,7 @@ msgstr "Nincs ilyen lap." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -151,6 +188,8 @@ msgstr "%1$s és barátai, %2$d oldal" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -225,28 +264,14 @@ msgstr "Te és a barátaid" msgid "Updates from %1$s and friends on %2$s!" msgstr "Frissítések %1$s felhasználótól, és barátok a következő oldalon: %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Az API-metódus nem található." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -320,6 +345,8 @@ msgstr "Nem sikerült elmenteni a megjelenítési beállításaid." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Nem sikerült frissíteni a megjelenítést." @@ -695,9 +722,12 @@ msgstr "Nincs jogosultságod." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Probléma volt a munkameneted tokenjével. Kérlek, próbáld újra." @@ -888,6 +918,8 @@ msgstr "Hír törlése" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -904,6 +936,8 @@ msgstr "Az API-metódus nem található." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -975,6 +1009,8 @@ msgstr "" msgid "Repeats of %s" msgstr "" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez" @@ -1354,6 +1390,7 @@ msgstr "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s leh #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "" @@ -1380,6 +1417,7 @@ msgstr "Előnézet" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1554,24 +1592,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s csatlakozott a(z) %2$s csoporthoz" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nem vagy bejelentkezve." @@ -1737,6 +1758,7 @@ msgstr "" msgid "You are not the owner of this application." msgstr "" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -3329,6 +3351,9 @@ msgid "Ajax Error" msgstr "Ajax-hiba" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Új hír" @@ -4340,10 +4365,6 @@ msgstr "Jelszó visszaállítás kérvényezve" msgid "Password saved" msgstr "Jelszó elmentve." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Ismeretlen művelet" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4438,6 +4459,7 @@ msgstr "A regisztráció nem megengedett." msgid "You cannot register if you do not agree to the license." msgstr "Nem tudsz regisztrálni ha nem fogadod el a licencet." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Az e-mail cím már létezik." @@ -7526,11 +7548,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Ki" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Nem sikerült frissíteni a designt." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "" @@ -7880,6 +7897,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Csatlakozzunk" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8445,6 +8468,13 @@ msgid "" "try again later" msgstr "" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Hírek" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "É" @@ -8611,12 +8641,12 @@ msgstr "SMS beállítások" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Változtasd meg a jelszavad" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "A felhasználók beállításai" #. TRANS: Menu item in primary navigation panel. @@ -8625,11 +8655,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Kijelentkezés" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Kijelentkezés a webhelyről" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Bejelentkezés a webhelyre" #. TRANS: Menu item in primary navigation panel. @@ -8640,7 +8673,7 @@ msgstr "Keresés" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "A webhely témája." #. TRANS: H2 text for user subscription statistics. @@ -8766,6 +8799,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9075,12 +9130,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Hírek" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9277,8 +9326,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Igen" - -#~ msgid "Subscribe" -#~ msgstr "Kövessük" +#~ msgid "Couldn't update your design." +#~ msgstr "Nem sikerült frissíteni a designt." diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 979f2922e4..a1ba7f2109 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:21+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:13:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Incognite" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Action incognite" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -106,6 +141,7 @@ msgstr "Pagina non existe." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -130,6 +166,7 @@ msgstr "Pagina non existe." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -146,6 +183,8 @@ msgstr "%1$s e amicos, pagina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -224,28 +263,14 @@ msgstr "Tu e amicos" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualisationes de %1$s e su amicos in %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Methodo API non trovate." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -321,6 +346,8 @@ msgstr "Impossibile salveguardar le configurationes del apparentia." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Non poteva actualisar le apparentia." @@ -690,9 +717,12 @@ msgstr "Indicio de requesta jam autorisate." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." @@ -888,6 +918,8 @@ msgstr "Nota %d delite" msgid "Client must provide a 'status' parameter with a value." msgstr "Le cliente debe fornir un parametro 'status' con un valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -905,6 +937,8 @@ msgstr "Nota genitor non trovate." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -977,6 +1011,8 @@ msgstr "Notas de %1$s que esseva repetite a %2$s / %3$s." msgid "Repeats of %s" msgstr "Repetitiones de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Notas de %1$s que %2$s / %3$s ha repetite." @@ -1342,6 +1378,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Usator sin profilo correspondente" @@ -1368,6 +1405,7 @@ msgstr "Previsualisation" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Deler" @@ -1542,24 +1580,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s quitava le gruppo %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Tu non ha aperite un session." @@ -1719,6 +1740,7 @@ msgstr "Application non trovate." msgid "You are not the owner of this application." msgstr "Tu non es le proprietario de iste application." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -3314,6 +3336,9 @@ msgid "Ajax Error" msgstr "Error de Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nove nota" @@ -4312,10 +4337,6 @@ msgstr "Recuperation de contrasigno requestate" msgid "Password saved" msgstr "Contrasigno salveguardate" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Action incognite" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 o plus characteres, e non oblida lo!" @@ -4406,6 +4427,7 @@ msgstr "Creation de conto non permittite." msgid "You cannot register if you do not agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Le adresse de e-mail existe ja." @@ -7536,11 +7558,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Non active" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Non poteva actualisar tu apparentia." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Apparentia predefinite restaurate." @@ -7856,7 +7873,7 @@ msgstr[1] "%dB" #. TRANS: Body text for confirmation code e-mail. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, #. TRANS: %3$s is the display name of an IM plugin. -#, fuzzy, php-format +#, php-format msgid "" "User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " "that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " @@ -7864,9 +7881,9 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" -"Le usator \"%1$s\" de %2$s ha dicite que tu pseudonymo de %2$s pertine a " +"Le usator \"%1$s\" de %2$s ha dicite que tu pseudonymo de %3$s pertine a " "ille o illa. Si isto es correcte, tu pote confirmar lo con un clic super " -"iste URL: %3$s . (Si tu non pote cliccar super illo, copia-e-colla lo in le " +"iste URL: %4$s . (Si tu non pote cliccar super illo, copia-e-colla lo in le " "barra de adresse de tu navigator del web.) Si iste usator non es tu, o si tu " "non requestava iste confirmation, simplemente ignora iste message." @@ -7886,6 +7903,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "Le methodo de transporto non pote esser nulle." +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Inscriber" + #. TRANS: Button text on form to leave a group. msgctxt "BUTTON" msgid "Leave" @@ -8254,7 +8277,6 @@ msgstr "" "solmente tu pote leger." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "Cassa de entrata" @@ -8265,7 +8287,6 @@ msgid "Your incoming messages." msgstr "Tu messages recipite" #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "Cassa de exito" @@ -8469,6 +8490,12 @@ msgstr "" "Pardono, le obtention de tu geolocalisation prende plus tempore que " "previste. Per favor reproba plus tarde." +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Notas" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8626,11 +8653,13 @@ msgid "Settings" msgstr "Configurationes" #. TRANS: Menu item title in primary navigation panel. -msgid "Change your personal settings" +#, fuzzy +msgid "Change your personal settings." msgstr "Cambiar tu optiones personal" #. TRANS: Menu item title in primary navigation panel. -msgid "Site configuration" +#, fuzzy +msgid "Site configuration." msgstr "Configuration del sito" #. TRANS: Menu item in primary navigation panel. @@ -8638,11 +8667,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Clauder session" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Terminar le session del sito" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Authenticar te a iste sito" #. TRANS: Menu item in primary navigation panel. @@ -8651,7 +8683,8 @@ msgid "Search" msgstr "Cercar" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Cercar in le sito" #. TRANS: H2 text for user subscription statistics. @@ -8773,6 +8806,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Cercar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" msgid "People" @@ -9070,11 +9125,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "Error durante le apertura del archivo del apparentia." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "Notas" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9263,8 +9313,5 @@ msgstr "XML invalide, radice XRD mancante." msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." -#~ msgid "Yes" -#~ msgstr "Si" - -#~ msgid "Subscribe" -#~ msgstr "Subscriber" +#~ msgid "Couldn't update your design." +#~ msgstr "Non poteva actualisar tu apparentia." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 32e61c4f54..c99385d521 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:23+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:00+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Sconosciuto" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Azione sconosciuta" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -110,6 +145,7 @@ msgstr "Pagina inesistente." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -134,6 +170,7 @@ msgstr "Pagina inesistente." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -150,6 +187,8 @@ msgstr "%1$s e amici, pagina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -226,28 +265,14 @@ msgstr "Tu e i tuoi amici" msgid "Updates from %1$s and friends on %2$s!" msgstr "Messaggi da %1$s e amici su %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Metodo delle API non trovato." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -323,6 +348,8 @@ msgstr "Impossibile salvare la impostazioni dell'aspetto." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Impossibile aggiornare l'aspetto." @@ -703,9 +730,12 @@ msgstr "Autorizzazione non presente." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Si è verificato un problema con il tuo token di sessione. Prova di nuovo." @@ -905,6 +935,8 @@ msgstr "Elimina messaggio" msgid "Client must provide a 'status' parameter with a value." msgstr "Il client deve fornire un parametro \"status\" con un valore." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -921,6 +953,8 @@ msgstr "Metodo delle API non trovato." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -993,6 +1027,8 @@ msgstr "%1$s messaggi in risposta a quelli da %2$s / %3$s" msgid "Repeats of %s" msgstr "Ripetizioni di %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) ha aggiunto il tuo messaggio tra i suoi preferiti" @@ -1372,6 +1408,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Utente senza profilo corrispondente." @@ -1398,6 +1435,7 @@ msgstr "Anteprima" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1575,24 +1613,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ha lasciato il gruppo %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Accesso non effettuato." @@ -1758,6 +1779,7 @@ msgstr "Applicazione non trovata." msgid "You are not the owner of this application." msgstr "Questa applicazione non è di tua proprietà." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -3411,6 +3433,9 @@ msgid "Ajax Error" msgstr "Errore di Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nuovo messaggio" @@ -4445,10 +4470,6 @@ msgstr "Richiesta password di ripristino" msgid "Password saved" msgstr "Password salvata." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Azione sconosciuta" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4545,6 +4566,7 @@ msgstr "Registrazione non consentita." msgid "You cannot register if you do not agree to the license." msgstr "Non puoi registrarti se non accetti la licenza." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Indirizzo email già esistente." @@ -7791,11 +7813,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Off" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Impossibile aggiornare l'aspetto." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Valori predefiniti ripristinati." @@ -8141,6 +8158,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Iscriviti" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8750,6 +8773,13 @@ msgstr "" "Il recupero della tua posizione geografica sta impiegando più tempo del " "previsto. Riprova più tardi." +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Messaggi" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8916,12 +8946,12 @@ msgstr "Impostazioni SMS" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Modifica le impostazioni del tuo profilo" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configurazione utente" #. TRANS: Menu item in primary navigation panel. @@ -8929,11 +8959,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Esci" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Termina la tua sessione sul sito" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Accedi al sito" #. TRANS: Menu item in primary navigation panel. @@ -8943,7 +8976,7 @@ msgstr "Cerca" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Cerca nel sito" #. TRANS: H2 text for user subscription statistics. @@ -9070,6 +9103,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Cerca" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9384,12 +9439,6 @@ msgstr "Il tema contiene file di tipo \".%s\" che non sono supportati." msgid "Error opening theme archive." msgstr "Errore nell'aprire il file del tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Messaggi" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9586,8 +9635,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Sì" - -#~ msgid "Subscribe" -#~ msgstr "Abbonati" +#~ msgid "Couldn't update your design." +#~ msgstr "Impossibile aggiornare l'aspetto." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 65f04cc3d3..90253cacfb 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,17 +14,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:25+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:01+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "不明" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "不明なアクション" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -112,6 +147,7 @@ msgstr "そのようなページはありません。" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -136,6 +172,7 @@ msgstr "そのようなページはありません。" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -152,6 +189,8 @@ msgstr "%1$sとその友人、%2$dページ目" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -228,28 +267,14 @@ msgstr "あなたと友人" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s に %1$s と友人からの更新があります!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API メソッドが見つかりません。" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -323,6 +348,8 @@ msgstr "あなたのデザイン設定を保存できません。" #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "デザインを更新できませんでした。" @@ -701,9 +728,12 @@ msgstr "認証されていません。" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "あなたのセッショントークンに問題がありました。再度お試しください。" @@ -897,6 +927,8 @@ msgstr "つぶやき削除" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -912,6 +944,8 @@ msgstr "API メソッドが見つかりません。" #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -981,6 +1015,8 @@ msgstr "%2$s からアップデートに答える %1$s アップデート" msgid "Repeats of %s" msgstr "%s の返信" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" @@ -1362,6 +1398,7 @@ msgstr "自分のアバターをアップロードできます。最大サイズ #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "合っているプロフィールのないユーザ" @@ -1388,6 +1425,7 @@ msgstr "プレビュー" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1567,24 +1605,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s はグループ %2$s に残りました。" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "ログインしていません。" @@ -1750,6 +1771,7 @@ msgstr "アプリケーションが見つかりません。" msgid "You are not the owner of this application." msgstr "このアプリケーションのオーナーではありません。" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "あなたのセッショントークンに関する問題がありました。" @@ -3407,6 +3429,9 @@ msgid "Ajax Error" msgstr "Ajax エラー" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "新しいつぶやき" @@ -4440,10 +4465,6 @@ msgstr "パスワード回復がリクエストされました" msgid "Password saved" msgstr "パスワードが保存されました。" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "不明なアクション" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4538,6 +4559,7 @@ msgstr "登録は許可されていません。" msgid "You cannot register if you do not agree to the license." msgstr "ライセンスに同意頂けない場合は登録できません。" +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "メールアドレスが既に存在します。" @@ -7779,11 +7801,6 @@ msgctxt "RADIO" msgid "Off" msgstr "オフ" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "あなたのデザインを更新できません。" - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "デフォルトのデザインを回復。" @@ -8123,6 +8140,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "参加" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8701,6 +8724,13 @@ msgstr "" "すみません、あなたの位置を検索するのが予想より長くかかっています、後でもう一" "度試みてください" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "つぶやき" + #. TRANS: Used in coordinates as abbreviation of north. #, fuzzy msgid "N" @@ -8870,12 +8900,12 @@ msgstr "SMS 設定" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "プロファイル設定の変更" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "ユーザ設定" #. TRANS: Menu item in primary navigation panel. @@ -8883,11 +8913,14 @@ msgctxt "MENU" msgid "Logout" msgstr "ロゴ" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "サイトのテーマ" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "サイトへログイン" #. TRANS: Menu item in primary navigation panel. @@ -8898,7 +8931,7 @@ msgstr "検索" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "サイト検索" #. TRANS: H2 text for user subscription statistics. @@ -9025,6 +9058,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9332,12 +9387,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "ブロックの削除エラー" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "つぶやき" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9527,8 +9576,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "はい" - -#~ msgid "Subscribe" -#~ msgstr "フォロー" +#~ msgid "Couldn't update your design." +#~ msgstr "あなたのデザインを更新できません。" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 12afe428e3..d32b30c80b 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:27+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:02+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "უცნობი" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "უცნობი მოქმედება" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -106,6 +141,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -130,6 +166,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -146,6 +183,8 @@ msgstr "%1$s და მეგობრები, გვერდი %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -222,28 +261,14 @@ msgstr "შენ და მეგობრები" msgid "Updates from %1$s and friends on %2$s!" msgstr " %1$s და მეგობრების განახლებები %2$s-ზე!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API მეთოდი ვერ მოიძებნა." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -316,6 +341,8 @@ msgstr "სამწუხაროდ თქვენი დიზაინი #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "დიზაინის განახლება ვერ მოხერხდა." @@ -687,9 +714,12 @@ msgstr "თქვენ არ ხართ ავტორიზირებუ #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -882,6 +912,8 @@ msgstr "შეტყობინების წაშლა" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -897,6 +929,8 @@ msgstr "API მეთოდი ვერ მოიძებნა." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -966,6 +1000,8 @@ msgstr "განახლებები არჩეული %1$s-ს მი msgid "Repeats of %s" msgstr "" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s-მა (@%s) დაამატა თქვენი შეტყობინება თავის რჩეულებში" @@ -1345,6 +1381,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "მომხმარებელი შესაბამისი პროფილის გარეშე." @@ -1371,6 +1408,7 @@ msgstr "წინასწარი გადახედვა" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1545,24 +1583,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s-მა დატოვა ჯგუფი %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "ავტორიზებული არ ხართ." @@ -1728,6 +1749,7 @@ msgstr "აპლიკაცია ვერ მოიძებნა." msgid "You are not the owner of this application." msgstr "თქვენ არ ხართ ამ აპლიკაციის მფლობელი." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -3371,6 +3393,9 @@ msgid "Ajax Error" msgstr "Ajax შეცდომა" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "ახალი შეტყობინება" @@ -4390,10 +4415,6 @@ msgstr "პაროლის აღდგენა მოთხოვნილ msgid "Password saved" msgstr "პაროლი შენახულია." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "უცნობი მოქმედება" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4490,6 +4511,7 @@ msgstr "რეგისტრაცია არ არის დაშვებ msgid "You cannot register if you do not agree to the license." msgstr "ვერ დარეგისტრირდებით თუ არ დაეთანხმებით ლიცენზიის პირობებს." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "ელ. ფოსტის მისამართი უკვე არსებობს." @@ -7698,11 +7720,6 @@ msgctxt "RADIO" msgid "Off" msgstr "გამორთვა" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "დიზაინის განახლება ვერ მოხერხდა." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "დიზაინის პირველადი პარამეტრები დაბრუნებულია." @@ -8043,6 +8060,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "გაერთიანება" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8625,6 +8648,13 @@ msgstr "" "ბოდიში, როგორც ჩანს ადგილმდებარეობის დადგენას ჩვეულებრივზე მეტი ხანი " "სჭირდება, გთხოვთ სცადოთ მოგვიანებით" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "შეტყობინებები" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "ჩ" @@ -8790,12 +8820,12 @@ msgstr "SMS პარამეტრები" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "შეცვალე პროფილის პარამეტრები" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "მომხმარებლის კონფიგურაცია" #. TRANS: Menu item in primary navigation panel. @@ -8803,13 +8833,14 @@ msgctxt "MENU" msgid "Logout" msgstr "გასვლა" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "გასვლა საიტიდან" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "საიტზე შესვლა" #. TRANS: Menu item in primary navigation panel. @@ -8819,7 +8850,7 @@ msgstr "ძიება" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "ძიება საიტზე" #. TRANS: H2 text for user subscription statistics. @@ -8946,6 +8977,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9256,12 +9309,6 @@ msgstr "თემა შეიცავს ფაილის ტიპს '.%s' msgid "Error opening theme archive." msgstr "თემის არქივის გახსნისას მოხდა შეცდომა." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "შეტყობინებები" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9452,8 +9499,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "დიახ" - -#~ msgid "Subscribe" -#~ msgstr "გამოწერა" +#~ msgid "Couldn't update your design." +#~ msgstr "დიზაინის განახლება ვერ მოხერხდა." diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 5f2936d1c6..76759b32f0 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:29+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:04+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "알려지지 않은 행동" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "알려지지 않은 행동" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -108,6 +143,7 @@ msgstr "해당하는 페이지 없음" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -132,6 +168,7 @@ msgstr "해당하는 페이지 없음" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -148,6 +185,8 @@ msgstr "%s 및 친구들, %d 페이지" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -220,28 +259,14 @@ msgstr "당신 및 친구들" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API 메서드 발견 안 됨." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -312,6 +337,8 @@ msgstr "디자인 설정을 저장할 수 없습니다." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "디자인을 업데이트 할 수 없습니다." @@ -687,9 +714,12 @@ msgstr "당신은 이 프로필에 구독되지 않고있습니다." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "세션토큰에 문제가 있습니다. 다시 시도해주십시오." @@ -888,6 +918,8 @@ msgstr "통지 삭제" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -903,6 +935,8 @@ msgstr "API 메서드 발견 안 됨." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -972,6 +1006,8 @@ msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." msgid "Repeats of %s" msgstr "%s에 답신" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다." @@ -1351,6 +1387,7 @@ msgstr "당신의 개인 아바타를 업로드할 수 있습니다. 최대 파 #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." @@ -1377,6 +1414,7 @@ msgstr "미리보기" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #, fuzzy msgctxt "BUTTON" msgid "Delete" @@ -1554,24 +1592,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s의 상태 (%2$s에서)" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "로그인하고 있지 않습니다." @@ -1737,6 +1758,7 @@ msgstr "인증 코드가 없습니다." msgid "You are not the owner of this application." msgstr "이 응용프로그램 삭제 않기" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." @@ -3355,6 +3377,9 @@ msgid "Ajax Error" msgstr "Ajax 에러입니다." #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "새로운 통지" @@ -4363,10 +4388,6 @@ msgstr "비밀 번호 복구가 요청되었습니다." msgid "Password saved" msgstr "비밀 번호 저장" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "알려지지 않은 행동" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4463,6 +4484,7 @@ msgstr "가입이 허용되지 않습니다." msgid "You cannot register if you do not agree to the license." msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "이메일 주소가 이미 존재 합니다." @@ -7628,11 +7650,6 @@ msgctxt "RADIO" msgid "Off" msgstr "끄기" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "디자인을 수정할 수 없습니다." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". #, fuzzy msgid "Design defaults restored." @@ -7972,6 +7989,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "가입" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8475,6 +8498,13 @@ msgid "" "try again later" msgstr "" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "통지" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "북" @@ -8642,12 +8672,12 @@ msgstr "메일 설정" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "프로필 세팅 바꾸기" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "메일 주소 확인" #. TRANS: Menu item in primary navigation panel. @@ -8655,11 +8685,14 @@ msgctxt "MENU" msgid "Logout" msgstr "로그아웃" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "이 사이트에서 로그아웃" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "이 사이트에 로그인" #. TRANS: Menu item in primary navigation panel. @@ -8669,7 +8702,7 @@ msgstr "검색" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "검색 도움말" #. TRANS: H2 text for user subscription statistics. @@ -8798,6 +8831,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "검색" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9105,12 +9160,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "차단 제거 에러!" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "통지" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9301,8 +9350,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "예" - -#~ msgid "Subscribe" -#~ msgstr "구독" +#~ msgid "Couldn't update your design." +#~ msgstr "디자인을 수정할 수 없습니다." diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 55221e84ac..4ac30b2bf2 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:31+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Непознато" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Непознато дејство" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -109,6 +144,7 @@ msgstr "Нема таква страница." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,6 +169,7 @@ msgstr "Нема таква страница." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -149,6 +186,8 @@ msgstr "%1$s и пријателите, стр. %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -226,28 +265,14 @@ msgstr "Вие и пријателите" msgid "Updates from %1$s and friends on %2$s!" msgstr "Подновувања од %1$s и пријатели на %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API методот не е пронајден." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -323,6 +348,8 @@ msgstr "Не можам да ги зачувам Вашите нагодувањ #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Не може да се поднови Вашиот изглед." @@ -694,9 +721,12 @@ msgstr "Жетонот за барање е веќе овластен." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." @@ -891,6 +921,8 @@ msgstr "Избришана забелешката %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Клиентот мора да укаже вредност за параметарот „статус“" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -906,6 +938,8 @@ msgstr "Матичната забелешка не е пронајдена." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -979,6 +1013,8 @@ msgstr "%1$s забелешки што му се повторени на кор msgid "Repeats of %s" msgstr "Повторувања на %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Забелешки од %1$s што ги повторил корисникот %2$s / %3$s." @@ -1345,6 +1381,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Корисник без соодветен профил." @@ -1371,6 +1408,7 @@ msgstr "Преглед" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Избриши" @@ -1545,24 +1583,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s ја напушти групата %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не сте најавени." @@ -1721,6 +1742,7 @@ msgstr "Програмот не е пронајден." msgid "You are not the owner of this application." msgstr "Не сте сопственик на овој програм." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Се појави проблем со Вашиот сесиски жетон." @@ -3324,6 +3346,9 @@ msgid "Ajax Error" msgstr "Ajax-грешка" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Ново забелешка" @@ -4328,10 +4353,6 @@ msgstr "Побарано е пронаоѓање на лозинката" msgid "Password saved" msgstr "Лозинката е зачувана" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Непознато дејство" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 или повеќе знаци - не заборавајте!" @@ -4422,6 +4443,7 @@ msgstr "Регистрирањето не е дозволено." msgid "You cannot register if you do not agree to the license." msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Адресата веќе постои." @@ -7566,11 +7588,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Искл." -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Не можев да го подновам Вашиот изглед." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Основно-зададениот изглед е вратен." @@ -7886,7 +7903,7 @@ msgstr[1] "%d Б" #. TRANS: Body text for confirmation code e-mail. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, #. TRANS: %3$s is the display name of an IM plugin. -#, fuzzy, php-format +#, php-format msgid "" "User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " "that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " @@ -7894,9 +7911,9 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" -"Корисникот „%1$s“ на %2$s има изјавено дека Вашиот прекар на %2$s е всушност " +"Корисникот „%1$s“ на %2$s има изјавено дека Вашиот прекар на %3$s е всушност " "негов. Ако ова е вистина, можете да потврдите стискајќи на оваа URL-адреса: %" -"3$s . (Ако не можете да ја стиснете, прекопирајте ја во адресната лента на " +"4$s . (Ако не можете да ја стиснете, прекопирајте ја во адресната лента на " "прелистувачот). Ако ова не сте Вие, или ако не ја имате побарано оваа " "потврда, слободно занемарете ја поракава." @@ -7915,6 +7932,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "Преносот не може да биде ништо." +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Зачлени се" + #. TRANS: Button text on form to leave a group. msgctxt "BUTTON" msgid "Leave" @@ -8285,26 +8308,22 @@ msgstr "" "што ќе можете да ги видите само Вие." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "Примени" #. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. -#, fuzzy msgid "Your incoming messages." -msgstr "Ваши приемни пораки" +msgstr "Ваши дојдовни пораки." #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "За праќање" #. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgid "Your sent messages." -msgstr "Ваши испратени пораки" +msgstr "Ваши испратени пораки." #. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." @@ -8324,9 +8343,9 @@ msgstr "Жалиме, приемната пошта не е дозволена." #. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. #. TRANS: %s is the unsupported type. -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s." -msgstr "Неподдржан формат на порака: %s" +msgstr "Неподдржан тип на порака: %s." #. TRANS: Form legend for form to make a user a group admin. msgid "Make user an admin of the group" @@ -8412,34 +8431,31 @@ msgid "from" msgstr "од" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" -msgstr "интернет" +msgstr "мрежно" #. TRANS: A possible notice source (XMPP). msgctxt "SOURCE" msgid "xmpp" -msgstr "" +msgstr "XMPP" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" -msgstr "Е-пошта" +msgstr "е-пошта" #. TRANS: A possible notice source (OpenMicroBlogging). msgctxt "SOURCE" msgid "omb" -msgstr "" +msgstr "OpenMicroBlogging" #. TRANS: A possible notice source (Application Programming Interface). msgctxt "SOURCE" msgid "api" -msgstr "" +msgstr "API" #. TRANS: Client exception thrown when no author for an activity was found. -#, fuzzy msgid "Cannot get author for activity." msgstr "Не можам да го добијам авторот за активноста." @@ -8452,7 +8468,6 @@ msgid "Object not posted to this user." msgstr "Објектот не му е испратен на овој корисник." #. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. -#, fuzzy msgid "Do not know how to handle this kind of target." msgstr "Не знам како да работам со ваква одредница." @@ -8500,6 +8515,12 @@ msgstr "" "Жалиме, но добивањето на Вашата местоположба трае подолго од очекуваното. " "Обидете се подоцна." +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Забелешки" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "С" @@ -8562,15 +8583,13 @@ msgid "Nudge this user" msgstr "Подбуцни го корисников" #. TRANS: Button text to nudge/ping another user. -#, fuzzy msgctxt "BUTTON" msgid "Nudge" -msgstr "Подбуцни" +msgstr "Подбоцни" #. TRANS: Button title to nudge/ping another user. -#, fuzzy msgid "Send a nudge to this user." -msgstr "Испрати подбуцнување на корисников" +msgstr "Подбоцни го корисников." #. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." @@ -8589,9 +8608,8 @@ msgid "Duplicate notice." msgstr "Дуплирана забелешка." #. TRANS: Exception thrown when creating a new subscription fails in OAuth store. -#, fuzzy msgid "Could not insert new subscription." -msgstr "Не може да се внесе нова претплата." +msgstr "Не можев да внесам нова претплата." #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -8657,11 +8675,13 @@ msgid "Settings" msgstr "Нагодувања" #. TRANS: Menu item title in primary navigation panel. -msgid "Change your personal settings" +#, fuzzy +msgid "Change your personal settings." msgstr "Измена на лични поставки" #. TRANS: Menu item title in primary navigation panel. -msgid "Site configuration" +#, fuzzy +msgid "Site configuration." msgstr "Поставки на мреж. место" #. TRANS: Menu item in primary navigation panel. @@ -8669,11 +8689,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Одјава" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Одјава" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Најава" #. TRANS: Menu item in primary navigation panel. @@ -8682,7 +8705,8 @@ msgid "Search" msgstr "Барај" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Пребарај по мрежното место" #. TRANS: H2 text for user subscription statistics. @@ -8767,9 +8791,8 @@ msgid "Repeat this notice?" msgstr "Да ја повторам белешкава?" #. TRANS: Button title to repeat a notice on notice repeat form. -#, fuzzy msgid "Repeat this notice." -msgstr "Повтори ја забелешкава" +msgstr "Повтори ја забелешкава." #. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format @@ -8781,10 +8804,9 @@ msgid "Page not found." msgstr "Страницата не е пронајдена." #. TRANS: Title of form to sandbox a user. -#, fuzzy msgctxt "TITLE" msgid "Sandbox" -msgstr "Песок" +msgstr "Песочник" #. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" @@ -8804,6 +8826,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Пребарај" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" msgid "People" @@ -8957,7 +9001,6 @@ msgid "Authorized connected applications" msgstr "Овластени поврзани програми" #. TRANS: Title of form to silence a user. -#, fuzzy msgctxt "TITLE" msgid "Silence" msgstr "Замолчи" @@ -9030,7 +9073,6 @@ msgid "People Tagcloud as tagged" msgstr "Облак од ознаки за луѓе" #. TRANS: Content displayed in a tag cloud section if there are no tags. -#, fuzzy msgctxt "NOTAGS" msgid "None" msgstr "Без ознаки" @@ -9054,9 +9096,8 @@ msgid "Failed saving theme." msgstr "Зачувувањето на мотивот не успеа." #. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. -#, fuzzy msgid "Invalid theme: Bad directory structure." -msgstr "Неважечки изглед: лош состав на папката." +msgstr "Неважечки изглед: Лош состав на папката." #. TRANS: Client exception thrown when an uploaded theme is larger than the limit. #. TRANS: %d is the number of bytes of the uncompressed theme. @@ -9070,9 +9111,8 @@ msgstr[1] "" "Подигнатиот изглед е преголем; мора да биде помал од %d бајти (ненабиен)." #. TRANS: Server exception thrown when an uploaded theme is incomplete. -#, fuzzy msgid "Invalid theme archive: Missing file css/display.css" -msgstr "Неважечки архив за изглеедот: недостасува податотеката css/display.css" +msgstr "Неважечки архив за изгледот: Недостасува податотеката css/display.css" #. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" @@ -9088,7 +9128,7 @@ msgstr "Овој изглед содржи небезбедни податоте #. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. #. TRANS: %s is the file type that is not allowed. -#, fuzzy, php-format +#, php-format msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "Изгледот содржи податотека од типот „.%s“, која не е дозволена." @@ -9096,11 +9136,6 @@ msgstr "Изгледот содржи податотека од типот „.% msgid "Error opening theme archive." msgstr "Грешка при отворањето на архивот за мотив." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "Забелешки" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9132,7 +9167,7 @@ msgstr "Ја бендисавте забелешкава." #. TRANS: List message for favoured notices. #. TRANS: %d is the number of users that have favoured a notice. -#, fuzzy, php-format +#, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "Белешкава ја бендиса едно лице." @@ -9145,7 +9180,7 @@ msgstr "Ја повторивте забелешкава." #. TRANS: List message for repeated notices. #. TRANS: %d is the number of users that have repeated a notice. -#, fuzzy, php-format +#, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Забелешкава ја има повторено едно лице." @@ -9290,8 +9325,5 @@ msgstr "Неважечки XML. Нема XRD-корен." msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." -#~ msgid "Yes" -#~ msgstr "Да" - -#~ msgid "Subscribe" -#~ msgstr "Претплати се" +#~ msgid "Couldn't update your design." +#~ msgstr "Не можев да го подновам Вашиот изглед." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 5e8e67ad65..ed8acb4649 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,18 +9,53 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:33+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:07+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "അജ്ഞാതം" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "അജ്ഞാതമായ പ്രവൃത്തി" + #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" msgstr "അഭിഗമ്യത" @@ -106,6 +141,7 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -130,6 +166,7 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -146,6 +183,8 @@ msgstr "%1$s ഒപ്പം സുഹൃത്തുക്കളും, താ #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -216,28 +255,14 @@ msgstr "താങ്കളും സുഹൃത്തുക്കളും" msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "എ.പി.ഐ. മെതേഡ് കണ്ടെത്താനായില്ല." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -307,6 +332,8 @@ msgstr "താങ്കളുടെ രൂപകല്പനാ സജ്ജീ #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "താങ്കളുടെ രൂപകല്പന പുതുക്കാനായില്ല." @@ -674,9 +701,12 @@ msgstr "അഭ്യർത്ഥനാ ചീട്ട് മുമ്പേ ത #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "താങ്കളുടെ സെഷൻ ചീട്ടിൽ ഒരു ചെറിയ പ്രശ്നം. ദയവായി വീണ്ടും ശ്രമിക്കുക." @@ -861,6 +891,8 @@ msgstr "%d എന്ന അറിയിപ്പ് മായ്ക്കുക" msgid "Client must provide a 'status' parameter with a value." msgstr "ക്ലയന്റ് 'status' ചരത്തിന് ഒരു വില നൽകിയിരിക്കണം." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -876,6 +908,8 @@ msgstr "മാതൃ അറിയിപ്പ് കണ്ടെത്താന #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -947,6 +981,8 @@ msgstr "" msgid "Repeats of %s" msgstr "%s എന്ന ഉപയോക്താവിന്റെ ആവർത്തനങ്ങൾ" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "" @@ -1311,6 +1347,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "" @@ -1337,6 +1374,7 @@ msgstr "എങ്ങനെയുണ്ടെന്നു കാണുക" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "മായ്ക്കുക" @@ -1503,24 +1541,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s %2$s എന്ന സംഘത്തിൽ നിന്നും ഒഴിവായി" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "ലോഗിൻ ചെയ്തിട്ടില്ല" @@ -1681,6 +1702,7 @@ msgstr "" msgid "You are not the owner of this application." msgstr "" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "താങ്കളുടെ സെഷൻ ചീട്ടിൽ ഒരു പ്രശ്നമുണ്ടായിരുന്നു." @@ -3252,6 +3274,9 @@ msgid "Ajax Error" msgstr "അജാക്സ് പിഴവ്" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "പുതിയ അറിയിപ്പ്" @@ -4239,10 +4264,6 @@ msgstr "രഹസ്യവാക്ക് വീണ്ടെടുക്കൽ msgid "Password saved" msgstr "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "അജ്ഞാതമായ പ്രവൃത്തി" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ, അത് മറക്കരുത്!" @@ -4336,6 +4357,7 @@ msgstr "അംഗത്വമെടുക്കൽ അനുവദിച്ച msgid "You cannot register if you do not agree to the license." msgstr "താങ്കൾ അനുവാദ പത്രം അംഗീകരിക്കുകയില്ലെങ്കിൽ ഭാഗമാകാനാകില്ല." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "ഇമെയിൽ വിലാസം മുമ്പേ നിലവിലുണ്ട്." @@ -7409,11 +7431,6 @@ msgctxt "RADIO" msgid "Off" msgstr "രഹിതം" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "താങ്കളുടെ രൂപകല്പന പുതുക്കാനായില്ല." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "സ്വതേയുള്ള രൂപകല്പന പുനഃസ്ഥാപിച്ചിരിക്കുന്നു." @@ -7754,6 +7771,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "ഭാഗഭാക്കാകുക" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8045,7 +8068,6 @@ msgstr "" "കഴിയുന്നതാണ്." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "ഇൻബോക്സ്" @@ -8056,7 +8078,6 @@ msgid "Your incoming messages." msgstr "താങ്കൾക്ക് വരുന്ന സന്ദേശങ്ങൾ" #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "ഔട്ട്ബോക്സ്" @@ -8258,6 +8279,13 @@ msgstr "" "ക്ഷമിക്കുക, താങ്കളുടെ പ്രദേശം കണ്ടെത്താൻ പ്രതീക്ഷിച്ചതിലധികം സമയം എടുക്കുന്നു, ദയവായി പിന്നീട് " "വീണ്ടും ശ്രമിക്കുക" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "അറിയിപ്പുകൾ" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "വ" @@ -8421,12 +8449,12 @@ msgstr "എസ്.എം.എസ്. സജ്ജീകരണങ്ങൾ" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "താങ്കളുടെ രഹസ്യവാക്ക് മാറ്റുക" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "ഉപയോക്തൃ ക്രമീകരണം" #. TRANS: Menu item in primary navigation panel. @@ -8434,13 +8462,14 @@ msgctxt "MENU" msgid "Logout" msgstr "ലോഗൗട്ട്" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "സൈറ്റിൽ നിന്നും പുറത്തുകടക്കുക" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "സൈറ്റിലേക്ക് പ്രവേശിക്കുക" #. TRANS: Menu item in primary navigation panel. @@ -8450,7 +8479,7 @@ msgstr "തിരയുക" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "സൈറ്റിൽ തിരയുക" #. TRANS: H2 text for user subscription statistics. @@ -8576,6 +8605,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "തിരയുക" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -8876,12 +8927,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "അറിയിപ്പുകൾ" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9076,8 +9121,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "അതെ" - -#~ msgid "Subscribe" -#~ msgstr "വരിക്കാരാകുക" +#~ msgid "Couldn't update your design." +#~ msgstr "താങ്കളുടെ രൂപകല്പന പുതുക്കാനായില്ല." diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 24ea5999a5..d4c474f020 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -12,17 +12,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:37+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:10+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Ukjent" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Ukjent handling" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -109,6 +144,7 @@ msgstr "Ingen slik side." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,6 +169,7 @@ msgstr "Ingen slik side." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -149,6 +186,8 @@ msgstr "%1$s og venner, side %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -225,28 +264,14 @@ msgstr "Du og venner" msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringer fra %1$s og venner på %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-metode ikke funnet." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -320,6 +345,8 @@ msgstr "Kunne ikke lagre dine innstillinger for utseende." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Kunne ikke oppdatere din profils utseende." @@ -694,9 +721,12 @@ msgstr "Du er ikke autorisert." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen." @@ -892,6 +922,8 @@ msgstr "Slettet notis %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Klienten må angi en 'status'-parameter med en verdi." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -907,6 +939,8 @@ msgstr "Foreldrenotis ikke funnet." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -976,6 +1010,8 @@ msgstr "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s." msgid "Repeats of %s" msgstr "Repetisjoner av %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%s /@%s) la din notis til som en favoritt" @@ -1353,6 +1389,7 @@ msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Bruker uten samsvarende profil." @@ -1379,6 +1416,7 @@ msgstr "Forhåndsvis" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Slett" @@ -1552,24 +1590,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s forlot gruppe %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Ikke logget inn." @@ -1735,6 +1756,7 @@ msgstr "Program ikke funnet." msgid "You are not the owner of this application." msgstr "Du er ikke eieren av dette programmet." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. #, fuzzy msgid "There was a problem with your session token." @@ -3361,6 +3383,9 @@ msgid "Ajax Error" msgstr "Ajax-feil" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Ny notis" @@ -4374,10 +4399,6 @@ msgstr "Passordgjenoppretting forespurt" msgid "Password saved" msgstr "Passordet ble lagret" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Ukjent handling" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4473,6 +4494,7 @@ msgstr "Registrering ikke tillatt." msgid "You cannot register if you do not agree to the license." msgstr "Du kan ikke registrere deg om du ikke godtar lisensvilkårene." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "E-postadressen finnes allerede." @@ -7672,11 +7694,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Av" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Kunne ikke oppdatere utseende." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". #, fuzzy msgid "Design defaults restored." @@ -8024,6 +8041,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Bli med" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8625,6 +8648,13 @@ msgstr "" "Beklager, henting av din geoposisjon tar lenger tid enn forventet, prøv " "igjen senere" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notiser" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8791,12 +8821,12 @@ msgstr "SMS-innstillinger" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Endre profilinnstillingene dine" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Brukerkonfigurasjon" #. TRANS: Menu item in primary navigation panel. @@ -8804,13 +8834,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Logg ut" +#. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Logout from the site" +msgid "Logout from the site." msgstr "Logg ut fra nettstedet" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Login to the site" +msgid "Login to the site." msgstr "Log inn på nettstedet" #. TRANS: Menu item in primary navigation panel. @@ -8820,7 +8851,7 @@ msgstr "Søk" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Søk nettsted" #. TRANS: H2 text for user subscription statistics. @@ -8949,6 +8980,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9257,12 +9310,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "Feil ved oppdatering av fjernprofil." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notiser" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9460,8 +9507,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Ja" - -#~ msgid "Subscribe" -#~ msgstr "Abonner" +#~ msgid "Couldn't update your design." +#~ msgstr "Kunne ikke oppdatere utseende." diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 6eb62b802a..a1a7932e2d 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:35+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Onbekend" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Onbekende handeling" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -109,6 +144,7 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -133,6 +169,7 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -149,6 +186,8 @@ msgstr "%1$s en vrienden, pagina %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -228,28 +267,14 @@ msgstr "U en vrienden" msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates van %1$s en vrienden op %2$s." -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "De API-functie is niet aangetroffen." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -325,6 +350,8 @@ msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Het was niet mogelijk uw ontwerp bij te werken." @@ -700,9 +727,12 @@ msgstr "Het verzoektoken is al geautoriseerd." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " @@ -901,6 +931,8 @@ msgstr "Mededeling %d is verwijderd" msgid "Client must provide a 'status' parameter with a value." msgstr "De client moet een parameter \"status\" met een waarde opgeven." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -916,6 +948,8 @@ msgstr "De bovenliggende mededeling is niet aangetroffen." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -990,6 +1024,8 @@ msgstr "Mededelingen van %1$s die zijn herhaald naar %2$s / %3$s." msgid "Repeats of %s" msgstr "Herhaald van %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Mededelingen van %1$s die %2$s / %3$s heeft herhaald." @@ -1363,6 +1399,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Gebruiker zonder bijbehorend profiel." @@ -1389,6 +1426,7 @@ msgstr "Voorvertoning" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Verwijderen" @@ -1563,24 +1601,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s heeft de groep %2$s verlaten" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Niet aangemeld." @@ -1743,6 +1764,7 @@ msgstr "De applicatie is niet gevonden." msgid "You are not the owner of this application." msgstr "U bent niet de eigenaar van deze applicatie." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -3352,6 +3374,9 @@ msgid "Ajax Error" msgstr "Er is een Ajax-fout opgetreden" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nieuw bericht" @@ -4359,10 +4384,6 @@ msgstr "Wachtwoordherstel aangevraagd" msgid "Password saved" msgstr "Het wachtwoord is opgeslagen" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Onbekende handeling" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "Zes of meer tekens, en vergeet uw wachtwoord niet!" @@ -4455,6 +4476,7 @@ msgstr "Registratie is niet toegestaan." msgid "You cannot register if you do not agree to the license." msgstr "U kunt zich niet registreren als u niet akkoord gaat met de licentie." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Het e-mailadres bestaat al." @@ -7628,11 +7650,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Uit" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Het was niet mogelijk uw ontwerp bij te werken." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Het standaardontwerp is weer ingesteld." @@ -7947,7 +7964,7 @@ msgstr[1] "%d bytes" #. TRANS: Body text for confirmation code e-mail. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, #. TRANS: %3$s is the display name of an IM plugin. -#, fuzzy, php-format +#, php-format msgid "" "User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " "that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " @@ -7955,9 +7972,9 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" -"De gebruiker \"%1$s\" op de site %2$s heeft aangegeven dat uw %2$s-" +"De gebruiker \"%1$s\" op de site %2$s heeft aangegeven dat uw %3$s-" "schermnaam van hem of haar is. Als dat klopt, dan kunt u dit bevestigen door " -"op deze verwijzing te klikken: %3$s . (Als u hier niet op kunt klikken, " +"op deze verwijzing te klikken: %4$s . (Als u hier niet op kunt klikken, " "kopieer en plak deze verwijzing dan in de adresbalk van uw webbrowser.) Als " "u deze gebruiker niet bent, of u niet om deze bevestiging hebt gevraagd, " "negeer dit bericht dan." @@ -7976,6 +7993,12 @@ msgstr "Wachtrijen moeten zijn ingeschakeld om IM-plugins te kunnen gebruiken." msgid "Transport cannot be null." msgstr "Er moet een transportmethode worden opgegeven." +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Toetreden" + #. TRANS: Button text on form to leave a group. msgctxt "BUTTON" msgid "Leave" @@ -8347,26 +8370,22 @@ msgstr "" "gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "Postvak IN" #. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. -#, fuzzy msgid "Your incoming messages." -msgstr "Uw inkomende berichten" +msgstr "Uw inkomende berichten." #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "Postvak UIT" #. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgid "Your sent messages." -msgstr "Uw verzonden berichten" +msgstr "Uw verzonden berichten." #. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." @@ -8386,9 +8405,9 @@ msgstr "Inkomende e-mail is niet toegestaan." #. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. #. TRANS: %s is the unsupported type. -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s." -msgstr "Niet ondersteund berichttype: %s" +msgstr "Niet ondersteund berichttype: %s." #. TRANS: Form legend for form to make a user a group admin. msgid "Make user an admin of the group" @@ -8474,7 +8493,6 @@ msgid "from" msgstr "van" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" msgstr "web" @@ -8482,26 +8500,24 @@ msgstr "web" #. TRANS: A possible notice source (XMPP). msgctxt "SOURCE" msgid "xmpp" -msgstr "" +msgstr "XMPP" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" -msgstr "E-mail" +msgstr "e-mail" #. TRANS: A possible notice source (OpenMicroBlogging). msgctxt "SOURCE" msgid "omb" -msgstr "" +msgstr "OMB" #. TRANS: A possible notice source (Application Programming Interface). msgctxt "SOURCE" msgid "api" -msgstr "" +msgstr "API" #. TRANS: Client exception thrown when no author for an activity was found. -#, fuzzy msgid "Cannot get author for activity." msgstr "Het was niet mogelijk de auteur te achterhalen voor de activiteit." @@ -8514,7 +8530,6 @@ msgid "Object not posted to this user." msgstr "Het object is niet aan deze gebruiker verzonden." #. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. -#, fuzzy msgid "Do not know how to handle this kind of target." msgstr "Het is niet bekend hoe dit doel afgehandeld moet worden." @@ -8562,6 +8577,12 @@ msgstr "" "Het ophalen van uw geolocatie duurt langer dan verwacht. Probeer het later " "nog eens" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Mededelingen" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8624,13 +8645,11 @@ msgid "Nudge this user" msgstr "Deze gebruiker porren" #. TRANS: Button text to nudge/ping another user. -#, fuzzy msgctxt "BUTTON" msgid "Nudge" msgstr "Porren" #. TRANS: Button title to nudge/ping another user. -#, fuzzy msgid "Send a nudge to this user." msgstr "Deze gebruiker porren" @@ -8651,7 +8670,6 @@ msgid "Duplicate notice." msgstr "Dubbele mededeling." #. TRANS: Exception thrown when creating a new subscription fails in OAuth store. -#, fuzzy msgid "Could not insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." @@ -8719,11 +8737,13 @@ msgid "Settings" msgstr "Instellingen" #. TRANS: Menu item title in primary navigation panel. -msgid "Change your personal settings" +#, fuzzy +msgid "Change your personal settings." msgstr "Persoonlijke instellingen wijzigen" #. TRANS: Menu item title in primary navigation panel. -msgid "Site configuration" +#, fuzzy +msgid "Site configuration." msgstr "Siteinstellingen" #. TRANS: Menu item in primary navigation panel. @@ -8731,11 +8751,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Afmelden" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Van de site afmelden" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Bij de site aanmelden" #. TRANS: Menu item in primary navigation panel. @@ -8744,7 +8767,8 @@ msgid "Search" msgstr "Zoeken" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Site doorzoeken" #. TRANS: H2 text for user subscription statistics. @@ -8829,9 +8853,8 @@ msgid "Repeat this notice?" msgstr "Deze mededeling herhalen?" #. TRANS: Button title to repeat a notice on notice repeat form. -#, fuzzy msgid "Repeat this notice." -msgstr "Deze mededeling herhalen" +msgstr "Deze mededeling herhalen." #. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format @@ -8843,10 +8866,9 @@ msgid "Page not found." msgstr "De pagina is niet aangetroffen." #. TRANS: Title of form to sandbox a user. -#, fuzzy msgctxt "TITLE" msgid "Sandbox" -msgstr "Zandbak" +msgstr "In zandbak plaatsen" #. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" @@ -8866,6 +8888,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Zoeken" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" msgid "People" @@ -9019,7 +9063,6 @@ msgid "Authorized connected applications" msgstr "Geautoriseerde verbonden applicaties" #. TRANS: Title of form to silence a user. -#, fuzzy msgctxt "TITLE" msgid "Silence" msgstr "Muilkorven" @@ -9092,7 +9135,6 @@ msgid "People Tagcloud as tagged" msgstr "Gebruikerslabelwolk" #. TRANS: Content displayed in a tag cloud section if there are no tags. -#, fuzzy msgctxt "NOTAGS" msgid "None" msgstr "Geen" @@ -9117,7 +9159,6 @@ msgid "Failed saving theme." msgstr "Het opslaan van de vormgeving is mislukt." #. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. -#, fuzzy msgid "Invalid theme: Bad directory structure." msgstr "Ongeldige vormgeving: de mappenstructuur is onjuist." @@ -9135,10 +9176,10 @@ msgstr[1] "" "dan %d bytes." #. TRANS: Server exception thrown when an uploaded theme is incomplete. -#, fuzzy msgid "Invalid theme archive: Missing file css/display.css" msgstr "" -"Ongeldig bestand met vormgeving: het bestand css/display.css is niet aanwezig" +"Ongeldig bestand met vormgeving: het bestand css/display.css is niet " +"aanwezig." #. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" @@ -9154,7 +9195,7 @@ msgstr "Het uiterlijk bevat onveilige namen voor bestandsextensies." #. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. #. TRANS: %s is the file type that is not allowed. -#, fuzzy, php-format +#, php-format msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" "De vormgeving bevat een bestand van het type \".%s\". Dit is niet toegestaan." @@ -9165,11 +9206,6 @@ msgstr "" "Er is een fout opgetreden tijdens het openen van het archiefbestand met de " "vormgeving." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "Mededelingen" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9201,7 +9237,7 @@ msgstr "U hebt deze mededeling op uw favorietenlijst geplaatst." #. TRANS: List message for favoured notices. #. TRANS: %d is the number of users that have favoured a notice. -#, fuzzy, php-format +#, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." msgstr[0] "" @@ -9216,7 +9252,7 @@ msgstr "U hebt deze mededeling herhaald." #. TRANS: List message for repeated notices. #. TRANS: %d is the number of users that have repeated a notice. -#, fuzzy, php-format +#, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." msgstr[0] "Een persoon heeft deze mededeling herhaald." @@ -9360,8 +9396,5 @@ msgstr "Ongeldige XML. De XRD-root mist." msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." -#~ msgid "Yes" -#~ msgstr "Ja" - -#~ msgid "Subscribe" -#~ msgstr "Abonneren" +#~ msgid "Couldn't update your design." +#~ msgstr "Het was niet mogelijk uw ontwerp bij te werken." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 3e11a9a943..a971b542a8 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:38+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:12+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,46 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Nieznane" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Nieznane działanie" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -111,6 +146,7 @@ msgstr "Nie ma takiej strony." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -135,6 +171,7 @@ msgstr "Nie ma takiej strony." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -151,6 +188,8 @@ msgstr "%1$s i przyjaciele, strona %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -229,28 +268,14 @@ msgstr "Ty i przyjaciele" msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Nie odnaleziono metody API." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -328,6 +353,8 @@ msgstr "Nie można zapisać ustawień wyglądu." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Nie można zaktualizować wyglądu." @@ -702,9 +729,12 @@ msgstr "Token żądania został już upoważniony." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." @@ -899,6 +929,8 @@ msgstr "Usunięto wpis %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Klient musi dostarczać parametr \"stan\" z wartością." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -915,6 +947,8 @@ msgstr "Nie odnaleziono wpisu nadrzędnego." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -988,6 +1022,8 @@ msgstr "%1$s aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s." msgid "Repeats of %s" msgstr "Powtórzenia %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Użytkownik %1$s oznaczył wpis %2$s jako ulubiony." @@ -1352,6 +1388,7 @@ msgstr "Można wysłać osobisty awatar. Maksymalny rozmiar pliku to %s." #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Użytkownik bez odpowiadającego profilu." @@ -1378,6 +1415,7 @@ msgstr "Podgląd" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Usuń" @@ -1557,24 +1595,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "Użytkownik %1$s opuścił grupę %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Niezalogowany." @@ -1737,6 +1758,7 @@ msgstr "Nie odnaleziono aplikacji." msgid "You are not the owner of this application." msgstr "Nie jesteś właścicielem tej aplikacji." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." @@ -3370,6 +3392,9 @@ msgid "Ajax Error" msgstr "Błąd AJAX" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nowy wpis" @@ -4383,10 +4408,6 @@ msgstr "Zażądano przywracania hasła" msgid "Password saved" msgstr "Zapisano hasło." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Nieznane działanie" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 lub więcej znaków, i nie zapomnij go." @@ -4481,6 +4502,7 @@ msgid "You cannot register if you do not agree to the license." msgstr "" "Nie można się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Adres e-mail już istnieje." @@ -7713,11 +7735,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Wyłączone" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Nie można zaktualizować wyglądu." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Przywrócono domyślny wygląd." @@ -8074,6 +8091,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Dołącz" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8680,6 +8703,13 @@ msgstr "" "Pobieranie danych geolokalizacji trwa dłużej niż powinno, proszę spróbować " "ponownie później" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Wpisy" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "Północ" @@ -8845,12 +8875,12 @@ msgstr "Ustawienia SMS" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Zmień ustawienia profilu" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Konfiguracja użytkownika" #. TRANS: Menu item in primary navigation panel. @@ -8858,11 +8888,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Wyloguj się" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Wyloguj się z witryny" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Zaloguj się na witrynie" #. TRANS: Menu item in primary navigation panel. @@ -8872,7 +8905,7 @@ msgstr "Wyszukaj" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Przeszukaj witrynę" #. TRANS: H2 text for user subscription statistics. @@ -8998,6 +9031,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Wyszukaj" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9314,12 +9369,6 @@ msgstr "Motyw zawiera plik typu \\\".%s\\\", który nie jest dozwolony." msgid "Error opening theme archive." msgstr "Błąd podczas otwierania archiwum motywu." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Wpisy" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9523,8 +9572,5 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD." msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." -#~ msgid "Yes" -#~ msgstr "Tak" - -#~ msgid "Subscribe" -#~ msgstr "Subskrybuj" +#~ msgid "Couldn't update your design." +#~ msgstr "Nie można zaktualizować wyglądu." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 71621b6695..91c2714af2 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -17,17 +17,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:40+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:13+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Desconhecida" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Acção desconhecida" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -114,6 +149,7 @@ msgstr "Página não foi encontrada." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -138,6 +174,7 @@ msgstr "Página não foi encontrada." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -154,6 +191,8 @@ msgstr "%1$s e amigos, página %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -231,28 +270,14 @@ msgstr "Você e seus amigos" msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizações de %1$s e amigos no %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Método da API não encontrado." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -327,6 +352,8 @@ msgstr "Não foi possível gravar as configurações do estilo." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Não foi possível actualizar o seu estilo." @@ -696,9 +723,12 @@ msgstr "Não tem autorização." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Ocorreu um problema com a sua sessão. Por favor, tente novamente." @@ -889,6 +919,8 @@ msgstr "Apagar nota %d" msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -904,6 +936,8 @@ msgstr "Método da API não encontrado." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -973,6 +1007,8 @@ msgstr "%1$s actualizações em resposta a actualizações de %2$s / %3$s." msgid "Repeats of %s" msgstr "Repetições de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s avisos que %2$s / %3$s repetiu." @@ -1338,6 +1374,7 @@ msgstr "Pode carregar o seu avatar pessoal. O tamanho máximo do ficheiro é %s. #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Utilizador sem perfil correspondente." @@ -1364,6 +1401,7 @@ msgstr "Antevisão" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Apagar" @@ -1532,24 +1570,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Não iniciou sessão." @@ -1712,6 +1733,7 @@ msgstr "Aplicação não foi encontrada." msgid "You are not the owner of this application." msgstr "Não é o proprietário desta aplicação." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -3335,6 +3357,9 @@ msgid "Ajax Error" msgstr "Erro do Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nota nova" @@ -4357,10 +4382,6 @@ msgstr "Solicitada recuperação da senha" msgid "Password saved" msgstr "Senha gravada" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Acção desconhecida" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4458,6 +4479,7 @@ msgstr "Registo não é permitido." msgid "You cannot register if you do not agree to the license." msgstr "Não se pode registar se não aceita a licença." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Correio electrónico já existe." @@ -7695,11 +7717,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desligar" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Não foi possível actualizar o estilo." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Predefinições do estilo repostas" @@ -8045,6 +8062,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Juntar-me" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8653,6 +8676,13 @@ msgstr "" "A obtenção da sua geolocalização está a demorar mais do que o esperado; " "tente novamente mais tarde" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notas" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8819,12 +8849,12 @@ msgstr "Configurações" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Modificar as suas definições de perfil" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuração do utilizador" #. TRANS: Menu item in primary navigation panel. @@ -8832,11 +8862,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Sair" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Terminar esta sessão" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Iniciar uma sessão" #. TRANS: Menu item in primary navigation panel. @@ -8845,7 +8878,8 @@ msgid "Search" msgstr "Pesquisa" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Pesquisar no site" #. TRANS: H2 text for user subscription statistics. @@ -8972,6 +9006,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Pesquisar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9287,12 +9343,6 @@ msgstr "Tema contém um ficheiro do tipo '.%s', o que não é permitido." msgid "Error opening theme archive." msgstr "Ocorreu um erro ao abrir o arquivo do tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notas" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9489,8 +9539,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Sim" - -#~ msgid "Subscribe" -#~ msgstr "Subscrever" +#~ msgid "Couldn't update your design." +#~ msgstr "Não foi possível actualizar o estilo." diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 0267efeb20..15664171d4 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,53 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:42+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:15+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Desconhecido" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Ação desconhecida" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -113,6 +148,7 @@ msgstr "Esta página não existe." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -137,6 +173,7 @@ msgstr "Esta página não existe." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -153,6 +190,8 @@ msgstr "%1$s e amigos, pág. %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -231,28 +270,14 @@ msgstr "Você e amigos" msgid "Updates from %1$s and friends on %2$s!" msgstr "Atualizações de %1$s e amigos no %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "O método da API não foi encontrado!" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -328,6 +353,8 @@ msgstr "Não foi possível salvar suas configurações de aparência." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Não foi possível atualizar a sua aparência." @@ -703,9 +730,12 @@ msgstr "O token solicitado já foi autorizado." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." @@ -902,6 +932,8 @@ msgstr "Mensagem excluída %d" msgid "Client must provide a 'status' parameter with a value." msgstr "O cliente tem de fornecer um parâmetro 'status' com um valor." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -917,6 +949,8 @@ msgstr "A mensagem pai não foi encontrada." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -986,6 +1020,8 @@ msgstr "Mensagens em %1$s que são repetições de %2$s / %3$s." msgid "Repeats of %s" msgstr "Repetições de %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Mensagens em %1$s que %2$s / %3$s repetiu." @@ -1352,6 +1388,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Usuário sem um perfil correspondente" @@ -1378,6 +1415,7 @@ msgstr "Pré-visualizar" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Excluir" @@ -1552,24 +1590,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Você não está autenticado." @@ -1734,6 +1755,7 @@ msgstr "A aplicação não foi encontrada." msgid "You are not the owner of this application." msgstr "Você não é o dono desta aplicação." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -3345,6 +3367,9 @@ msgid "Ajax Error" msgstr "Erro no Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Nova mensagem" @@ -4345,10 +4370,6 @@ msgstr "Foi solicitada a recuperação da senha" msgid "Password saved" msgstr "A senha foi salva" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Ação desconhecida" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "No mínimo 6 caracteres. E não se esqueça dela!" @@ -4443,6 +4464,7 @@ msgstr "Não é permitido o registro." msgid "You cannot register if you do not agree to the license." msgstr "Você não pode se registrar se não aceitar a licença." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "O endereço de e-mail já existe." @@ -7648,11 +7670,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Desativado" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Não foi possível atualizar a aparência." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "A aparência padrão foi restaurada." @@ -8000,6 +8017,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Entrar" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8609,6 +8632,13 @@ msgstr "" "Desculpe, mas recuperar a sua geolocalização está demorando mais que o " "esperado. Por favor, tente novamente mais tarde." +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Mensagens" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8774,12 +8804,12 @@ msgstr "Configuração do SMS" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Alterar as suas configurações de perfil" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Configuração do usuário" #. TRANS: Menu item in primary navigation panel. @@ -8787,11 +8817,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Sair" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Sai do site" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Autentique-se no site" #. TRANS: Menu item in primary navigation panel. @@ -8801,7 +8834,7 @@ msgstr "Pesquisar" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Procurar no site" #. TRANS: H2 text for user subscription statistics. @@ -8928,6 +8961,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Pesquisar" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9241,12 +9296,6 @@ msgstr "O tema contém um arquivo do tipo '.%s', que não é permitido." msgid "Error opening theme archive." msgstr "Ocorreu um erro ao abrir o arquivo do tema." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Mensagens" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9443,8 +9492,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Sim" - -#~ msgid "Subscribe" -#~ msgstr "Assinar" +#~ msgid "Couldn't update your design." +#~ msgstr "Não foi possível atualizar a aparência." diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 6b4d400e1b..b4c4aef9c4 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -18,18 +18,53 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:44+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Неизвестно" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Неизвестное действие" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -117,6 +152,7 @@ msgstr "Нет такой страницы." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -141,6 +177,7 @@ msgstr "Нет такой страницы." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -157,6 +194,8 @@ msgstr "%1$s и друзья, страница %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -233,28 +272,14 @@ msgstr "Вы и друзья" msgid "Updates from %1$s and friends on %2$s!" msgstr "Обновлено от %1$s и его друзей на %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "Метод API не найден." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -333,6 +358,8 @@ msgstr "Не удаётся сохранить ваши настройки оф #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Не удаётся обновить ваше оформление." @@ -708,9 +735,12 @@ msgstr "Ключ запроса уже авторизован." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Проблема с вашим ключом сессии. Пожалуйста, попробуйте ещё раз." @@ -906,6 +936,8 @@ msgstr "Запись %d удалена" msgid "Client must provide a 'status' parameter with a value." msgstr "Клиент должен предоставить параметр «status» со значением." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -922,6 +954,8 @@ msgstr "Родительская запись не найдена." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -992,6 +1026,8 @@ msgstr "Записи %1$s, повторённые для %2$s / %3$s." msgid "Repeats of %s" msgstr "Повторы за %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Записи %1$s, повторённые %2$s / %3$s." @@ -1354,6 +1390,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Пользователь без соответствующего профиля." @@ -1380,6 +1417,7 @@ msgstr "Просмотр" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Удалить" @@ -1556,24 +1594,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s покинул группу %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не авторизован." @@ -1737,6 +1758,7 @@ msgstr "Приложение не найдено." msgid "You are not the owner of this application." msgstr "Вы не являетесь владельцем этого приложения." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Проблема с вашим ключом сессии." @@ -3347,6 +3369,9 @@ msgid "Ajax Error" msgstr "Ошибка AJAX" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Новая запись" @@ -4342,10 +4367,6 @@ msgstr "Запрошено восстановление пароля" msgid "Password saved" msgstr "Пароль сохранён" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Неизвестное действие" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 или более символов, и не забывайте его!" @@ -4437,6 +4458,7 @@ msgid "You cannot register if you do not agree to the license." msgstr "" "Вы не можете зарегистрироваться без подтверждения лицензионного соглашения." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Такой электронный адрес уже задействован." @@ -7602,11 +7624,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Выключено" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Не удаётся обновить ваше оформление." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Оформление по умолчанию восстановлено." @@ -7963,6 +7980,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Присоединиться" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8562,6 +8585,12 @@ msgstr "" "К сожалению, получение информации о вашем местонахождении заняло больше " "времени, чем ожидалось; повторите попытку позже" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Записи" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "с. ш." @@ -8722,11 +8751,13 @@ msgid "Settings" msgstr "Настройки" #. TRANS: Menu item title in primary navigation panel. -msgid "Change your personal settings" +#, fuzzy +msgid "Change your personal settings." msgstr "Изменение персональных настроек" #. TRANS: Menu item title in primary navigation panel. -msgid "Site configuration" +#, fuzzy +msgid "Site configuration." msgstr "Конфигурация сайта" #. TRANS: Menu item in primary navigation panel. @@ -8734,11 +8765,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Выход" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Выйти" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Войти" #. TRANS: Menu item in primary navigation panel. @@ -8747,7 +8781,8 @@ msgid "Search" msgstr "Поиск" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Поиск по сайту" #. TRANS: H2 text for user subscription statistics. @@ -8872,6 +8907,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Найти" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9185,11 +9242,6 @@ msgstr "Тема содержит файл недопустимого типа msgid "Error opening theme archive." msgstr "Ошибка открытия архива темы." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "Записи" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9388,8 +9440,5 @@ msgstr "Неверный XML, отсутствует корень XRD." msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." -#~ msgid "Yes" -#~ msgstr "Да" - -#~ msgid "Subscribe" -#~ msgstr "Подписаться" +#~ msgid "Couldn't update your design." +#~ msgstr "Не удаётся обновить ваше оформление." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index da1e389932..5847bda11c 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,46 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#. TRANS: Database error message. +#: index.php:110 +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +#: index.php:121 +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +#: index.php:131 +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#: index.php:255 +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#: index.php:286 +msgid "Unknown page" +msgstr "" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +#: index.php:341 actions/recoverpassword.php:232 +msgid "Unknown action" +msgstr "" + #. TRANS: Page title for Access admin panel that allows configuring site access. #: actions/accessadminpanel.php:53 msgid "Access" @@ -124,6 +164,7 @@ msgstr "" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -148,6 +189,7 @@ msgstr "" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -162,18 +204,18 @@ msgstr "" #: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72 #: actions/apigroupcreate.php:111 actions/apigroupismember.php:89 #: actions/apigroupjoin.php:98 actions/apigroupleave.php:98 -#: actions/apigrouplist.php:70 actions/apigroupprofileupdate.php:106 +#: actions/apigrouplist.php:71 actions/apigroupprofileupdate.php:107 #: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:85 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:173 #: actions/apitimelinehome.php:78 actions/apitimelinementions.php:77 #: actions/apitimelineuser.php:79 actions/avatarbynickname.php:79 #: actions/favoritesrss.php:72 actions/foaf.php:42 actions/foaf.php:61 #: actions/hcard.php:67 actions/microsummary.php:63 actions/newmessage.php:119 -#: actions/otp.php:78 actions/remotesubscribe.php:155 -#: actions/remotesubscribe.php:165 actions/replies.php:72 +#: actions/otp.php:78 actions/remotesubscribe.php:156 +#: actions/remotesubscribe.php:166 actions/replies.php:72 #: actions/repliesrss.php:38 actions/rsd.php:114 actions/showfavorites.php:106 -#: actions/userbyid.php:75 actions/usergroups.php:95 actions/userrss.php:40 -#: actions/userxrd.php:59 actions/xrds.php:71 lib/command.php:503 +#: actions/userbyid.php:75 actions/usergroups.php:95 actions/userrss.php:41 +#: actions/userxrd.php:60 actions/xrds.php:71 lib/command.php:503 #: lib/galleryaction.php:61 lib/mailbox.php:79 lib/profileaction.php:77 msgid "No such user." msgstr "" @@ -187,6 +229,8 @@ msgstr "" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -195,7 +239,7 @@ msgstr "" #. TRANS: Menu item title in settings navigation panel. #. TRANS: %s is a username. #: actions/all.php:94 actions/all.php:185 actions/allrss.php:117 -#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 +#: actions/apitimelinefriends.php:209 actions/apitimelinehome.php:113 #: lib/adminpanelnav.php:73 lib/personalgroupnav.php:77 lib/settingsnav.php:73 #, php-format msgid "%s and friends" @@ -264,32 +308,16 @@ msgstr "" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/allrss.php:122 actions/apitimelinefriends.php:213 +#: actions/allrss.php:122 actions/apitimelinefriends.php:215 #: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" -#. TRANS: Client error displayed handling a non-existing API method. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#: actions/apiaccountratelimitstatus.php:69 +#. TRANS: Client error displayed when coming across a non-supported API method. +#: actions/apiaccountratelimitstatus.php:70 #: actions/apiaccountupdatedeliverydevice.php:92 #: actions/apiaccountupdateprofile.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:92 @@ -299,22 +327,24 @@ msgstr "" #: actions/apifriendshipscreate.php:99 actions/apifriendshipsdestroy.php:99 #: actions/apifriendshipsshow.php:124 actions/apigroupcreate.php:138 #: actions/apigroupismember.php:115 actions/apigroupjoin.php:148 -#: actions/apigroupleave.php:138 actions/apigrouplist.php:134 +#: actions/apigroupleave.php:138 actions/apigrouplist.php:135 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:105 -#: actions/apigroupprofileupdate.php:97 actions/apigroupprofileupdate.php:215 +#: actions/apigroupprofileupdate.php:98 actions/apigroupprofileupdate.php:216 #: actions/apigroupshow.php:114 actions/apihelptest.php:84 #: actions/apistatusesdestroy.php:101 actions/apistatusesretweets.php:110 #: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:139 #: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109 -#: actions/apitimelinefavorites.php:182 actions/apitimelinefriends.php:276 +#: actions/apitimelinefavorites.php:182 actions/apitimelinefriends.php:278 #: actions/apitimelinegroup.php:148 actions/apitimelinehome.php:181 #: actions/apitimelinementions.php:182 actions/apitimelinepublic.php:247 #: actions/apitimelineretweetedtome.php:150 -#: actions/apitimelineretweetsofme.php:147 actions/apitimelinetag.php:165 +#: actions/apitimelineretweetsofme.php:149 actions/apitimelinetag.php:165 #: actions/apitimelineuser.php:217 actions/apiusershow.php:100 msgid "API method not found." msgstr "" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: actions/apiaccountupdatedeliverydevice.php:83 @@ -326,7 +356,7 @@ msgstr "" #: actions/apifavoritecreate.php:88 actions/apifavoritedestroy.php:88 #: actions/apifriendshipscreate.php:89 actions/apifriendshipsdestroy.php:89 #: actions/apigroupcreate.php:102 actions/apigroupjoin.php:89 -#: actions/apigroupleave.php:89 actions/apigroupprofileupdate.php:88 +#: actions/apigroupleave.php:89 actions/apigroupprofileupdate.php:89 #: actions/apimediaupload.php:66 actions/apistatusesretweet.php:63 #: actions/apistatusesupdate.php:194 msgid "This method requires a POST." @@ -351,8 +381,8 @@ msgstr "" #: actions/apiaccountupdatedeliverydevice.php:136 #: actions/confirmaddress.php:122 actions/emailsettings.php:353 #: actions/emailsettings.php:499 actions/profilesettings.php:342 -#: actions/smssettings.php:300 actions/smssettings.php:453 -#: actions/urlsettings.php:212 actions/userdesignsettings.php:315 +#: actions/smssettings.php:301 actions/smssettings.php:454 +#: actions/urlsettings.php:213 actions/userdesignsettings.php:315 msgid "Could not update user." msgstr "" @@ -424,9 +454,12 @@ msgstr "" #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 -#: actions/userdesignsettings.php:199 +#: actions/userdesignsettings.php:199 lib/designsettings.php:217 +#: lib/designsettings.php:239 msgid "Could not update your design." msgstr "" @@ -441,7 +474,7 @@ msgstr "" #. 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:93 actions/grouprss.php:138 -#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63 +#: actions/userrss.php:95 lib/atomgroupnoticefeed.php:63 #: lib/atomusernoticefeed.php:88 #, php-format msgid "%s timeline" @@ -520,7 +553,7 @@ msgstr "" #. TRANS: %d is the maximum number of characters for a message. #. TRANS: Form validation error displayed when message content is too long. #. TRANS: %d is the maximum number of characters for a message. -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:158 +#: actions/apidirectmessagenew.php:127 actions/newmessage.php:159 #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." @@ -559,7 +592,7 @@ msgstr "" #. TRANS: Client error displayed when marking a notice as favourite fails. #. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database. #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:306 +#: actions/apifavoritecreate.php:132 actions/favor.php:87 lib/command.php:306 msgid "Could not create favorite." msgstr "" @@ -617,9 +650,9 @@ msgstr "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with an existing nickname. -#: actions/apigroupcreate.php:156 actions/apigroupprofileupdate.php:256 +#: actions/apigroupcreate.php:156 actions/apigroupprofileupdate.php:257 #: actions/editgroup.php:192 actions/newgroup.php:138 -#: actions/profilesettings.php:293 actions/register.php:209 +#: actions/profilesettings.php:293 actions/register.php:210 msgid "Nickname already in use. Try another one." msgstr "" @@ -629,9 +662,9 @@ msgstr "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with an invalid nickname. -#: actions/apigroupcreate.php:164 actions/apigroupprofileupdate.php:261 +#: actions/apigroupcreate.php:164 actions/apigroupprofileupdate.php:262 #: actions/editgroup.php:196 actions/newgroup.php:142 -#: actions/profilesettings.php:263 actions/register.php:212 +#: actions/profilesettings.php:263 actions/register.php:213 msgid "Not a valid nickname." msgstr "" @@ -643,10 +676,10 @@ msgstr "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with an invalid homepage URL. -#: actions/apigroupcreate.php:181 actions/apigroupprofileupdate.php:280 -#: actions/editapplication.php:235 actions/editgroup.php:203 -#: actions/newapplication.php:221 actions/newgroup.php:149 -#: actions/profilesettings.php:268 actions/register.php:220 +#: actions/apigroupcreate.php:181 actions/apigroupprofileupdate.php:281 +#: actions/editapplication.php:236 actions/editgroup.php:203 +#: actions/newapplication.php:222 actions/newgroup.php:149 +#: actions/profilesettings.php:268 actions/register.php:222 msgid "Homepage is not a valid URL." msgstr "" @@ -656,9 +689,9 @@ msgstr "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with a too long full name. -#: actions/apigroupcreate.php:191 actions/apigroupprofileupdate.php:290 +#: actions/apigroupcreate.php:191 actions/apigroupprofileupdate.php:291 #: actions/editgroup.php:207 actions/newgroup.php:153 -#: actions/profilesettings.php:272 actions/register.php:224 +#: actions/profilesettings.php:272 actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "" @@ -673,9 +706,9 @@ msgstr "" #. TRANS: %d is the maximum number of characters for the description. #. TRANS: Group create form validation error. #. TRANS: %d is the maximum number of allowed characters. -#: actions/apigroupcreate.php:201 actions/apigroupprofileupdate.php:300 -#: actions/editapplication.php:202 actions/editgroup.php:212 -#: actions/newapplication.php:182 actions/newgroup.php:158 +#: actions/apigroupcreate.php:201 actions/apigroupprofileupdate.php:301 +#: actions/editapplication.php:203 actions/editgroup.php:212 +#: actions/newapplication.php:183 actions/newgroup.php:158 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." @@ -688,9 +721,9 @@ msgstr[1] "" #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with a too long location. -#: actions/apigroupcreate.php:215 actions/apigroupprofileupdate.php:312 +#: actions/apigroupcreate.php:215 actions/apigroupprofileupdate.php:313 #: actions/editgroup.php:219 actions/newgroup.php:165 -#: actions/profilesettings.php:285 actions/register.php:236 +#: actions/profilesettings.php:285 actions/register.php:238 msgid "Location is too long (maximum 255 characters)." msgstr "" @@ -702,7 +735,7 @@ msgstr "" #. TRANS: %d is the maximum number of allowed aliases. #. TRANS: Group create form validation error. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:236 actions/apigroupprofileupdate.php:331 +#: actions/apigroupcreate.php:236 actions/apigroupprofileupdate.php:332 #: actions/editgroup.php:232 actions/newgroup.php:178 #, php-format msgid "Too many aliases! Maximum %d allowed." @@ -714,7 +747,7 @@ msgstr[1] "" #. TRANS: %s is the invalid alias. #. TRANS: API validation exception thrown when aliases does not validate. #. TRANS: %s is the invalid alias. -#: actions/apigroupcreate.php:253 actions/apigroupprofileupdate.php:349 +#: actions/apigroupcreate.php:253 actions/apigroupprofileupdate.php:350 #, php-format msgid "Invalid alias: \"%s\"." msgstr "" @@ -725,7 +758,7 @@ msgstr "" #. TRANS: %s is the already used alias. #. TRANS: Group edit form validation error. #. TRANS: Group create form validation error. %s is the already used alias. -#: actions/apigroupcreate.php:264 actions/apigroupprofileupdate.php:360 +#: actions/apigroupcreate.php:264 actions/apigroupprofileupdate.php:361 #: actions/editgroup.php:247 actions/newgroup.php:194 #, php-format msgid "Alias \"%s\" already in use. Try another one." @@ -746,7 +779,7 @@ msgstr "" #. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group. #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:71 -#: actions/apigroupprofileupdate.php:112 actions/apigroupshow.php:81 +#: actions/apigroupprofileupdate.php:113 actions/apigroupshow.php:81 #: actions/apitimelinegroup.php:89 msgid "Group not found." msgstr "" @@ -790,13 +823,13 @@ msgid "Could not remove user %1$s from group %2$s." msgstr "" #. TRANS: Used as title in check for group membership. %s is a user name. -#: actions/apigrouplist.php:94 +#: actions/apigrouplist.php:95 #, php-format msgid "%s's groups" msgstr "" #. TRANS: Used as subtitle in check for group membership. %1$s is the site name, %2$s is a user name. -#: actions/apigrouplist.php:104 +#: actions/apigrouplist.php:105 #, php-format msgid "%1$s groups %2$s is a member of." msgstr "" @@ -819,7 +852,7 @@ msgstr "" #. TRANS: Client error displayed trying to edit a group while not being a group admin. #. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. -#: actions/apigroupprofileupdate.php:118 actions/editgroup.php:110 +#: actions/apigroupprofileupdate.php:119 actions/editgroup.php:110 #: actions/editgroup.php:176 actions/groupdesignsettings.php:109 #: actions/grouplogo.php:111 msgid "You must be an admin to edit the group." @@ -827,27 +860,27 @@ msgstr "" #. TRANS: Server error displayed when group update fails. #. TRANS: Server error displayed when editing a group fails. -#: actions/apigroupprofileupdate.php:172 actions/editgroup.php:276 +#: actions/apigroupprofileupdate.php:173 actions/editgroup.php:276 msgid "Could not update group." msgstr "" #. TRANS: Server error displayed when adding group aliases fails. #. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. -#: actions/apigroupprofileupdate.php:195 actions/editgroup.php:283 +#: actions/apigroupprofileupdate.php:196 actions/editgroup.php:283 #: classes/User_group.php:548 msgid "Could not create aliases." msgstr "" #. TRANS: API validation exception thrown when nickname does not validate. #. TRANS: Validation error in form for registration, profile and group settings, etc. -#: actions/apigroupprofileupdate.php:251 lib/nickname.php:165 +#: actions/apigroupprofileupdate.php:252 lib/nickname.php:165 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #. TRANS: API validation exception thrown when alias is the same as nickname. #. TRANS: Group create form validation error. -#: actions/apigroupprofileupdate.php:369 actions/newgroup.php:201 +#: actions/apigroupprofileupdate.php:370 actions/newgroup.php:201 msgid "Alias cannot be the same as nickname." msgstr "" @@ -879,24 +912,27 @@ msgstr "" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/cancelsubscription.php:74 actions/deletenotice.php:177 -#: actions/disfavor.php:75 actions/emailsettings.php:292 actions/favor.php:75 -#: actions/geocode.php:55 actions/groupblock.php:65 actions/grouplogo.php:321 -#: actions/groupunblock.php:65 actions/imsettings.php:243 -#: actions/invite.php:60 actions/makeadmin.php:67 actions/newmessage.php:140 -#: actions/newnotice.php:104 actions/nudge.php:81 -#: actions/oauthappssettings.php:162 actions/oauthconnectionssettings.php:135 -#: actions/passwordsettings.php:146 actions/pluginenable.php:87 +#. TRANS: Client error displayed when the session token does not match or is not given. +#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:281 +#: actions/cancelsubscription.php:75 actions/deletenotice.php:178 +#: actions/disfavor.php:75 actions/emailsettings.php:293 actions/favor.php:76 +#: actions/geocode.php:56 actions/groupblock.php:66 actions/grouplogo.php:321 +#: actions/groupunblock.php:66 actions/imsettings.php:244 +#: actions/invite.php:61 actions/makeadmin.php:68 actions/newmessage.php:141 +#: actions/newnotice.php:105 actions/nudge.php:82 +#: actions/oauthappssettings.php:162 actions/oauthconnectionssettings.php:136 +#: actions/passwordsettings.php:147 actions/pluginenable.php:88 #: actions/profilesettings.php:235 actions/recoverpassword.php:387 -#: actions/register.php:163 actions/remotesubscribe.php:77 -#: actions/repeat.php:79 actions/smssettings.php:249 actions/subedit.php:40 -#: actions/subscribe.php:87 actions/tagother.php:156 -#: actions/unsubscribe.php:69 actions/urlsettings.php:170 -#: actions/userauthorization.php:53 lib/designsettings.php:122 +#: actions/register.php:164 actions/remotesubscribe.php:78 +#: actions/repeat.php:80 actions/smssettings.php:250 actions/subedit.php:41 +#: actions/subscribe.php:87 actions/tagother.php:157 +#: actions/unsubscribe.php:70 actions/urlsettings.php:171 +#: actions/userauthorization.php:54 lib/designsettings.php:123 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -922,12 +958,12 @@ msgstr "" #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. #. TRANS: Unknown form validation error in design settings form. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 -#: actions/designadminpanel.php:100 actions/editapplication.php:144 -#: actions/emailsettings.php:311 actions/grouplogo.php:332 -#: actions/imsettings.php:258 actions/newapplication.php:124 -#: actions/oauthconnectionssettings.php:144 actions/recoverpassword.php:46 -#: actions/smssettings.php:270 lib/designsettings.php:133 +#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:295 +#: actions/designadminpanel.php:100 actions/editapplication.php:145 +#: actions/emailsettings.php:312 actions/grouplogo.php:332 +#: actions/imsettings.php:259 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:134 msgid "Unexpected form submission." msgstr "" @@ -975,8 +1011,8 @@ msgstr "" #. TRANS: Label for nickname on user authorisation page. #. TRANS: Field label on group edit form. #: actions/apioauthauthorize.php:459 actions/login.php:231 -#: actions/profilesettings.php:104 actions/register.php:436 -#: actions/userauthorization.php:146 lib/groupeditform.php:147 +#: actions/profilesettings.php:104 actions/register.php:438 +#: actions/userauthorization.php:147 lib/groupeditform.php:147 msgid "Nickname" msgstr "" @@ -984,7 +1020,7 @@ msgstr "" #. TRANS: Field label on login page. #. TRANS: Field label on account registration page. #: actions/apioauthauthorize.php:463 actions/login.php:235 -#: actions/register.php:442 +#: actions/register.php:444 msgid "Password" msgstr "" @@ -1127,10 +1163,12 @@ msgstr "" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. -#: actions/apistatusesupdate.php:244 actions/newnotice.php:160 +#: actions/apistatusesupdate.php:244 actions/newnotice.php:161 #: lib/mailhandler.php:65 #, php-format msgid "That's too long. Maximum notice size is %d character." @@ -1145,7 +1183,9 @@ msgstr "" #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. -#: actions/apistatusesupdate.php:308 actions/newnotice.php:183 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. +#: actions/apistatusesupdate.php:308 actions/newnotice.php:186 #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -1226,7 +1266,9 @@ msgstr "" msgid "Repeats of %s" msgstr "" -#: actions/apitimelineretweetsofme.php:104 +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. +#: actions/apitimelineretweetsofme.php:106 #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "" @@ -1357,13 +1399,13 @@ msgstr "" #: actions/cancelgroup.php:94 actions/deletegroup.php:87 #: actions/deletegroup.php:100 actions/editgroup.php:102 #: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73 -#: actions/groupblock.php:89 actions/groupbyid.php:83 +#: actions/groupblock.php:90 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:101 actions/grouplogo.php:103 #: actions/groupmembers.php:84 actions/groupmembers.php:92 #: actions/groupqueue.php:85 actions/groupqueue.php:93 actions/grouprss.php:97 -#: actions/grouprss.php:105 actions/groupunblock.php:89 +#: actions/grouprss.php:105 actions/groupunblock.php:90 #: actions/joingroup.php:82 actions/joingroup.php:95 actions/leavegroup.php:82 -#: actions/leavegroup.php:95 actions/makeadmin.php:91 +#: actions/leavegroup.php:95 actions/makeadmin.php:92 #: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168 #: lib/command.php:389 msgid "No such group." @@ -1404,7 +1446,7 @@ msgstr "" #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. #: actions/approvegroup.php:125 actions/cancelgroup.php:123 -#: actions/cancelsubscription.php:101 +#: actions/cancelsubscription.php:102 #, php-format msgid "%s is not in the moderation queue for this group." msgstr "" @@ -1677,9 +1719,10 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:184 actions/remotesubscribe.php:208 -#: actions/userauthorization.php:75 actions/userrss.php:108 +#: actions/grouplogo.php:184 actions/remotesubscribe.php:209 +#: actions/userauthorization.php:76 actions/userrss.php:110 msgid "User without matching profile." msgstr "" @@ -1712,8 +1755,9 @@ msgstr "" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. #: actions/avatarsettings.php:155 actions/deleteaccount.php:319 -#: actions/showapplication.php:242 +#: actions/showapplication.php:243 lib/deletegroupform.php:115 msgctxt "BUTTON" msgid "Delete" msgstr "" @@ -1732,33 +1776,33 @@ msgid "Crop" msgstr "" #. TRANS: Validation error on avatar upload form when no file was uploaded. -#: actions/avatarsettings.php:318 +#: actions/avatarsettings.php:319 msgid "No file uploaded." msgstr "" #. TRANS: Avatar upload form instruction after uploading a file. -#: actions/avatarsettings.php:345 +#: actions/avatarsettings.php:346 msgid "Pick a square area of the image to be your avatar." msgstr "" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. #. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present. -#: actions/avatarsettings.php:360 actions/grouplogo.php:391 +#: actions/avatarsettings.php:361 actions/grouplogo.php:391 msgid "Lost our file data." msgstr "" #. TRANS: Success message for having updated a user avatar. -#: actions/avatarsettings.php:384 +#: actions/avatarsettings.php:385 msgid "Avatar updated." msgstr "" #. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. -#: actions/avatarsettings.php:388 +#: actions/avatarsettings.php:389 msgid "Failed updating avatar." msgstr "" #. TRANS: Success message for deleting a user avatar. -#: actions/avatarsettings.php:412 +#: actions/avatarsettings.php:413 msgid "Avatar deleted." msgstr "" @@ -1807,7 +1851,7 @@ msgstr "" #. TRANS: Title for block user page. #. TRANS: Legend for block user form. #. TRANS: Fieldset legend for block user from group form. -#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165 +#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:166 msgid "Block user" msgstr "" @@ -1825,9 +1869,9 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:154 actions/deleteapplication.php:157 +#: actions/block.php:154 actions/deleteapplication.php:158 #: actions/deletegroup.php:220 actions/deletenotice.php:155 -#: actions/deleteuser.php:154 actions/groupblock.php:187 +#: actions/deleteuser.php:154 actions/groupblock.php:188 msgctxt "BUTTON" msgid "No" msgstr "" @@ -1844,9 +1888,9 @@ msgstr "" #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. #. TRANS: Button text to repeat a notice on notice repeat form. -#: actions/block.php:161 actions/deleteapplication.php:164 +#: actions/block.php:161 actions/deleteapplication.php:165 #: actions/deletegroup.php:227 actions/deletenotice.php:162 -#: actions/deleteuser.php:161 actions/groupblock.php:194 +#: actions/deleteuser.php:161 actions/groupblock.php:195 #: lib/repeatform.php:126 msgctxt "BUTTON" msgid "Yes" @@ -1914,38 +1958,21 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. #: actions/cancelsubscription.php:57 actions/deletenotice.php:52 #: actions/disfavor.php:61 actions/favor.php:62 actions/groupblock.php:60 #: actions/groupunblock.php:60 actions/logout.php:69 actions/makeadmin.php:62 #: actions/newmessage.php:89 actions/newnotice.php:87 actions/nudge.php:64 -#: actions/pluginenable.php:98 actions/subedit.php:33 actions/subscribe.php:98 +#: actions/pluginenable.php:99 actions/subedit.php:33 actions/subscribe.php:98 #: actions/tagother.php:35 actions/unsubscribe.php:52 #: lib/adminpanelaction.php:71 lib/profileformaction.php:63 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:73 msgid "Not logged in." msgstr "" #. TRANS: Client error displayed when trying to leave a group without specifying an ID. #. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. -#: actions/cancelsubscription.php:83 actions/unsubscribe.php:78 +#: actions/cancelsubscription.php:84 actions/unsubscribe.php:79 msgid "No profile ID in request." msgstr "" @@ -1957,15 +1984,15 @@ msgstr "" #. TRANS: Client error displayed on user tag page when trying to add tags providing a non-existing user ID. #. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. #. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. -#: actions/cancelsubscription.php:91 actions/groupblock.php:77 -#: actions/groupunblock.php:77 actions/makeadmin.php:79 actions/subedit.php:57 -#: actions/tagother.php:50 actions/unsubscribe.php:86 +#: actions/cancelsubscription.php:92 actions/groupblock.php:78 +#: actions/groupunblock.php:78 actions/makeadmin.php:80 actions/subedit.php:58 +#: actions/tagother.php:50 actions/unsubscribe.php:87 #: lib/profileformaction.php:87 msgid "No profile with that ID." msgstr "" #. TRANS: Title after unsubscribing from a group. -#: actions/cancelsubscription.php:110 +#: actions/cancelsubscription.php:111 msgctxt "TITLE" msgid "Unsubscribed" msgstr "" @@ -1999,7 +2026,7 @@ msgstr "" #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#: actions/confirmaddress.php:147 actions/imsettings.php:446 +#: actions/confirmaddress.php:147 actions/imsettings.php:447 msgid "Could not update user IM preferences." msgstr "" @@ -2033,8 +2060,7 @@ msgstr "" #. TRANS: Header on conversation page. Hidden by default (h2). #. TRANS: Label for user statistics. -#: actions/conversation.php:149 lib/noticelist.php:87 -#: lib/profileaction.php:246 +#: actions/conversation.php:149 lib/profileaction.php:246 msgid "Notices" msgstr "" @@ -2130,21 +2156,22 @@ msgstr "" msgid "You are not the owner of this application." msgstr "" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. -#: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:112 actions/showapplication.php:116 +#: actions/deleteapplication.php:103 actions/editapplication.php:132 +#: actions/newapplication.php:113 actions/showapplication.php:117 #: lib/action.php:1460 msgid "There was a problem with your session token." msgstr "" #. TRANS: Title for delete application page. #. TRANS: Fieldset legend on delete application page. -#: actions/deleteapplication.php:124 actions/deleteapplication.php:149 +#: actions/deleteapplication.php:125 actions/deleteapplication.php:150 msgid "Delete application" msgstr "" #. TRANS: Confirmation text on delete application page. -#: actions/deleteapplication.php:152 +#: actions/deleteapplication.php:153 msgid "" "Are you sure you want to delete this application? This will clear all data " "about the application from the database, including all existing user " @@ -2152,12 +2179,12 @@ msgid "" msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. -#: actions/deleteapplication.php:161 +#: actions/deleteapplication.php:162 msgid "Do not delete this application." msgstr "" #. TRANS: Submit button title for 'Yes' when deleting an application. -#: actions/deleteapplication.php:167 +#: actions/deleteapplication.php:168 msgid "Delete this application." msgstr "" @@ -2484,76 +2511,76 @@ msgid "No such application." msgstr "" #. TRANS: Instructions for "Edit application" form. -#: actions/editapplication.php:167 +#: actions/editapplication.php:168 msgid "Use this form to edit your application." msgstr "" #. TRANS: Validation error shown when not providing a name in the "Edit application" form. #. TRANS: Validation error shown when not providing a name in the "New application" form. -#: actions/editapplication.php:184 actions/newapplication.php:164 +#: actions/editapplication.php:185 actions/newapplication.php:165 msgid "Name is required." msgstr "" #. TRANS: Validation error shown when providing too long a name in the "Edit application" form. #. TRANS: Validation error shown when providing too long a name in the "New application" form. -#: actions/editapplication.php:188 actions/newapplication.php:172 +#: actions/editapplication.php:189 actions/newapplication.php:173 msgid "Name is too long (maximum 255 characters)." msgstr "" #. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form. #. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form. -#: actions/editapplication.php:192 actions/newapplication.php:168 +#: actions/editapplication.php:193 actions/newapplication.php:169 msgid "Name already in use. Try another one." msgstr "" #. TRANS: Validation error shown when not providing a description in the "Edit application" form. #. TRANS: Validation error shown when not providing a description in the "New application" form. -#: actions/editapplication.php:196 actions/newapplication.php:176 +#: actions/editapplication.php:197 actions/newapplication.php:177 msgid "Description is required." msgstr "" #. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form. -#: actions/editapplication.php:209 +#: actions/editapplication.php:210 msgid "Source URL is too long." msgstr "" #. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form. #. TRANS: Validation error shown when providing an invalid source URL in the "New application" form. -#: actions/editapplication.php:216 actions/newapplication.php:199 +#: actions/editapplication.php:217 actions/newapplication.php:200 msgid "Source URL is not valid." msgstr "" #. TRANS: Validation error shown when not providing an organisation in the "Edit application" form. #. TRANS: Validation error shown when not providing an organisation in the "New application" form. -#: actions/editapplication.php:220 actions/newapplication.php:203 +#: actions/editapplication.php:221 actions/newapplication.php:204 msgid "Organization is required." msgstr "" #. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form. -#: actions/editapplication.php:224 actions/newapplication.php:207 +#: actions/editapplication.php:225 actions/newapplication.php:208 msgid "Organization is too long (maximum 255 characters)." msgstr "" #. TRANS: Form validation error show when an organisation name has not been provided in the edit application form. #. TRANS: Form validation error show when an organisation name has not been provided in the new application form. -#: actions/editapplication.php:228 actions/newapplication.php:211 +#: actions/editapplication.php:229 actions/newapplication.php:212 msgid "Organization homepage is required." msgstr "" #. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form. #. TRANS: Validation error shown when providing too long a callback URL in the "New application" form. -#: actions/editapplication.php:239 actions/newapplication.php:225 +#: actions/editapplication.php:240 actions/newapplication.php:226 msgid "Callback is too long." msgstr "" #. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form. #. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form. -#: actions/editapplication.php:247 actions/newapplication.php:235 +#: actions/editapplication.php:248 actions/newapplication.php:236 msgid "Callback URL is not valid." msgstr "" #. TRANS: Server error occuring when an application could not be updated from the "Edit application" form. -#: actions/editapplication.php:284 +#: actions/editapplication.php:285 msgid "Could not update application." msgstr "" @@ -2738,7 +2765,7 @@ msgstr "" #. TRANS: Message given saving e-mail address that not valid. #. TRANS: Form validation error displayed when trying to register without a valid e-mail address. #. TRANS: Client error displayed trying to save site settings without a valid contact address. -#: actions/emailsettings.php:394 actions/register.php:206 +#: actions/emailsettings.php:394 actions/register.php:207 #: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" @@ -2756,8 +2783,8 @@ msgstr "" #. TRANS: Server error thrown on database error adding e-mail confirmation code. #. TRANS: Server error thrown on database error adding Instant Messaging confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:419 actions/imsettings.php:365 -#: actions/smssettings.php:364 +#: actions/emailsettings.php:419 actions/imsettings.php:366 +#: actions/smssettings.php:365 msgid "Could not insert confirmation code." msgstr "" @@ -2771,8 +2798,8 @@ msgstr "" #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling Instant Messaging address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:446 actions/imsettings.php:394 -#: actions/smssettings.php:398 +#: actions/emailsettings.php:446 actions/imsettings.php:395 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "" @@ -2803,7 +2830,7 @@ msgid "The email address was removed." msgstr "" #. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set. -#: actions/emailsettings.php:519 actions/smssettings.php:554 +#: actions/emailsettings.php:519 actions/smssettings.php:555 msgid "No incoming email address." msgstr "" @@ -2811,29 +2838,29 @@ msgstr "" #. TRANS: Server error thrown on database error adding incoming e-mail address. #. TRANS: Server error displayed when the user could not be updated in SMS settings. #: actions/emailsettings.php:531 actions/emailsettings.php:555 -#: actions/smssettings.php:565 actions/smssettings.php:590 +#: actions/smssettings.php:566 actions/smssettings.php:591 msgid "Could not update user record." msgstr "" #. TRANS: Message given after successfully removing an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. -#: actions/emailsettings.php:535 actions/smssettings.php:569 +#: actions/emailsettings.php:535 actions/smssettings.php:570 msgid "Incoming email address removed." msgstr "" #. TRANS: Message given after successfully adding an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. -#: actions/emailsettings.php:559 actions/smssettings.php:594 +#: actions/emailsettings.php:559 actions/smssettings.php:595 msgid "New incoming email address added." msgstr "" #. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite. -#: actions/favor.php:80 +#: actions/favor.php:81 msgid "This notice is already a favorite!" msgstr "" #. TRANS: Page title for page on which favorite notices can be unfavourited. -#: actions/favor.php:95 +#: actions/favor.php:96 msgid "Disfavor favorite." msgstr "" @@ -3018,8 +3045,8 @@ msgstr "" #. TRANS: Client error displayed when not providing a profile ID on the Make Admin page. #. TRANS: Client error displayed trying a change a subscription without providing a profile. #. TRANS: Client error displayed when trying to change user options without specifying a user to work on. -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:73 actions/subedit.php:49 +#: actions/groupblock.php:72 actions/groupunblock.php:72 +#: actions/makeadmin.php:74 actions/subedit.php:50 #: lib/profileformaction.php:79 msgid "No profile specified." msgstr "" @@ -3027,35 +3054,35 @@ msgstr "" #. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. #. TRANS: Client error displayed when not providing a group ID on the Make Admin page. -#: actions/groupblock.php:83 actions/groupunblock.php:83 -#: actions/makeadmin.php:85 +#: actions/groupblock.php:84 actions/groupunblock.php:84 +#: actions/makeadmin.php:86 msgid "No group specified." msgstr "" #. TRANS: Client error displayed trying to block a user from a group while not being an admin user. -#: actions/groupblock.php:95 +#: actions/groupblock.php:96 msgid "Only an admin can block group members." msgstr "" #. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group. -#: actions/groupblock.php:100 +#: actions/groupblock.php:101 msgid "User is already blocked from group." msgstr "" #. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group. -#: actions/groupblock.php:106 +#: actions/groupblock.php:107 msgid "User is not a member of group." msgstr "" #. TRANS: Title for block user from group page. #. TRANS: Form legend for form to block user from a group. -#: actions/groupblock.php:141 lib/groupblockform.php:91 +#: actions/groupblock.php:142 lib/groupblockform.php:91 msgid "Block user from group" msgstr "" #. TRANS: Explanatory text for block user from group form before setting the block. #. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from. -#: actions/groupblock.php:169 +#: actions/groupblock.php:170 #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -3064,17 +3091,17 @@ msgid "" msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. -#: actions/groupblock.php:191 +#: actions/groupblock.php:192 msgid "Do not block this user from this group." msgstr "" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#: actions/groupblock.php:198 +#: actions/groupblock.php:199 msgid "Block this user from this group." msgstr "" #. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. -#: actions/groupblock.php:215 +#: actions/groupblock.php:216 msgid "Database error blocking user from group." msgstr "" @@ -3274,18 +3301,18 @@ msgid "" msgstr "" #. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. -#: actions/groupunblock.php:95 +#: actions/groupunblock.php:96 msgid "Only an admin can unblock group members." msgstr "" #. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. -#: actions/groupunblock.php:100 +#: actions/groupunblock.php:101 msgid "User is not blocked from group." msgstr "" #. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. #. TRANS: Server error displayed when removing a user block. -#: actions/groupunblock.php:132 actions/unblock.php:86 +#: actions/groupunblock.php:133 actions/unblock.php:86 msgid "Error removing the block." msgstr "" @@ -3361,69 +3388,69 @@ msgid "Publish a MicroID" msgstr "" #. TRANS: Server error thrown on database error updating IM preferences. -#: actions/imsettings.php:293 +#: actions/imsettings.php:294 msgid "Could not update IM preferences." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. -#: actions/imsettings.php:300 actions/urlsettings.php:246 +#: actions/imsettings.php:301 actions/urlsettings.php:247 msgid "Preferences saved." msgstr "" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:322 +#: actions/imsettings.php:323 msgid "No screenname." msgstr "" #. TRANS: Form validation error when no transport is available setting an IM address. -#: actions/imsettings.php:328 +#: actions/imsettings.php:329 msgid "No transport." msgstr "" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:336 +#: actions/imsettings.php:337 msgid "Cannot normalize that screenname." msgstr "" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:343 +#: actions/imsettings.php:344 msgid "Not a valid screenname." msgstr "" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:347 +#: actions/imsettings.php:348 msgid "Screenname already belongs to another user." msgstr "" #. TRANS: Message given saving valid IM address that is to be confirmed. -#: actions/imsettings.php:372 +#: actions/imsettings.php:373 msgid "A confirmation code was sent to the IM address you added." msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:399 +#: actions/imsettings.php:400 msgid "That is the wrong IM address." msgstr "" #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:408 +#: actions/imsettings.php:409 msgid "Could not delete confirmation." msgstr "" #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:413 +#: actions/imsettings.php:414 msgid "IM confirmation cancelled." msgstr "" #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:437 +#: actions/imsettings.php:438 msgid "That is not your screenname." msgstr "" #. TRANS: Message given after successfully removing a registered Instant Messaging address. -#: actions/imsettings.php:453 +#: actions/imsettings.php:454 msgid "The IM address was removed." msgstr "" @@ -3460,18 +3487,18 @@ msgstr "" #. TRANS: Form validation message when providing an e-mail address that does not validate. #. TRANS: %s is an invalid e-mail address. -#: actions/invite.php:78 +#: actions/invite.php:79 #, php-format msgid "Invalid email address: %s." msgstr "" #. TRANS: Page title when invitations have been sent. -#: actions/invite.php:117 +#: actions/invite.php:118 msgid "Invitations sent" msgstr "" #. TRANS: Page title when inviting potential users. -#: actions/invite.php:120 +#: actions/invite.php:121 msgid "Invite new users" msgstr "" @@ -3479,7 +3506,7 @@ msgstr "" #. TRANS: is already subscribed to one or more users with the given e-mail address(es). #. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses. #. TRANS: Followed by a bullet list. -#: actions/invite.php:140 +#: actions/invite.php:141 msgid "You are already subscribed to this user:" msgid_plural "You are already subscribed to these users:" msgstr[0] "" @@ -3487,7 +3514,7 @@ msgstr[1] "" #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). #. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address). -#: actions/invite.php:146 actions/invite.php:160 +#: actions/invite.php:147 actions/invite.php:161 #, php-format msgctxt "INVITE" msgid "%1$s (%2$s)" @@ -3496,7 +3523,7 @@ msgstr "" #. TRANS: Message displayed inviting users to use a StatusNet site while the invited user #. TRANS: already uses a this StatusNet site. Plural form is based on the number of #. TRANS: reported already present people. Followed by a bullet list. -#: actions/invite.php:154 +#: actions/invite.php:155 msgid "This person is already a user and you were automatically subscribed:" msgid_plural "" "These people are already users and you were automatically subscribed to them:" @@ -3506,7 +3533,7 @@ msgstr[1] "" #. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is #. TRANS: based on the number of invitations sent. Followed by a bullet list of #. TRANS: e-mail addresses to which invitations were sent. -#: actions/invite.php:168 +#: actions/invite.php:169 msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" msgstr[0] "" @@ -3514,41 +3541,41 @@ msgstr[1] "" #. TRANS: Generic message displayed after sending out one or more invitations to #. TRANS: people to join a StatusNet site. -#: actions/invite.php:178 +#: actions/invite.php:179 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" #. TRANS: Form instructions. -#: actions/invite.php:191 +#: actions/invite.php:192 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #. TRANS: Field label for a list of e-mail addresses. -#: actions/invite.php:218 +#: actions/invite.php:219 msgid "Email addresses" msgstr "" #. TRANS: Tooltip for field label for a list of e-mail addresses. -#: actions/invite.php:221 +#: actions/invite.php:222 msgid "Addresses of friends to invite (one per line)." msgstr "" #. TRANS: Field label for a personal message to send to invitees. -#: actions/invite.php:225 +#: actions/invite.php:226 msgid "Personal message" msgstr "" #. TRANS: Tooltip for field label for a personal message to send to invitees. -#: actions/invite.php:228 +#: actions/invite.php:229 msgid "Optionally add a personal message to the invitation." msgstr "" #. TRANS: Send button for inviting friends #. TRANS: Button text for sending notice. -#: actions/invite.php:232 lib/noticeform.php:301 +#: actions/invite.php:233 lib/noticeform.php:302 msgctxt "BUTTON" msgid "Send" msgstr "" @@ -3556,7 +3583,7 @@ msgstr "" #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral #. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is #. TRANS: the StatusNet sitename. -#: actions/invite.php:264 +#: actions/invite.php:265 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" @@ -3566,7 +3593,7 @@ msgstr "" #. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the #. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link #. TRANS: to register with the StatusNet site. -#: actions/invite.php:271 +#: actions/invite.php:272 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -3779,13 +3806,13 @@ msgstr "" #. TRANS: Checkbox label label on login page. #. TRANS: Checkbox label on account registration page. -#: actions/login.php:239 actions/register.php:512 +#: actions/login.php:239 actions/register.php:514 msgid "Remember me" msgstr "" #. TRANS: Checkbox title on login page. #. TRANS: Checkbox title on account registration page. -#: actions/login.php:241 actions/register.php:515 +#: actions/login.php:241 actions/register.php:517 msgid "Automatically login in the future; not for shared computers!" msgstr "" @@ -3821,13 +3848,13 @@ msgid "" msgstr "" #. TRANS: Client error displayed when trying to make another user admin on the Make Admin page while not an admin. -#: actions/makeadmin.php:98 +#: actions/makeadmin.php:99 msgid "Only an admin can make another user an admin." msgstr "" #. TRANS: Client error displayed when trying to make another user admin on the Make Admin page who already is admin. #. TRANS: %1$s is the user that is already admin, %2$s is the group user is already admin for. -#: actions/makeadmin.php:104 +#: actions/makeadmin.php:105 #, php-format msgid "%1$s is already an admin for group \"%2$s\"." msgstr "" @@ -3835,7 +3862,7 @@ msgstr "" #. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails #. TRANS: because the group membership record could not be gotten. #. TRANS: %1$s is the to be admin user, %2$s is the group user should be admin for. -#: actions/makeadmin.php:144 +#: actions/makeadmin.php:145 #, php-format msgid "Can't get membership record for %1$s in group %2$s." msgstr "" @@ -3843,7 +3870,7 @@ msgstr "" #. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails #. TRANS: because the group adminship record coud not be saved properly. #. TRANS: %1$s is the to be admin user, %2$s is the group user is already admin for. -#: actions/makeadmin.php:160 +#: actions/makeadmin.php:161 #, php-format msgid "Can't make %1$s an admin for group %2$s." msgstr "" @@ -3864,22 +3891,22 @@ msgid "You must be logged in to register an application." msgstr "" #. TRANS: Form instructions for registering a new application. -#: actions/newapplication.php:147 +#: actions/newapplication.php:148 msgid "Use this form to register a new application." msgstr "" #. TRANS: Validation error shown when not providing a source URL in the "New application" form. -#: actions/newapplication.php:189 +#: actions/newapplication.php:190 msgid "Source URL is required." msgstr "" #. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form. -#: actions/newapplication.php:279 actions/newapplication.php:289 +#: actions/newapplication.php:280 actions/newapplication.php:290 msgid "Could not create application." msgstr "" #. TRANS: Form validation error on New application page when providing an invalid image upload. -#: actions/newapplication.php:298 +#: actions/newapplication.php:299 msgid "Invalid image." msgstr "" @@ -3900,13 +3927,13 @@ msgstr "" #. TRANS: Page title for new direct message page. #. TRANS: Page title on page for sending a direct message. -#: actions/newmessage.php:72 actions/newmessage.php:249 +#: actions/newmessage.php:72 actions/newmessage.php:250 msgid "New message" msgstr "" #. TRANS: Client error displayed trying to send a direct message to a user while sender and #. TRANS: receiver are not subscribed to each other. -#: actions/newmessage.php:126 actions/newmessage.php:173 +#: actions/newmessage.php:126 actions/newmessage.php:174 msgid "You cannot send a message to this user." msgstr "" @@ -3914,25 +3941,25 @@ msgstr "" #. TRANS: Client error displayed trying to send a notice without content. #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:150 actions/newnotice.php:139 lib/command.php:484 +#: actions/newmessage.php:151 actions/newnotice.php:140 lib/command.php:484 #: lib/command.php:573 msgid "No content!" msgstr "" #. TRANS: Form validation error displayed trying to send a direct message without specifying a recipient. -#: actions/newmessage.php:168 +#: actions/newmessage.php:169 msgid "No recipient specified." msgstr "" #. TRANS: Client error displayed trying to send a direct message to self. #. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:177 lib/command.php:511 +#: actions/newmessage.php:178 lib/command.php:511 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #. TRANS: Page title after sending a direct message. -#: actions/newmessage.php:195 +#: actions/newmessage.php:196 msgid "Message sent" msgstr "" @@ -3940,24 +3967,26 @@ msgstr "" #. TRANS: %s is the direct message recipient. #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:201 lib/command.php:519 +#: actions/newmessage.php:202 lib/command.php:519 #, php-format msgid "Direct message to %s sent." msgstr "" #. TRANS: Page title after an AJAX error occurred on the "send direct message" page. #. TRANS: Page title after an AJAX error occurs on the send notice page. -#: actions/newmessage.php:227 actions/newnotice.php:268 lib/error.php:117 +#: actions/newmessage.php:228 actions/newnotice.php:271 lib/error.php:117 msgid "Ajax Error" msgstr "" #. TRANS: Page title for sending a new notice. -#: actions/newnotice.php:67 actions/newnotice.php:289 +#. TRANS: Title for form to send a new notice. +#: actions/newnotice.php:67 actions/newnotice.php:293 +msgctxt "TITLE" msgid "New notice" msgstr "" #. TRANS: Page title after sending a notice. -#: actions/newnotice.php:234 +#: actions/newnotice.php:237 msgid "Notice posted" msgstr "" @@ -4014,19 +4043,19 @@ msgid "Updates matching search term \"%1$s\" on %2$s." msgstr "" #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. -#: actions/nudge.php:87 +#: actions/nudge.php:88 msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email " "address yet." msgstr "" #. TRANS: Page title after sending a nudge. -#: actions/nudge.php:97 +#: actions/nudge.php:98 msgid "Nudge sent" msgstr "" #. TRANS: Confirmation text after sending a nudge. -#: actions/nudge.php:101 +#: actions/nudge.php:102 msgid "Nudge sent!" msgstr "" @@ -4062,20 +4091,20 @@ msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:165 +#: actions/oauthconnectionssettings.php:166 msgid "You are not a user of that application." msgstr "" #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:180 +#: actions/oauthconnectionssettings.php:181 #, php-format msgid "Unable to revoke access for application: %s." msgstr "" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:199 +#: actions/oauthconnectionssettings.php:200 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -4083,14 +4112,14 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:210 +#: actions/oauthconnectionssettings.php:211 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:230 +#: actions/oauthconnectionssettings.php:231 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " @@ -4241,7 +4270,7 @@ msgstr "" #. TRANS: Field title on page where to change password. #. TRANS: Field title on account registration page. -#: actions/passwordsettings.php:115 actions/register.php:444 +#: actions/passwordsettings.php:115 actions/register.php:446 msgid "6 or more characters." msgstr "" @@ -4255,7 +4284,7 @@ msgstr "" #. TRANS: Ttile for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #: actions/passwordsettings.php:121 actions/recoverpassword.php:264 -#: actions/register.php:450 +#: actions/register.php:452 msgid "Same as password above." msgstr "" @@ -4267,35 +4296,35 @@ msgstr "" #. TRANS: Form validation error on page where to change password. #. TRANS: Form validation error displayed when trying to register with too short a password. -#: actions/passwordsettings.php:163 actions/register.php:240 +#: actions/passwordsettings.php:164 actions/register.php:242 msgid "Password must be 6 or more characters." msgstr "" #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#: actions/passwordsettings.php:167 actions/register.php:244 +#: actions/passwordsettings.php:168 actions/register.php:246 msgid "Passwords do not match." msgstr "" #. TRANS: Form validation error on page where to change password. -#: actions/passwordsettings.php:176 +#: actions/passwordsettings.php:177 msgid "Incorrect old password." msgstr "" #. TRANS: Form validation error on page where to change password. -#: actions/passwordsettings.php:193 +#: actions/passwordsettings.php:194 msgid "Error saving user; invalid." msgstr "" #. TRANS: Server error displayed on page where to change password when password change #. TRANS: could not be made because of a server error. #. TRANS: Reset password form validation error message. -#: actions/passwordsettings.php:200 actions/recoverpassword.php:422 +#: actions/passwordsettings.php:201 actions/recoverpassword.php:422 msgid "Cannot save new password." msgstr "" #. TRANS: Form validation notice on page where to change password. -#: actions/passwordsettings.php:207 +#: actions/passwordsettings.php:208 msgid "Password saved." msgstr "" @@ -4619,17 +4648,17 @@ msgid "This action only accepts POST requests." msgstr "" #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. -#: actions/pluginenable.php:104 +#: actions/pluginenable.php:105 msgid "You cannot administer plugins." msgstr "" #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. -#: actions/pluginenable.php:112 +#: actions/pluginenable.php:113 msgid "No such plugin." msgstr "" #. TRANS: Page title for AJAX form return when enabling a plugin. -#: actions/pluginenable.php:161 +#: actions/pluginenable.php:162 msgctxt "plugin" msgid "Enabled" msgstr "" @@ -4690,7 +4719,7 @@ msgstr "" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. #. TRANS: Field title on group edit form. -#: actions/profilesettings.php:107 actions/register.php:438 +#: actions/profilesettings.php:107 actions/register.php:440 #: lib/groupeditform.php:150 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4698,7 +4727,7 @@ msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. #. TRANS: Field label on group edit form. -#: actions/profilesettings.php:111 actions/register.php:469 +#: actions/profilesettings.php:111 actions/register.php:471 #: lib/groupeditform.php:154 msgid "Full name" msgstr "" @@ -4707,14 +4736,14 @@ msgstr "" #. TRANS: Field label on account registration page. #. TRANS: Form input field label. #. TRANS: Field label on group edit form; points to "more info" for a group. -#: actions/profilesettings.php:116 actions/register.php:476 +#: actions/profilesettings.php:116 actions/register.php:478 #: lib/applicationeditform.php:236 lib/groupeditform.php:159 msgid "Homepage" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#: actions/profilesettings.php:119 actions/register.php:479 +#: actions/profilesettings.php:119 actions/register.php:481 msgid "URL of your homepage, blog, or profile on another site." msgstr "" @@ -4724,7 +4753,7 @@ msgstr "" #. TRANS: Text area title in form for account registration. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:127 actions/register.php:488 +#: actions/profilesettings.php:127 actions/register.php:490 #, php-format msgid "Describe yourself and your interests in %d character." msgid_plural "Describe yourself and your interests in %d characters." @@ -4733,28 +4762,28 @@ msgstr[1] "" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Text area title on account registration page. -#: actions/profilesettings.php:133 actions/register.php:494 +#: actions/profilesettings.php:133 actions/register.php:496 msgid "Describe yourself and your interests." msgstr "" #. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. #. TRANS: Text area label on account registration page. -#: actions/profilesettings.php:137 actions/register.php:497 +#: actions/profilesettings.php:137 actions/register.php:499 msgid "Bio" msgstr "" #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. #. TRANS: Field label on group edit form. -#: actions/profilesettings.php:143 actions/register.php:503 +#: actions/profilesettings.php:143 actions/register.php:505 #: lib/groupeditform.php:184 msgid "Location" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#: actions/profilesettings.php:146 actions/register.php:506 +#: actions/profilesettings.php:146 actions/register.php:508 msgid "Where you are, like \"City, State (or Region), Country\"." msgstr "" @@ -4835,7 +4864,7 @@ msgstr "" #. TRANS: characters for the biography (%d). #. TRANS: Form validation error on registration page when providing too long a bio text. #. TRANS: %d is the maximum number of characters for bio; used for plural. -#: actions/profilesettings.php:278 actions/register.php:229 +#: actions/profilesettings.php:278 actions/register.php:231 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4857,7 +4886,7 @@ msgstr "" #. TRANS: %s is an invalid tag. #. TRANS: Form validation error when entering an invalid tag. #. TRANS: %s is the invalid tag. -#: actions/profilesettings.php:311 actions/tagother.php:170 +#: actions/profilesettings.php:311 actions/tagother.php:171 #, php-format msgid "Invalid tag: \"%s\"." msgstr "" @@ -4875,7 +4904,7 @@ msgstr "" #. TRANS: Server error thrown when user profile settings tags could not be saved. #. TRANS: Client error on "tag other users" page when saving tags fails server side. -#: actions/profilesettings.php:451 actions/tagother.php:194 +#: actions/profilesettings.php:451 actions/tagother.php:195 msgid "Could not save tags." msgstr "" @@ -5110,11 +5139,6 @@ msgstr "" msgid "Password saved" msgstr "" -#. TRANS: Title for password recovery page when an unknown action has been specified. -#: actions/recoverpassword.php:232 -msgid "Unknown action" -msgstr "" - #. TRANS: Title for field label for password reset form. #: actions/recoverpassword.php:258 msgid "6 or more characters, and do not forget it!" @@ -5171,7 +5195,7 @@ msgstr "" #. TRANS: Server error displayed when something does wrong with the user object during password reset. #. TRANS: Server error displayed when saving fails during user registration. -#: actions/recoverpassword.php:430 actions/register.php:261 +#: actions/recoverpassword.php:430 actions/register.php:263 msgid "Error setting user." msgstr "" @@ -5193,7 +5217,7 @@ msgid "No such file \"%d\"." msgstr "" #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. -#: actions/register.php:81 actions/register.php:188 actions/register.php:415 +#: actions/register.php:81 actions/register.php:189 actions/register.php:417 msgid "Sorry, only invited people can register." msgstr "" @@ -5219,57 +5243,58 @@ msgid "Registration not allowed." msgstr "" #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#: actions/register.php:202 +#: actions/register.php:203 msgid "You cannot register if you do not agree to the license." msgstr "" -#: actions/register.php:214 +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. +#: actions/register.php:216 msgid "Email address already exists." msgstr "" #. TRANS: Form validation error displayed when trying to register with an invalid username or password. -#: actions/register.php:255 actions/register.php:279 +#: actions/register.php:257 actions/register.php:281 msgid "Invalid username or password." msgstr "" #. TRANS: Page notice on registration page. -#: actions/register.php:355 +#: actions/register.php:357 msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues." msgstr "" #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#: actions/register.php:448 +#: actions/register.php:450 msgctxt "PASSWORD" msgid "Confirm" msgstr "" #. TRANS: Field label on account registration page. -#: actions/register.php:455 actions/register.php:461 +#: actions/register.php:457 actions/register.php:463 msgctxt "LABEL" msgid "Email" msgstr "" #. TRANS: Field title on account registration page. -#: actions/register.php:457 actions/register.php:463 +#: actions/register.php:459 actions/register.php:465 msgid "Used only for updates, announcements, and password recovery." msgstr "" #. TRANS: Field title on account registration page. -#: actions/register.php:472 +#: actions/register.php:474 msgid "Longer name, preferably your \"real\" name." msgstr "" #. TRANS: Button text to register a user on account registration page. -#: actions/register.php:535 +#: actions/register.php:537 msgctxt "BUTTON" msgid "Register" msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for private sites. #. TRANS: %1$s is the StatusNet sitename. -#: actions/register.php:548 +#: actions/register.php:550 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -5277,23 +5302,23 @@ msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with a specified copyright owner. #. TRANS: %1$s is the license owner. -#: actions/register.php:559 +#: actions/register.php:561 #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:563 +#: actions/register.php:565 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:566 +#: actions/register.php:568 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:571 +#: actions/register.php:573 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -5304,7 +5329,7 @@ msgstr "" #. TRANS: %1$s is the registered nickname, %2$s is the profile URL. #. TRANS: This message contains Markdown links in the form [link text](link) #. TRANS: and variables in the form %%%%variable%%%%. Please mind the syntax. -#: actions/register.php:616 +#: actions/register.php:618 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -5324,7 +5349,7 @@ msgid "" msgstr "" #. TRANS: Instruction text on how to deal with the e-mail address confirmation e-mail. -#: actions/register.php:641 +#: actions/register.php:643 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -5332,7 +5357,7 @@ msgstr "" #. TRANS: Page notice for remote subscribe. This message contains Markdown links. #. TRANS: Ensure to keep the correct markup of [link description](link). -#: actions/remotesubscribe.php:100 +#: actions/remotesubscribe.php:101 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -5341,62 +5366,62 @@ msgid "" msgstr "" #. TRANS: Page title for Remote subscribe. -#: actions/remotesubscribe.php:115 +#: actions/remotesubscribe.php:116 msgid "Remote subscribe" msgstr "" #. TRANS: Field legend on page for remote subscribe. -#: actions/remotesubscribe.php:128 +#: actions/remotesubscribe.php:129 msgid "Subscribe to a remote user" msgstr "" #. TRANS: Field label on page for remote subscribe. -#: actions/remotesubscribe.php:134 +#: actions/remotesubscribe.php:135 msgid "User nickname" msgstr "" #. TRANS: Field title on page for remote subscribe. -#: actions/remotesubscribe.php:136 +#: actions/remotesubscribe.php:137 msgid "Nickname of the user you want to follow." msgstr "" #. TRANS: Field label on page for remote subscribe. -#: actions/remotesubscribe.php:140 +#: actions/remotesubscribe.php:141 msgid "Profile URL" msgstr "" #. TRANS: Field title on page for remote subscribe. -#: actions/remotesubscribe.php:142 +#: actions/remotesubscribe.php:143 msgid "URL of your profile on another compatible microblogging service." msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#: actions/remotesubscribe.php:146 lib/accountprofileblock.php:290 +#: actions/remotesubscribe.php:147 lib/accountprofileblock.php:290 #: lib/subscribeform.php:130 msgctxt "BUTTON" msgid "Subscribe" msgstr "" #. TRANS: Form validation error on page for remote subscribe when an invalid profile URL was provided. -#: actions/remotesubscribe.php:171 +#: actions/remotesubscribe.php:172 msgid "Invalid profile URL (bad format)." msgstr "" #. TRANS: Form validation error on page for remote subscribe when no the provided profile URL #. TRANS: does not contain expected data. -#: actions/remotesubscribe.php:182 +#: actions/remotesubscribe.php:183 msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." msgstr "" #. TRANS: Form validation error on page for remote subscribe. -#: actions/remotesubscribe.php:191 +#: actions/remotesubscribe.php:192 msgid "That is a local profile! Login to subscribe." msgstr "" #. TRANS: Form validation error on page for remote subscribe when the remote service is not providing a request token. -#: actions/remotesubscribe.php:199 +#: actions/remotesubscribe.php:200 msgid "Could not get a request token." msgstr "" @@ -5413,12 +5438,12 @@ msgstr "" #. TRANS: Title after repeating a notice. #. TRANS: Repeat form status in notice list when a notice has been repeated. -#: actions/repeat.php:101 lib/noticelistitem.php:604 +#: actions/repeat.php:102 lib/noticelistitem.php:605 msgid "Repeated" msgstr "" #. TRANS: Confirmation text after repeating a notice. -#: actions/repeat.php:107 +#: actions/repeat.php:108 msgid "Repeated!" msgstr "" @@ -5658,14 +5683,14 @@ msgid "You must be logged in to view an application." msgstr "" #. TRANS: Header on the OAuth application page. -#: actions/showapplication.php:155 +#: actions/showapplication.php:156 msgid "Application profile" msgstr "" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#: actions/showapplication.php:186 +#: actions/showapplication.php:187 #, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" @@ -5673,36 +5698,36 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Header on the OAuth application page. -#: actions/showapplication.php:199 +#: actions/showapplication.php:200 msgid "Application actions" msgstr "" #. TRANS: Link text to edit application on the OAuth application page. -#: actions/showapplication.php:206 +#: actions/showapplication.php:207 msgctxt "EDITAPP" msgid "Edit" msgstr "" #. TRANS: Button text on the OAuth application page. #. TRANS: Resets the OAuth consumer key and secret. -#: actions/showapplication.php:225 +#: actions/showapplication.php:226 msgid "Reset key & secret" msgstr "" #. TRANS: Header on the OAuth application page. -#: actions/showapplication.php:252 +#: actions/showapplication.php:253 msgid "Application info" msgstr "" #. TRANS: Note on the OAuth application page about signature support. -#: actions/showapplication.php:271 +#: actions/showapplication.php:272 msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. -#: actions/showapplication.php:292 +#: actions/showapplication.php:293 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" @@ -6275,76 +6300,76 @@ msgid "" msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. -#: actions/smssettings.php:307 +#: actions/smssettings.php:308 msgid "SMS preferences saved." msgstr "" #. TRANS: Message given saving SMS phone number without having provided one. -#: actions/smssettings.php:329 +#: actions/smssettings.php:330 msgid "No phone number." msgstr "" #. TRANS: Message given saving SMS phone number without having selected a carrier. -#: actions/smssettings.php:335 +#: actions/smssettings.php:336 msgid "No carrier selected." msgstr "" #. TRANS: Message given saving SMS phone number that is already set. -#: actions/smssettings.php:343 +#: actions/smssettings.php:344 msgid "That is already your phone number." msgstr "" #. TRANS: Message given saving SMS phone number that is already set for another user. -#: actions/smssettings.php:347 +#: actions/smssettings.php:348 msgid "That phone number already belongs to another user." msgstr "" #. TRANS: Message given saving valid SMS phone number that is to be confirmed. -#: actions/smssettings.php:375 +#: actions/smssettings.php:376 msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." msgstr "" #. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. -#: actions/smssettings.php:403 +#: actions/smssettings.php:404 msgid "That is the wrong confirmation number." msgstr "" #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/smssettings.php:412 +#: actions/smssettings.php:413 msgid "Could not delete SMS confirmation." msgstr "" #. TRANS: Message given after successfully canceling SMS phone number confirmation. -#: actions/smssettings.php:417 +#: actions/smssettings.php:418 msgid "SMS confirmation cancelled." msgstr "" #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. -#: actions/smssettings.php:437 +#: actions/smssettings.php:438 msgid "That is not your phone number." msgstr "" #. TRANS: Message given after successfully removing a registered SMS phone number. -#: actions/smssettings.php:459 +#: actions/smssettings.php:460 msgid "The SMS phone number was removed." msgstr "" #. TRANS: Label for mobile carrier dropdown menu in SMS settings. -#: actions/smssettings.php:498 +#: actions/smssettings.php:499 msgid "Mobile carrier" msgstr "" #. TRANS: Default option for mobile carrier dropdown menu in SMS settings. -#: actions/smssettings.php:503 +#: actions/smssettings.php:504 msgid "Select a carrier" msgstr "" #. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. #. TRANS: %s is an administrative contact's e-mail address. -#: actions/smssettings.php:512 +#: actions/smssettings.php:513 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -6352,7 +6377,7 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:534 +#: actions/smssettings.php:535 msgid "No code entered." msgstr "" @@ -6434,13 +6459,13 @@ msgid "Save snapshot settings." msgstr "" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. -#: actions/subedit.php:75 +#: actions/subedit.php:76 msgid "You are not subscribed to that profile." 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:147 +#: actions/subedit.php:90 classes/Subscription.php:147 msgid "Could not save subscription." msgstr "" @@ -6648,19 +6673,19 @@ msgid "" msgstr "" #. TRANS: Client error on "tag other users" page when tagging a user is not possible because of missing mutual subscriptions. -#: actions/tagother.php:186 +#: actions/tagother.php:187 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" #. TRANS: Title of "tag other users" page. -#: actions/tagother.php:204 +#: actions/tagother.php:205 msgctxt "TITLE" msgid "Tags" msgstr "" #. TRANS: Page notice on "tag other users" page. -#: actions/tagother.php:232 +#: actions/tagother.php:233 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -6685,7 +6710,7 @@ msgid "User is not silenced." msgstr "" #. TRANS: Page title for page to unsubscribe. -#: actions/unsubscribe.php:101 +#: actions/unsubscribe.php:102 msgid "Unsubscribed" msgstr "" @@ -6693,7 +6718,7 @@ msgstr "" #. TRANS: %1$s is the license incompatible with site license %2$s. #. TRANS: Exception thrown when licenses are not compatible for an authorisation request. #. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. -#: actions/updateprofile.php:65 actions/userauthorization.php:342 +#: actions/updateprofile.php:65 actions/userauthorization.php:343 #, php-format msgid "" "Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" @@ -6759,22 +6784,22 @@ msgid "" msgstr "" #. TRANS: Form validation error for form "Other settings" in user profile. -#: actions/urlsettings.php:179 +#: actions/urlsettings.php:180 msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. -#: actions/urlsettings.php:187 +#: actions/urlsettings.php:188 msgid "Invalid number for maximum URL length." msgstr "" #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. -#: actions/urlsettings.php:194 +#: actions/urlsettings.php:195 msgid "Invalid number for maximum notice length." msgstr "" #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. -#: actions/urlsettings.php:240 +#: actions/urlsettings.php:241 msgid "Error saving user URL shortening preferences." msgstr "" @@ -6868,12 +6893,12 @@ msgid "Save user settings." msgstr "" #. TRANS: Page title. -#: actions/userauthorization.php:109 +#: actions/userauthorization.php:110 msgid "Authorize subscription" msgstr "" #. TRANS: Page notice on "Authorize subscription" page. -#: actions/userauthorization.php:115 +#: actions/userauthorization.php:116 msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " @@ -6883,7 +6908,7 @@ msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. #. TRANS: Submit button text to accept a subscription request on approve sub form. -#: actions/userauthorization.php:202 lib/approvegroupform.php:116 +#: actions/userauthorization.php:203 lib/approvegroupform.php:116 #: lib/approvesubform.php:110 msgctxt "BUTTON" msgid "Accept" @@ -6891,36 +6916,36 @@ msgstr "" #. TRANS: Title for button on Authorise Subscription page. #. TRANS: Button title to subscribe to a user. -#: actions/userauthorization.php:204 lib/subscribeform.php:132 +#: actions/userauthorization.php:205 lib/subscribeform.php:132 msgid "Subscribe to this user." msgstr "" #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to reject a group membership request on approve group form. #. TRANS: Submit button text to reject a subscription request on approve sub form. -#: actions/userauthorization.php:207 lib/approvegroupform.php:118 +#: actions/userauthorization.php:208 lib/approvegroupform.php:118 #: lib/approvesubform.php:112 msgctxt "BUTTON" msgid "Reject" msgstr "" #. TRANS: Title for button on Authorise Subscription page. -#: actions/userauthorization.php:209 +#: actions/userauthorization.php:210 msgid "Reject this subscription." msgstr "" #. TRANS: Client error displayed for an empty authorisation request. -#: actions/userauthorization.php:222 +#: actions/userauthorization.php:223 msgid "No authorization request!" msgstr "" #. TRANS: Accept message header from Authorise subscription page. -#: actions/userauthorization.php:245 +#: actions/userauthorization.php:246 msgid "Subscription authorized" msgstr "" #. TRANS: Accept message text from Authorise subscription page. -#: actions/userauthorization.php:248 +#: actions/userauthorization.php:249 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -6928,12 +6953,12 @@ msgid "" msgstr "" #. TRANS: Reject message header from Authorise subscription page. -#: actions/userauthorization.php:259 +#: actions/userauthorization.php:260 msgid "Subscription rejected" msgstr "" #. TRANS: Reject message from Authorise subscription page. -#: actions/userauthorization.php:262 +#: actions/userauthorization.php:263 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -6942,49 +6967,49 @@ msgstr "" #. TRANS: Exception thrown when no valid user is found for an authorisation request. #. TRANS: %s is a listener URI. -#: actions/userauthorization.php:299 +#: actions/userauthorization.php:300 #, php-format msgid "Listener URI \"%s\" not found here." msgstr "" #. TRANS: Exception thrown when listenee URI is too long for an authorisation request. #. TRANS: %s is a listenee URI. -#: actions/userauthorization.php:306 +#: actions/userauthorization.php:307 #, php-format msgid "Listenee URI \"%s\" is too long." msgstr "" #. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. #. TRANS: %s is a listenee URI. -#: actions/userauthorization.php:314 +#: actions/userauthorization.php:315 #, php-format msgid "Listenee URI \"%s\" is a local user." msgstr "" #. TRANS: Exception thrown when profile URL is a local user for an authorisation request. #. TRANS: %s is a profile URL. -#: actions/userauthorization.php:332 +#: actions/userauthorization.php:333 #, php-format msgid "Profile URL \"%s\" is for a local user." msgstr "" #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. -#: actions/userauthorization.php:352 +#: actions/userauthorization.php:353 #, php-format msgid "Avatar URL \"%s\" is not valid." msgstr "" #. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. #. TRANS: %s is an avatar URL. -#: actions/userauthorization.php:359 +#: actions/userauthorization.php:360 #, php-format msgid "Cannot read avatar URL \"%s\"." msgstr "" #. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. #. TRANS: %s is an avatar URL. -#: actions/userauthorization.php:366 +#: actions/userauthorization.php:367 #, php-format msgid "Wrong image type for avatar URL \"%s\"." msgstr "" @@ -7059,7 +7084,7 @@ msgstr "" #. TRANS: %1$s is a group name, %2$s is a site name. #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 +#: actions/userrss.php:98 lib/atomgroupnoticefeed.php:70 #: lib/atomusernoticefeed.php:95 #, php-format msgid "Updates from %1$s on %2$s!" @@ -7236,7 +7261,7 @@ msgid "Group leave failed." msgstr "" #. TRANS: Activity title. -#: classes/Group_member.php:148 lib/joinform.php:114 +#: classes/Group_member.php:148 msgid "Join" msgstr "" @@ -8734,8 +8759,7 @@ msgstr "" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. -#: lib/deletegroupform.php:121 lib/deleteuserform.php:64 -#: lib/noticelistitem.php:581 +#: lib/deleteuserform.php:64 lib/noticelistitem.php:582 msgid "Delete" msgstr "" @@ -8783,14 +8807,8 @@ msgctxt "RADIO" msgid "Off" msgstr "" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -#: lib/designsettings.php:216 lib/designsettings.php:238 -msgid "Couldn't update your design." -msgstr "" - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -#: lib/designsettings.php:244 +#: lib/designsettings.php:245 msgid "Design defaults restored." msgstr "" @@ -9185,6 +9203,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#: lib/joinform.php:108 +msgctxt "BUTTON" +msgid "Join" +msgstr "" + #. TRANS: Button text on form to leave a group. #: lib/leaveform.php:109 msgctxt "BUTTON" @@ -9193,7 +9217,7 @@ msgstr "" #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. -#: lib/logingroupnav.php:64 lib/primarynav.php:81 +#: lib/logingroupnav.php:64 lib/primarynav.php:82 msgctxt "MENU" msgid "Login" msgstr "" @@ -9641,12 +9665,12 @@ msgstr "" #. TRANS: Followed by notice source (usually the client used to send the notice). #. TRANS: Followed by notice source. -#: lib/messagelistitem.php:123 lib/noticelistitem.php:428 +#: lib/messagelistitem.php:123 lib/noticelistitem.php:429 msgid "from" msgstr "" #. TRANS: A possible notice source (web interface). -#: lib/messagelistitem.php:144 lib/noticelistitem.php:423 +#: lib/messagelistitem.php:144 lib/noticelistitem.php:424 msgctxt "SOURCE" msgid "web" msgstr "" @@ -9730,22 +9754,29 @@ msgid "Attach a file." msgstr "" #. TRANS: Field label to add location to a notice. -#: lib/noticeform.php:270 +#: lib/noticeform.php:271 msgid "Share my location" msgstr "" #. TRANS: Text to not share location for a notice in notice form. -#: lib/noticeform.php:275 +#: lib/noticeform.php:276 msgid "Do not share my location" msgstr "" #. TRANS: Timeout error text for location retrieval in notice form. -#: lib/noticeform.php:277 +#: lib/noticeform.php:278 msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#: lib/noticelist.php:85 lib/threadednoticelist.php:65 +msgctxt "HEADER" +msgid "Notices" +msgstr "" + #. TRANS: Used in coordinates as abbreviation of north. #: lib/noticelistitem.php:352 msgid "N" @@ -9782,32 +9813,32 @@ msgid "at" msgstr "" #. TRANS: Addition in notice list item if notice is part of a conversation. -#: lib/noticelistitem.php:489 +#: lib/noticelistitem.php:490 msgid "in context" msgstr "" #. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. -#: lib/noticelistitem.php:524 +#: lib/noticelistitem.php:525 msgid "Repeated by" msgstr "" #. TRANS: Link title in notice list item to reply to a notice. -#: lib/noticelistitem.php:551 +#: lib/noticelistitem.php:552 msgid "Reply to this notice" msgstr "" #. TRANS: Link text in notice list item to reply to a notice. -#: lib/noticelistitem.php:553 +#: lib/noticelistitem.php:554 msgid "Reply" msgstr "" #. TRANS: Link title in notice list item to delete a notice. -#: lib/noticelistitem.php:579 +#: lib/noticelistitem.php:580 msgid "Delete this notice" msgstr "" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#: lib/noticelistitem.php:602 +#: lib/noticelistitem.php:603 msgid "Notice repeated." msgstr "" @@ -9935,12 +9966,12 @@ msgstr "" #. TRANS: Menu item title in primary navigation panel. #: lib/primarynav.php:60 -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "" #. TRANS: Menu item title in primary navigation panel. #: lib/primarynav.php:68 -msgid "Site configuration" +msgid "Site configuration." msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -9949,24 +9980,25 @@ msgctxt "MENU" msgid "Logout" msgstr "" -#: lib/primarynav.php:75 -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#: lib/primarynav.php:76 +msgid "Logout from the site." msgstr "" #. TRANS: Menu item title in primary navigation panel. -#: lib/primarynav.php:83 -msgid "Login to the site" +#: lib/primarynav.php:84 +msgid "Login to the site." msgstr "" #. TRANS: Menu item in primary navigation panel. -#: lib/primarynav.php:91 +#: lib/primarynav.php:92 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: Menu item title in primary navigation panel. -#: lib/primarynav.php:93 -msgid "Search the site" +#: lib/primarynav.php:94 +msgid "Search the site." msgstr "" #. TRANS: H2 text for user subscription statistics. @@ -10112,6 +10144,30 @@ msgctxt "BUTTON" msgid "Search" msgstr "" +#. TRANS: Standard search suggestions shown when a search does not give any results. +#: lib/searchaction.php:143 +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#: lib/searchaction.php:152 +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #: lib/searchgroupnav.php:74 msgctxt "MENU" @@ -10458,12 +10514,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "" -#. TRANS: Header for Notices section. -#: lib/threadednoticelist.php:65 -msgctxt "HEADER" -msgid "Notices" -msgstr "" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #: lib/threadednoticelist.php:292 diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index cdf4e93ece..fee437fd80 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -13,17 +13,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:46+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:18+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Okänd" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Okänd funktion" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -111,6 +146,7 @@ msgstr "Ingen sådan sida" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -135,6 +171,7 @@ msgstr "Ingen sådan sida" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -151,6 +188,8 @@ msgstr "%1$s och vänner, sida %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -227,28 +266,14 @@ msgstr "Du och vänner" msgid "Updates from %1$s and friends on %2$s!" msgstr "Uppdateringar från %1$s och vänner på %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API-metod hittades inte." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -322,6 +347,8 @@ msgstr "Kunde inte spara dina utseendeinställningar." #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Kunde inte uppdatera din profils utseende." @@ -696,9 +723,12 @@ msgstr "Begäran-token är redan auktoriserad." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Det var ett problem med din sessions-token. Var vänlig försök igen." @@ -895,6 +925,8 @@ msgstr "Ta bort notis" msgid "Client must provide a 'status' parameter with a value." msgstr "Klient måste tillhandahålla en 'status'-parameter med ett värde." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -911,6 +943,8 @@ msgstr "API-metod hittades inte." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, fuzzy, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -980,6 +1014,8 @@ msgstr "%1$s uppdateringar med svar på uppdatering från %2$s / %3$s." msgid "Repeats of %s" msgstr "Upprepningar av %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s meddelanden som %2$s / %3$s har upprepat." @@ -1352,6 +1388,7 @@ msgstr "" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Användare utan matchande profil." @@ -1378,6 +1415,7 @@ msgstr "Förhandsgranska" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Ta bort" @@ -1552,24 +1590,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s lämnade grupp %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Inte inloggad." @@ -1732,6 +1753,7 @@ msgstr "Applikation hittades inte." msgid "You are not the owner of this application." msgstr "Du är inte ägaren av denna applikation." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -3372,6 +3394,9 @@ msgid "Ajax Error" msgstr "AJAX-fel" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Ny notis" @@ -4397,10 +4422,6 @@ msgstr "Återskapande av lösenord begärd" msgid "Password saved" msgstr "Lösenord sparat." -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Okänd funktion" - #. TRANS: Title for field label for password reset form. #, fuzzy msgid "6 or more characters, and do not forget it!" @@ -4496,6 +4517,7 @@ msgstr "Registrering inte tillåten." msgid "You cannot register if you do not agree to the license." msgstr "Du kan inte registrera dig om du inte godkänner licensen." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "E-postadressen finns redan." @@ -7718,11 +7740,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Av" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Kunde inte uppdatera dina utseendeinställningar." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Standardvärden för utseende återställda." @@ -8068,6 +8085,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Gå med" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8673,6 +8696,13 @@ msgstr "" "Tyvärr, hämtning av din geografiska plats tar längre tid än förväntat, var " "god försök igen senare" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "Notiser" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8838,12 +8868,12 @@ msgstr "Inställningar för SMS" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "Ändra dina profilinställningar" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "Konfiguration av användare" #. TRANS: Menu item in primary navigation panel. @@ -8851,11 +8881,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Logga ut" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Logga ut från webbplatsen" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Logga in på webbplatsen" #. TRANS: Menu item in primary navigation panel. @@ -8865,7 +8898,7 @@ msgstr "Sök" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "Sök webbplats" #. TRANS: H2 text for user subscription statistics. @@ -8992,6 +9025,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Sök" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9301,12 +9356,6 @@ msgstr "Tema innehåller fil av typen '.%s', vilket inte är tillåtet." msgid "Error opening theme archive." msgstr "Fel vid öppning temaarkiv." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "Notiser" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9502,8 +9551,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "Ja" - -#~ msgid "Subscribe" -#~ msgstr "Prenumerera" +#~ msgid "Couldn't update your design." +#~ msgstr "Kunde inte uppdatera dina utseendeinställningar." diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 05524a46f0..2ada5cefec 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,52 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:48+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:20+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "తెలియని చర్య" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "తెలియని చర్య" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -107,6 +142,7 @@ msgstr "అటువంటి పేజీ లేదు." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -131,6 +167,7 @@ msgstr "అటువంటి పేజీ లేదు." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -147,6 +184,8 @@ msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -220,28 +259,14 @@ msgstr "మీరు మరియు మీ స్నేహితులు" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API పద్ధతి లేదు." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -312,6 +337,8 @@ msgstr "మీ రూపురేఖల అమరికలని భద్రప #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". #, fuzzy msgid "Could not update your design." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." @@ -684,9 +711,12 @@ msgstr "మీకు అధీకరణ లేదు." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -875,6 +905,8 @@ msgstr "%d నోటీసుని తొలగించాం" msgid "Client must provide a 'status' parameter with a value." msgstr "" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -891,6 +923,8 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -960,6 +994,8 @@ msgstr "%s యొక్క మైక్రోబ్లాగు" msgid "Repeats of %s" msgstr "%s యొక్క పునరావృతాలు" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%2$s నోటీసుని %1$s ఇష్టాంశంగా గుర్తించారు." @@ -1332,6 +1368,7 @@ msgstr "మీ వ్యక్తిగత అవతారాన్ని మీ #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. #, fuzzy msgid "User without matching profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." @@ -1359,6 +1396,7 @@ msgstr "మునుజూపు" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "తొలగించు" @@ -1529,24 +1567,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "లోనికి ప్రవేశించలేదు." @@ -1708,6 +1729,7 @@ msgstr "ఉపకరణం కనబడలేదు." msgid "You are not the owner of this application." msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని కాదు." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "" @@ -3298,6 +3320,9 @@ msgid "Ajax Error" msgstr "అజాక్స్ పొరపాటు" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "కొత్త సందేశం" @@ -4298,10 +4323,6 @@ msgstr "" msgid "Password saved" msgstr "సంకేతపదం భద్రమయ్యింది" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "తెలియని చర్య" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు, మర్చిపోకండి!" @@ -4393,6 +4414,7 @@ msgstr "నమోదు అనుమతించబడదు." msgid "You cannot register if you do not agree to the license." msgstr "ఈ లైసెన్సుకి అంగీకరించకపోతే మీరు నమోదుచేసుకోలేరు." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "ఈమెయిల్ చిరునామా ఇప్పటికే ఉంది." @@ -7514,11 +7536,6 @@ msgctxt "RADIO" msgid "Off" msgstr "ఆఫ్" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "మీ రూపురేఖలని తాజాకరించలేకపోయాం." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "" @@ -7858,6 +7875,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "చేరు" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8449,6 +8472,13 @@ msgstr "" "క్షమించండి, మీ భౌగోళిక ప్రాంతాన్ని తెలుసుకోవడం అనుకున్నదానికంటే ఎక్కవ సమయం తీసుకుంటూంది, దయచేసి " "కాసేపాగి ప్రయత్నించండి" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "సందేశాలు" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "ఉ" @@ -8616,11 +8646,12 @@ msgstr "SMS అమరికలు" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "ఫ్రొఫైలు అమరికలని మార్చు" #. TRANS: Menu item title in primary navigation panel. -msgid "Site configuration" +#, fuzzy +msgid "Site configuration." msgstr "సైటు స్వరూపణం" #. TRANS: Menu item in primary navigation panel. @@ -8628,11 +8659,14 @@ msgctxt "MENU" msgid "Logout" msgstr "నిష్క్రమించు" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "సైటు నుండి నిష్క్రమించు" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "సైటులోని ప్రవేశించు" #. TRANS: Menu item in primary navigation panel. @@ -8642,7 +8676,7 @@ msgstr "వెతుకు" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "సైటుని వెతుకు" #. TRANS: H2 text for user subscription statistics. @@ -8769,6 +8803,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "వెతుకు" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9072,12 +9128,6 @@ msgstr "" msgid "Error opening theme archive." msgstr "నిరోధాన్ని తొలగించడంలో పొరపాటు." -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "సందేశాలు" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9268,8 +9318,5 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Yes" -#~ msgstr "అవును" - -#~ msgid "Subscribe" -#~ msgstr "చందాచేరు" +#~ msgid "Couldn't update your design." +#~ msgstr "మీ రూపురేఖలని తాజాకరించలేకపోయాం." diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index f827d88d6c..4d5893c94a 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,53 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:50+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "Невідомо" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Дія невідома" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -112,6 +147,7 @@ msgstr "Немає такої сторінки." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -136,6 +172,7 @@ msgstr "Немає такої сторінки." #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -152,6 +189,8 @@ msgstr "%1$s та друзі, сторінка %2$d" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -228,28 +267,14 @@ msgstr "Ви з друзями" msgid "Updates from %1$s and friends on %2$s!" msgstr "Оновлення від %1$s та друзів на %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API метод не знайдено." +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -327,6 +352,8 @@ msgstr "Не маю можливості зберегти налаштуванн #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "Не вдалося оновити ваш дизайн." @@ -707,9 +734,12 @@ msgstr "Токен запиту вже авторизовано." #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." @@ -906,6 +936,8 @@ msgstr "Вилучене повідомлення %d" msgid "Client must provide a 'status' parameter with a value." msgstr "Клієнт мусить надати параметр «статус» зі значенням." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -922,6 +954,8 @@ msgstr "Початковий допис не знайдено." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -998,6 +1032,8 @@ msgstr "Дописи %1$s, що вони були повторені %2$s / %3$s msgid "Repeats of %s" msgstr "Повторення %s" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "Дописи %1$s, які повторював %2$s / %3$s." @@ -1367,6 +1403,7 @@ msgstr "Ви можете завантажити аватару. Максима #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "Користувач без відповідного профілю." @@ -1393,6 +1430,7 @@ msgstr "Перегляд" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "Видалити" @@ -1569,24 +1607,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s залишив спільноту %2$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не увійшли." @@ -1748,6 +1769,7 @@ msgstr "Додаток не виявлено." msgid "You are not the owner of this application." msgstr "Ви не є власником цього додатку." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." @@ -3351,6 +3373,9 @@ msgid "Ajax Error" msgstr "Помилка в Ajax" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "Новий допис" @@ -4350,10 +4375,6 @@ msgstr "Запит на відновлення паролю відправлен msgid "Password saved" msgstr "Пароль збережено" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "Дія невідома" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "6 або більше знаків, і не забудьте їх!" @@ -4445,6 +4466,7 @@ msgstr "Реєстрацію не дозволено." msgid "You cannot register if you do not agree to the license." msgstr "Ви не можете зареєструватись, якщо не погодитесь з умовами ліцензії." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "Ця адреса вже використовується." @@ -7616,11 +7638,6 @@ msgctxt "RADIO" msgid "Off" msgstr "Вимк." -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "Не вдалося оновити дизайн." - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "Дизайн за замовчуванням відновлено." @@ -7958,11 +7975,11 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" -"Користувач «%s» на сайті %s повідомив, що псевдонім %s належить йому. Якщо це " -"дійсно так, ви можете підтвердити це просто перейшовши за наступною ланкою: %" -"s. (Якщо ви не можете натиснути на посилання, то скопіюйте адресу до " -"адресного рядка вашого веб-оглядача.) Якщо ви не є згаданим користувачем, не " -"підтверджуйте нічого, просто проігноруйте це повідомлення." +"Користувач «%1$s» на сайті %s повідомив, що псевдонім %2$s належить йому. " +"Якщо це дійсно так, ви можете підтвердити це просто перейшовши за наступною " +"ланкою: %s. (Якщо ви не можете натиснути на посилання, то скопіюйте адресу " +"до адресного рядка вашого веб-оглядача.) Якщо ви не є згаданим користувачем, " +"не підтверджуйте нічого, просто проігноруйте це повідомлення." #. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. #. TRANS: %d is the unknown inbox ID (number). @@ -7978,6 +7995,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "Приєднатись" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8351,7 +8374,6 @@ msgstr "" "лише ви." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "Вхідні" @@ -8362,7 +8384,6 @@ msgid "Your incoming messages." msgstr "Ваші вхідні повідомлення" #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "Вихідні" @@ -8566,6 +8587,12 @@ msgstr "" "На жаль, отримання інформації щодо вашого розташування займе більше часу, " "ніж очікувалось; будь ласка, спробуйте пізніше" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "Дописи" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "Півн." @@ -8727,11 +8754,13 @@ msgid "Settings" msgstr "Налаштування СМС" #. TRANS: Menu item title in primary navigation panel. -msgid "Change your personal settings" +#, fuzzy +msgid "Change your personal settings." msgstr "Змінити персональні налаштування" #. TRANS: Menu item title in primary navigation panel. -msgid "Site configuration" +#, fuzzy +msgid "Site configuration." msgstr "Конфігурація сайту" #. TRANS: Menu item in primary navigation panel. @@ -8739,11 +8768,14 @@ msgctxt "MENU" msgid "Logout" msgstr "Вийти" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "Вийти з сайту" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "Увійти на сайт" #. TRANS: Menu item in primary navigation panel. @@ -8752,7 +8784,8 @@ msgid "Search" msgstr "Пошук" #. TRANS: Menu item title in primary navigation panel. -msgid "Search the site" +#, fuzzy +msgid "Search the site." msgstr "Пошук на сайті" #. TRANS: H2 text for user subscription statistics. @@ -8878,6 +8911,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "Пошук" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -9193,11 +9248,6 @@ msgstr "Тема містить файл типу «.%s», який є непр msgid "Error opening theme archive." msgstr "Помилка при відкритті архіву з темою." -#. TRANS: Header for Notices section. -msgctxt "HEADER" -msgid "Notices" -msgstr "Дописи" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format @@ -9394,8 +9444,5 @@ msgstr "Неправильний XML, корінь XRD відсутній." msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." -#~ msgid "Yes" -#~ msgstr "Так" - -#~ msgid "Subscribe" -#~ msgstr "Підписатись" +#~ msgid "Couldn't update your design." +#~ msgstr "Не вдалося оновити дизайн." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 30f565ccba..e5473815c7 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -15,18 +15,53 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:19:52+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:23+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r85252); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-04-01 21:04:32+0000\n" +"X-POT-Import-Date: 2011-04-03 13:40:15+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +#, fuzzy +msgid "Unknown page" +msgstr "未知的" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "未知动作" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" @@ -113,6 +148,7 @@ msgstr "没有这个页面。" #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed when not providing a user or an invalid user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. @@ -137,6 +173,7 @@ msgstr "没有这个页面。" #. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. #. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. #. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. #. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. #. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. @@ -153,6 +190,8 @@ msgstr "%1$s 和好友,第%2$d页" #. TRANS: Page title. %s is user nickname #. TRANS: H1 text for page. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Menu item title in administrator navigation panel. #. TRANS: %s is a username. @@ -227,28 +266,14 @@ msgstr "你和好友们" msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s上%1$s和好友们的更新!" -#. TRANS: Client error displayed handling a non-existing API method. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed when using an unsupported API format. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." msgstr "API方法没有找到。" +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." @@ -318,6 +343,8 @@ msgstr "无法保存你的外观设置。" #. TRANS: Error displayed when updating design settings fails. #. TRANS: Client error displayed when a database error occurs updating profile colours. #. TRANS: Form validation error on Profile design page when updating design settings has failed. +#. TRANS: Error message displayed if design settings could not be saved. +#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". msgid "Could not update your design." msgstr "无法更新你的外观。" @@ -682,9 +709,12 @@ msgstr "请求 token 已被授权了。" #. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. #. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Form validation error. #. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "你的 session 出现了一个问题,请重试。" @@ -873,6 +903,8 @@ msgstr "删除消息 %d" msgid "Client must provide a 'status' parameter with a value." msgstr "客户端必须提供一个包含内容的“状态”参数。" +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. @@ -887,6 +919,8 @@ msgstr "没有找到父级的消息。" #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -955,6 +989,8 @@ msgstr " %1$s 条消息回复给来自 %2$s 的消息 / %3$s。" msgid "Repeats of %s" msgstr "%s 的转发" +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. #, fuzzy, php-format msgid "%1$s notices that %2$s / %3$s has repeated." msgstr "%1$s 收藏了消息 %2$s 。" @@ -1319,6 +1355,7 @@ msgstr "你可以上传你的个人头像。文件大小限制在%s以下。" #. TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile. #. TRANS: Server error displayed when trying to authorise a remote subscription request #. TRANS: while the user has no profile. +#. TRANS: Server error displayed in user RSS when user does not have a matching profile. msgid "User without matching profile." msgstr "用户没有相应个人信息。" @@ -1345,6 +1382,7 @@ msgstr "预览" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. #. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. msgctxt "BUTTON" msgid "Delete" msgstr "删除" @@ -1515,24 +1553,7 @@ msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "离开 %2$s 组的 %1$s" -#. TRANS: Client error displayed when trying to leave a group while not logged in. -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to remove a favorite while not logged in. -#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in. -#. TRANS: Client error displayed trying to block a user from a group while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying to log out when not logged in. -#. TRANS: Client error displayed when trying to access the "make admin" page while not logged in. -#. TRANS: Client error displayed trying to create a new direct message while not logged in. -#. TRANS: Client error displayed trying to send a notice while not logged in. -#. TRANS: Client error displayed trying to nudge a user without being logged in. -#. TRANS: Client error displayed when trying to enable or disable a plugin while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error displayed trying to subscribe when not logged in. -#. TRANS: Client error displayed on user tag page when trying to add tags while not logged in. -#. TRANS: Client error displayed when trying to unsubscribe while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#. TRANS: Client error displayed when trying to change user options while not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "未登录。" @@ -1692,6 +1713,7 @@ msgstr "未找到应用。" msgid "You are not the owner of this application." msgstr "你不是该应用的拥有者。" +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. msgid "There was a problem with your session token." msgstr "你的 session token 出现了问题。" @@ -3258,6 +3280,9 @@ msgid "Ajax Error" msgstr "Ajax错误" #. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +#, fuzzy +msgctxt "TITLE" msgid "New notice" msgstr "新消息" @@ -4240,10 +4265,6 @@ msgstr "已请求密码恢复" msgid "Password saved" msgstr "密码已保存。" -#. TRANS: Title for password recovery page when an unknown action has been specified. -msgid "Unknown action" -msgstr "未知动作" - #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" msgstr "至少6个字符,还有,别忘记它!" @@ -4335,6 +4356,7 @@ msgstr "不允许注册。" msgid "You cannot register if you do not agree to the license." msgstr "如果您不同意该许可,您不能注册。" +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." msgstr "电子邮件地址已存在。" @@ -7435,11 +7457,6 @@ msgctxt "RADIO" msgid "Off" msgstr "关闭" -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Couldn't update your design." -msgstr "无法更新你的外观。" - #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." msgstr "默认外观已恢复。" @@ -7774,6 +7791,12 @@ msgstr "" msgid "Transport cannot be null." msgstr "" +#. TRANS: Button text for joining a group. +#, fuzzy +msgctxt "BUTTON" +msgid "Join" +msgstr "加入" + #. TRANS: Button text on form to leave a group. #, fuzzy msgctxt "BUTTON" @@ -8159,7 +8182,6 @@ msgstr "" "发给你你私信只有你看得到。" #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "收件箱" @@ -8170,7 +8192,6 @@ msgid "Your incoming messages." msgstr "你收到的私信" #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "发件箱" @@ -8368,6 +8389,13 @@ msgid "" "try again later" msgstr "抱歉,获取你的地理位置时间过长,请稍候重试" +#. TRANS: Header in notice list. +#. TRANS: Header for Notices section. +#, fuzzy +msgctxt "HEADER" +msgid "Notices" +msgstr "消息" + #. TRANS: Used in coordinates as abbreviation of north. msgid "N" msgstr "N" @@ -8530,12 +8558,12 @@ msgstr "SMS 设置" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Change your personal settings" +msgid "Change your personal settings." msgstr "修改你的个人信息" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Site configuration" +msgid "Site configuration." msgstr "用户配置" #. TRANS: Menu item in primary navigation panel. @@ -8543,11 +8571,14 @@ msgctxt "MENU" msgid "Logout" msgstr "登出" -msgid "Logout from the site" +#. TRANS: Menu item title in primary navigation panel. +#, fuzzy +msgid "Logout from the site." msgstr "从网站登出" #. TRANS: Menu item title in primary navigation panel. -msgid "Login to the site" +#, fuzzy +msgid "Login to the site." msgstr "登录这个网站" #. TRANS: Menu item in primary navigation panel. @@ -8557,7 +8588,7 @@ msgstr "搜索" #. TRANS: Menu item title in primary navigation panel. #, fuzzy -msgid "Search the site" +msgid "Search the site." msgstr "搜索帮助" #. TRANS: H2 text for user subscription statistics. @@ -8683,6 +8714,28 @@ msgctxt "BUTTON" msgid "Search" msgstr "搜索" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords.\n" +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"\n" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)\n" +msgstr "" + #. TRANS: Menu item in search group navigation panel. #, fuzzy msgctxt "MENU" @@ -8987,12 +9040,6 @@ msgstr "主题包含不允许的”.%s“格式文件。" msgid "Error opening theme archive." msgstr "打开主题文件时出错。" -#. TRANS: Header for Notices section. -#, fuzzy -msgctxt "HEADER" -msgid "Notices" -msgstr "消息" - #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, fuzzy, php-format @@ -9179,8 +9226,5 @@ msgstr "不合法的XML, 缺少XRD根" msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" -#~ msgid "Yes" -#~ msgstr "是" - -#~ msgid "Subscribe" -#~ msgstr "关注" +#~ msgid "Couldn't update your design." +#~ msgstr "无法更新你的外观。" diff --git a/plugins/Directory/locale/br/LC_MESSAGES/Directory.po b/plugins/Directory/locale/br/LC_MESSAGES/Directory.po new file mode 100644 index 0000000000..fa92a7ded8 --- /dev/null +++ b/plugins/Directory/locale/br/LC_MESSAGES/Directory.po @@ -0,0 +1,75 @@ +# Translation of StatusNet - Directory to Breton (Brezhoneg) +# Exported from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Directory\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:48+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-directory\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#, php-format +msgid "User Directory, page %d" +msgstr "" + +msgid "User directory" +msgstr "" + +#, php-format +msgid "User directory - %s" +msgstr "" + +#, php-format +msgid "User directory - %s, page %d" +msgstr "" + +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +msgid "Search site" +msgstr "Klask el lec'hienn" + +msgid "Keyword(s)" +msgstr "Ger(ioù) alc'hwez" + +msgctxt "BUTTON" +msgid "Search" +msgstr "Klask" + +#, php-format +msgid "No users starting with %s" +msgstr "N'eus implijer ebet o kregiñ gant %s" + +msgid "No results." +msgstr "Disoc'h ebet." + +msgid "Directory" +msgstr "" + +msgid "User Directory" +msgstr "" + +msgid "Add a user directory." +msgstr "" + +msgid "Nickname" +msgstr "Lesanv" + +msgid "Created" +msgstr "Krouet" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po new file mode 100644 index 0000000000..b4011b7d8c --- /dev/null +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -0,0 +1,282 @@ +# Translation of StatusNet - Event to Breton (Brezhoneg) +# Exported from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Event\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:14:58+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:40:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-event\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "Event already exists." +msgstr "An darvoud zo anezhañ dija." + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "\"%1$s\" %2$s - %3$s (%4$s): %5$s" + +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +msgid "No such RSVP." +msgstr "N'eus ket eus an RSVP-se." + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "N'eus ket eus an darvoud-se." + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +msgid "You will attend this event." +msgstr "" + +msgid "You will not attend this event." +msgstr "" + +msgid "You might attend this event." +msgstr "" + +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Nullañ" + +msgid "New RSVP" +msgstr "RSVP nevez" + +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "" + +msgid "Cancel RSVP" +msgstr "Nullañ an RSVP" + +msgid "RSVP:" +msgstr "RSVP :" + +msgctxt "BUTTON" +msgid "Yes" +msgstr "Ya" + +msgctxt "BUTTON" +msgid "No" +msgstr "Ket" + +msgctxt "BUTTON" +msgid "Maybe" +msgstr "Marteze" + +msgctxt "LABEL" +msgid "Title" +msgstr "Titl" + +msgid "Title of the event." +msgstr "Titl an darvoud." + +msgctxt "LABEL" +msgid "Start date" +msgstr "Deiziad kregiñ" + +msgid "Date the event starts." +msgstr "An deiziad evit pehini e krog an darvoud." + +msgctxt "LABEL" +msgid "Start time" +msgstr "Eurvezh kregiñ" + +msgid "Time the event starts." +msgstr "" + +msgctxt "LABEL" +msgid "End date" +msgstr "Deiziad echuiñ" + +msgid "Date the event ends." +msgstr "An deiziad evit pehini ec'h echu an darvoud." + +msgctxt "LABEL" +msgid "End time" +msgstr "Eurvezh echuiñ" + +msgid "Time the event ends." +msgstr "" + +msgctxt "LABEL" +msgid "Location" +msgstr "Lec'hiadur" + +msgid "Event location." +msgstr "" + +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +msgid "URL for more information." +msgstr "URL evit gouzout hiroc'h." + +msgctxt "LABEL" +msgid "Description" +msgstr "Deskrivadur" + +msgid "Description of the event." +msgstr "Deskrivadur an darvoud." + +msgctxt "BUTTON" +msgid "Save" +msgstr "Enrollañ" + +msgid "Event invitations and RSVPs." +msgstr "" + +msgid "Event" +msgstr "Darvoud" + +msgid "Wrong type for object." +msgstr "" + +msgid "RSVP for unknown event." +msgstr "" + +msgid "Unknown verb for events" +msgstr "" + +msgid "Unknown object type." +msgstr "" + +msgid "Unknown event notice." +msgstr "" + +msgid "Time:" +msgstr "Deiziad :" + +msgid "Location:" +msgstr "Lec'hiadur :" + +msgid "Description:" +msgstr "Deskrivadur :" + +msgid "Attending:" +msgstr "" + +#. TRANS: RSVP counts. +#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. +#, php-format +msgid "Yes: %1$d No: %2$d Maybe: %3$d" +msgstr "Ya : %1$d Nann : %2$d Marteze : %3$d" + +msgid "RSVP already exists." +msgstr "" + +#, php-format +msgid "Unknown verb \"%s\"" +msgstr "Verb dizanv \"%s\"" + +#, php-format +msgid "Unknown code \"%s\"." +msgstr "Kod dizanv \"%s\"." + +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "" + +#, php-format +msgid "No profile with ID %s." +msgstr "N'eus profil ebet gant an ID %s." + +#, php-format +msgid "No event with ID %s." +msgstr "N'eus darvoud ebet gant an ID %s" + +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" + +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" + +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" + +#, php-format +msgid "Unknown response code %s." +msgstr "" + +msgid "an unknown event" +msgstr "" + +#, php-format +msgid "%1$s is attending %2$s." +msgstr "" + +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "" + +#, php-format +msgid "%1$s might attend %2$s." +msgstr "" + +msgid "New event" +msgstr "Darvoud nevez" + +msgid "Must be logged in to post a event." +msgstr "" + +msgid "Title required." +msgstr "Ezhomm 'zo eus un titl." + +msgid "Start date required." +msgstr "" + +msgid "End date required." +msgstr "" + +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "" + +msgid "Event must have a title." +msgstr "An darvoud a rank kaout un titl." + +msgid "Event must have a start time." +msgstr "" + +msgid "Event must have an end time." +msgstr "" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index d27b2514e0..61d48e45fc 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -442,7 +442,7 @@ msgstr "" msgid "Save OpenID settings." msgstr "" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. #: finishaddopenid.php:68 msgid "Not logged in." msgstr "" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index 1b9fe519c9..33ee14feca 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -372,7 +372,7 @@ msgstr "" msgid "Save OpenID settings." msgstr "إعدادات الهوية المفتوحة" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "لست والجًا." diff --git a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po index 7fe2f162af..80f7a864e1 100644 --- a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -369,7 +369,7 @@ msgstr "" msgid "Save OpenID settings." msgstr "Arventenn OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nann-kevreet." diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index b5c13e3647..16ce082dba 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -387,7 +387,7 @@ msgstr "" msgid "Save OpenID settings." msgstr "Desa els paràmetres de l'OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "No s'ha iniciat una sessió." diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index f455e7ff55..fba3a1757f 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -405,7 +405,7 @@ msgstr "" msgid "Save OpenID settings." msgstr "OpenId-Einstellungen speichern" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nicht angemeldet." diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 9207b3a4fa..5e10c8b80f 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -407,7 +407,7 @@ msgstr "" msgid "Save OpenID settings." msgstr "Sauvegarder les paramètres OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Non connecté." diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 055cec5a11..22ddd1655e 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -398,7 +398,7 @@ msgstr "" msgid "Save OpenID settings." msgstr "Salveguardar configurationes de OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Tu non ha aperite un session." diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index 314f9cf330..b9b1842baa 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -394,7 +394,7 @@ msgstr "Зачувај" msgid "Save OpenID settings." msgstr "Зачувај нагодувања за OpenID." -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не сте најавени." diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 413b55ec23..272f5e2083 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:52+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -403,7 +403,7 @@ msgstr "Opslaan" msgid "Save OpenID settings." msgstr "OpenID-instellingen opslaan." -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Niet aangemeld." diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index b5ee2dce77..d80a9949b5 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -343,7 +343,7 @@ msgstr "" msgid "Invalid team name. Max length is 255 characters." msgstr "" -"Hindi tanggap ng pangalan ng pangkat. Pinakamataas na haba ay 255 mga " +"Hindi tanggap na pangalan ng pangkat. Pinakamataas na haba ay 255 mga " "panitik." msgid "Trusted provider" @@ -411,7 +411,7 @@ msgstr "" msgid "Save OpenID settings." msgstr "Sagipin ang mga katakdaan ng OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Hindi nakalagda." diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 86f2145d4b..37b879f0b5 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:15:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -398,7 +398,7 @@ msgstr "" msgid "Save OpenID settings." msgstr "Зберегти налаштування OpenID" -#. TRANS: Client error message +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Ви не увійшли до системи." diff --git a/plugins/QnA/locale/QnA.pot b/plugins/QnA/locale/QnA.pot index 7bae84dfeb..43fa2f3b1a 100644 --- a/plugins/QnA/locale/QnA.pot +++ b/plugins/QnA/locale/QnA.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -53,9 +53,11 @@ msgstr "" msgid "User without a profile." msgstr "" -#: actions/qnashowanswer.php:112 +#. TRANS: Page title. +#. TRANS: %1$s is the user who answered a question, %2$s is the question. +#: actions/qnashowanswer.php:114 #, php-format -msgid "%s's answer to \"%s\"" +msgid "1$%s's answer to \"%2$s\"" msgstr "" #. TRANS: Client exception thrown trying to view a non-existing question. @@ -109,7 +111,7 @@ msgid "Unexpected type for QnA plugin: %s." msgstr "" #: QnAPlugin.php:338 -msgid "Question data is missing" +msgid "Question data is missing." msgstr "" #: classes/QnA_Answer.php:225 diff --git a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po new file mode 100644 index 0000000000..b8db5e56f9 --- /dev/null +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -0,0 +1,147 @@ +# Translation of StatusNet - QnA to Macedonian (Македонски) +# Exported from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - QnA\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:10+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-qna\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Title for Question page. +msgid "New question" +msgstr "Ново прашање" + +msgid "You must be logged in to post a question." +msgstr "Мора да сте најавени за да поставувате прашања." + +#. TRANS: Client exception thrown trying to create a question without a title. +msgid "Question must have a title." +msgstr "Прашањето мора да има наслов." + +#. TRANS: Page title after sending a notice. +msgid "Question posted" +msgstr "Прашањето е поставено" + +msgid "No such answer." +msgstr "Нема таков одговор." + +msgid "No question for this answer." +msgstr "Нема прашање за овој одговор." + +#. TRANS: Client exception thrown trying to view a question of a non-existing user. +msgid "No such user." +msgstr "Нема таков корисник." + +#. TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded. +msgid "User without a profile." +msgstr "Корисникот е без профил." + +#. TRANS: Page title. +#. TRANS: %1$s is the user who answered a question, %2$s is the question. +#, fuzzy, php-format +msgid "1$%s's answer to \"%2$s\"" +msgstr "Одговорот на %s на прашањето „%s“" + +#. TRANS: Client exception thrown trying to view a non-existing question. +msgid "No such question." +msgstr "Нема такво прашање." + +#. TRANS: Client exception thrown trying to view a non-existing question notice. +msgid "No such question notice." +msgstr "Нема таква забелешка со прашање." + +#. TRANS: Page title for a question. +#. TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. +#, php-format +msgid "%1$s's question: %2$s" +msgstr "Прашање на %1$s: %2$s" + +#. TRANS: Page title for and answer to a question. +msgid "Answer" +msgstr "Одговор" + +#. TRANS: Client exception thrown trying to answer a question while not logged in. +msgid "You must be logged in to answer to a question." +msgstr "Мора да сте најавени за да одговарате на прашања." + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +msgid "Invalid or missing question." +msgstr "Неважечко или непостоечко прашање." + +#. TRANS: Page title after sending an answer. +msgid "Answers" +msgstr "Одговори" + +msgid "Question and Answers micro-app." +msgstr "Приложен микропрограм за прашања и одговори." + +msgid "Question" +msgstr "Прашање" + +#, php-format +msgid "Unexpected type for QnA plugin: %s." +msgstr "Неочекуван тип на приклучок за прашања и одговори: %s." + +#, fuzzy +msgid "Question data is missing." +msgstr "Прашалните податоци недостасуваат" + +#, php-format +msgid "%1$s answered the question \"%2$s\": %3$s" +msgstr "%1$s одговори на прашањето „%2$s“: %3$s" + +#. TRANS: Rendered version of the notice content answering a question. +#. TRANS: %s a link to the question with question title as the link content. +#, php-format +msgid "answered \"%s\"" +msgstr "одговори на „%s“" + +#, php-format +msgid "%1$s asked the question \"%2$s\": %3$s" +msgstr "%1$s го постави прашањето „%2$s“: %3$s" + +#, php-format +msgid "question: %1$s %2$s" +msgstr "прашање: %1$s %2$s" + +#. TRANS: Rendered version of the notice content creating a question. +#. TRANS: %s a link to the question as link description. +#, php-format +msgid "Question: %s" +msgstr "Прашање: %s" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "Поднеси" + +msgid "Title" +msgstr "Наслов" + +msgid "Title of your question" +msgstr "Наслов на прашањето" + +msgid "Description" +msgstr "Опис" + +msgid "Your question in detail" +msgstr "Вашето прашање поподробно" + +#. TRANS: Button text for saving a new question. +msgctxt "BUTTON" +msgid "Save" +msgstr "Зачувај" diff --git a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po index f51a9e8270..34b8b7d4c6 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 12:56:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -51,9 +51,11 @@ msgstr "Deze gebruiker bestaat niet." msgid "User without a profile." msgstr "Gebruiker zonder profiel." -#, php-format -msgid "%s's answer to \"%s\"" -msgstr "" +#. TRANS: Page title. +#. TRANS: %1$s is the user who answered a question, %2$s is the question. +#, fuzzy, php-format +msgid "1$%s's answer to \"%2$s\"" +msgstr "Antwoord van %s op \"%s\"" #. TRANS: Client exception thrown trying to view a non-existing question. msgid "No such question." @@ -95,8 +97,9 @@ msgstr "Vraag" msgid "Unexpected type for QnA plugin: %s." msgstr "Onverwacht type voor plug-in Vraag en Antwoord: %s." -msgid "Question data is missing" -msgstr "" +#, fuzzy +msgid "Question data is missing." +msgstr "De vraaggegevens ontbreken." #, php-format msgid "%1$s answered the question \"%2$s\": %3$s" diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index cade31e590..4e33c5ff43 100644 --- a/plugins/SearchSub/locale/SearchSub.pot +++ b/plugins/SearchSub/locale/SearchSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -101,7 +101,7 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. #: searchsubaction.php:99 msgid "Not logged in." msgstr "" diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index 4971cd723b..47f5cc1861 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:16+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -102,7 +102,7 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index b97f0bc028..f317a853ea 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:16+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -103,7 +103,7 @@ msgstr "Ова дејство прифаќа само POST-барања" msgid "There was a problem with your session token. Try again, please." msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не сте најавени." diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index 1cb5c76157..3d53577716 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:16+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -104,7 +104,7 @@ msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " "alstublieft." -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Niet aangemeld." diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index 9a4ed3b329..9fc887de66 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:16+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -105,7 +105,7 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index da4e49c549..49a1c5619d 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:17+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:38+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -104,7 +104,7 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 5ec78c8092..ad47da84af 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,11 +41,12 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/basemirror.php:136 +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +#: actions/basemirror.php:137 msgid "Not logged in." msgstr "" -#: actions/basemirror.php:159 +#: actions/basemirror.php:160 msgid "Subscribed" msgstr "" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 31319b9779..0e6851e7bf 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:29+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -42,6 +42,7 @@ msgstr "Diese Aktion nimmt nur POST-Requests." msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Nicht angemeldet." diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 06d802efe3..edd52d5112 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -45,6 +45,7 @@ msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " "nouveau." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Non connecté." diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index a48da628f6..c5c05f3d41 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -41,6 +41,7 @@ msgstr "Iste action accepta solmente le requestas de typo POST." msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Tu non ha aperite un session." diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index e3e20a0597..e5a02b4bcb 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -41,6 +41,7 @@ msgstr "Оваа постапка прифаќа само POST-барања." msgid "There was a problem with your session token. Try again, please." msgstr "Се појави проблем со жетонот на Вашата сесија. Обидете се подоцна." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не сте најавени." diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index 3b567529de..d0cf217ea3 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -43,6 +43,7 @@ msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " "alstublieft." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Niet aangemeld." diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 6bda4e4a2e..b0b140e504 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -42,6 +42,7 @@ msgstr "Ang galaw na ito ay tumatanggap lamang ng mga kahilingang POST." msgid "There was a problem with your session token. Try again, please." msgstr "May isang suliranin sa iyong token ng sesyon. Pakisubukan uli." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Hindi nakalagda." diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 005117fecd..4b8ac65e91 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:28+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -42,6 +42,7 @@ msgstr "Ця дія приймає запити лише за формою POST. msgid "There was a problem with your session token. Try again, please." msgstr "Виникли певні проблеми з токеном сесії. Спробуйте знов, будь ласка." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Ви не увійшли до системи." diff --git a/plugins/TagSub/locale/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index 66af15aeef..48a9c1cab9 100644 --- a/plugins/TagSub/locale/TagSub.pot +++ b/plugins/TagSub/locale/TagSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -70,7 +70,7 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. #: tagsubaction.php:99 msgid "Not logged in." msgstr "" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index e7200d6f69..098496f1d1 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -68,7 +68,7 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index c3f67306e2..756ec3aaa2 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -64,7 +64,7 @@ msgstr "Ова дејство прифаќа само POST-барања" msgid "There was a problem with your session token. Try again, please." msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно." -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не сте најавени." diff --git a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po index c1b831d098..2fe2fc9853 100644 --- a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -64,7 +64,7 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Belum log masuk." diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index 4ff685a583..ee790b8f9d 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -68,7 +68,7 @@ msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " "alstublieft." -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Niet aangemeld." diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index fdbbef7056..5fedaa5363 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -24,10 +24,9 @@ msgstr "" msgid "Unsubscribe from this tag" msgstr "Huwag nang magpasipi mula sa tatak na ito" -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "Hindi na nagpapasipi" +msgstr "Pahintuin na ang pagtanggap ng sipi" #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." @@ -50,10 +49,9 @@ msgstr "Mga pagpapasipi ng tatak" msgid "Subscribe to this tag" msgstr "Magpasipi para sa tatak na ito" -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" -msgstr "Nagpapasipi na" +msgstr "Pumayag na tumanggap ng sipi" #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" @@ -68,7 +66,7 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index 8e9b5134f6..6f5f50281a 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:48+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -67,7 +67,7 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" -#. TRANS: Client error displayed trying to subscribe when not logged in. +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index 30e0af7022..e7c6e3ea18 100644 --- a/plugins/UserFlag/locale/UserFlag.pot +++ b/plugins/UserFlag/locale/UserFlag.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-01 20:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -54,28 +54,29 @@ msgstr "" msgid "Clear all flags" msgstr "" -#: adminprofileflag.php:64 +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +#: adminprofileflag.php:65 msgid "Not logged in." msgstr "" -#: adminprofileflag.php:88 +#: adminprofileflag.php:89 msgid "You cannot review profile flags." msgstr "" #. TRANS: Title for page with a list of profiles that were flagged for review. -#: adminprofileflag.php:125 +#: adminprofileflag.php:126 msgid "Flagged profiles" msgstr "" #. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). -#: adminprofileflag.php:242 +#: adminprofileflag.php:243 msgid "Moderate" msgstr "" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. #. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. -#: adminprofileflag.php:388 +#: adminprofileflag.php:389 #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -84,7 +85,7 @@ msgstr[1] "" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. -#: adminprofileflag.php:392 +#: adminprofileflag.php:393 #, php-format msgid "Flagged by %s" msgstr "" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index b59038840b..172265d1a2 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,7 @@ msgstr "Esborra" msgid "Clear all flags" msgstr "Esborra tots els senyals" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index a78bd52136..dc872c0695 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,7 @@ msgstr "Löschen" msgid "Clear all flags" msgstr "Alle Markierungen löschen" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index 1b4e88b26d..40101f61eb 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,7 @@ msgstr "Effacer" msgid "Clear all flags" msgstr "Effacer tous les marquages" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index fce44e17ff..d516b0f392 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -52,6 +52,7 @@ msgstr "Rader" msgid "Clear all flags" msgstr "Rader tote le marcas" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index 5cfab00183..00e1ea3a39 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,7 @@ msgstr "Отстрани" msgid "Clear all flags" msgstr "Отстрани ги сите ознаки" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Не сте најавени." diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index f8742006ad..5ee678f19f 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,7 @@ msgstr "Wissen" msgid "Clear all flags" msgstr "Alle markeringen wissen" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "Niet aangemeld." diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index c1374ac7f1..28d2c6937e 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -53,6 +53,7 @@ msgstr "Limpar" msgid "Clear all flags" msgstr "Limpar todas as sinalizações" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index e7a2b42961..f7969de34c 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -54,6 +54,7 @@ msgstr "Очистить" msgid "Clear all flags" msgstr "Очистить все флаги" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..d3bb3ac421 --- /dev/null +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -0,0 +1,103 @@ +# Translation of StatusNet - UserFlag to Tagalog (Tagalog) +# Exported from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-userflag\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: AJAX form title for a flagged profile. +msgid "Flagged for review" +msgstr "Iwinatawat para sa muling pagsusuri" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#. TRANS: Message added to a profile if it has been flagged for review. +msgid "Flagged" +msgstr "Iwinatawat" + +#. TRANS: Plugin description. +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Ang pamasak na ito nagpapahintulot ng pagwawatawat ng mga balangkas na " +"susuriing muli at pagsusuring muli ng ibinandilang mga balangkas." + +#. TRANS: Form title for flagging a profile for review. +msgid "Flag" +msgstr "Iwatawat" + +#. TRANS: Form description. +msgid "Flag profile for review." +msgstr "Balangkas ng watawat na susuriing muli." + +#. TRANS: Form title for action on a profile. +msgid "Clear" +msgstr "Hawiin" + +msgid "Clear all flags" +msgstr "Hawiin ang lahat ng mga watawat" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Hindi nakalagda." + +msgid "You cannot review profile flags." +msgstr "Hindi ka maaaring magsuring muli ng mga watawat ng balangkas." + +#. TRANS: Title for page with a list of profiles that were flagged for review. +msgid "Flagged profiles" +msgstr "Iwinatawat na mga balangkas" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +msgid "Moderate" +msgstr "Katamtaman" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#, php-format +msgid "Flagged by %s" +msgstr "Iwinatawat ni %s" + +#. TRANS: Server exception given when flags could not be cleared. +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "Hindi mahawi ang mga watawat para sa balangkas na \"%s\"." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +msgid "Flags cleared" +msgstr "Nahawi ang mga watawat" + +#. TRANS: Body element for "flags cleared" form. +msgid "Cleared" +msgstr "Nahawi na" + +#. TRANS: Server exception. +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "" +"Hindi maiwatawat ang watawat ng balangkas na \"%d\" para sa muling pagsusuri." diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index 1705d93cb4..1d7ce6bb57 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -54,6 +54,7 @@ msgstr "Зняти" msgid "Clear all flags" msgstr "Зняти всі позначки" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." msgstr "" diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index 71767e40ee..bdf6987d51 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-03 13:16+0000\n" -"PO-Revision-Date: 2011-04-03 13:22:45+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85253); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:49+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" @@ -24,6 +24,7 @@ msgstr "" #, php-format msgid "Cannot register; maximum number of users (%d) reached." msgstr "" +"Hindi maipatala; naabot na ang pinakamataas na bilang ng mga tagagamit (%d)." msgid "Limit the number of users who can register." msgstr "Hangganan ng bilang ng mga tagagamit na makakapagpatala." diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index 5e8db2e24e..743cabfc66 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-31 21:06+0000\n" -"PO-Revision-Date: 2011-03-31 21:10:52+0000\n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:10:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85082); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:41:50+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" @@ -23,17 +23,19 @@ msgstr "" #, php-format msgid "Edit the article for #%s on WikiHashtags" -msgstr "" +msgstr "Baguhin ang artikulo para sa #%s na nasa WikiHashtags" msgid "Edit" -msgstr "" +msgstr "Baguhin" msgid "Shared under the terms of the GNU Free Documentation License" msgstr "" +"Ibinabahagi sa ilalim ng mga pagsasaad ng Lisensiya ng Malayang " +"Dokumentasyon ng GNU" #, php-format msgid "Start the article for #%s on WikiHashtags" -msgstr "" +msgstr "Simulan ang artikulo para sa #%s na nasa WikiHashtags" msgid "" "Gets hashtag descriptions from \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-31 21:41:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85150); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-03 13:42:09+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -30,7 +30,7 @@ msgstr "XMPP/Jabber/GTalk" #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" -msgstr "" +msgstr "[%s]" msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" diff --git a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po new file mode 100644 index 0000000000..f7b615418c --- /dev/null +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -0,0 +1,229 @@ +# Translation of StatusNet - YammerImport to Tagalog (Tagalog) +# Exported from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - YammerImport\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-03 23:11+0000\n" +"PO-Revision-Date: 2011-04-03 23:16:53+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-01 21:07:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r85293); Translate extension (2011-03-11)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-yammerimport\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Connect to Yammer" +msgstr "Umugnay sa Yammer" + +msgid "Yammer Import" +msgstr "Pang-angkat ng Yammer" + +msgid "" +"This Yammer import tool is still undergoing testing, and is incomplete in " +"some areas. Currently user subscriptions and group memberships are not " +"transferred; in the future this may be supported for imports done by " +"verified administrators on the Yammer side." +msgstr "" +"Ang kasangkapang pang-angkat na ito ng Yammer ay sumasailalim pa rin ng " +"pagsubok, at hindi buo sa loob ng ilang mga lugar. Pangkasalukuyang hindi " +"naililipat ang mga pagpapasipi ng tagagamit at pagsapi sa mga pangkat; " +"maaaring tangkilikin ito sa hinaharap para sa mga pag-aangkat na ginagawa ng " +"napatunayang mga tagapangasiwa na nasa gawi ng Yammer." + +msgid "Paused from admin panel." +msgstr "Pansamantalang itinigil mula sa inampalan ng tagapangasiwa." + +msgid "Yammer import" +msgstr "Pang-angkat ng Yammer" + +msgid "Yammer" +msgstr "Yammer" + +msgid "Expertise:" +msgstr "Kadalubhasaan:" + +#, php-format +msgid "Invalid avatar URL %s." +msgstr "Hindi katanggap-tanggap na URL ng abatar ang %s." + +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Hindi nagawang damputin ang abatar mula sa %s." + +msgid "Start authentication" +msgstr "Simulan ang pagpapatotoo" + +msgid "Request authorization to connect to Yammer account" +msgstr "Humiling ng pahintulot upang makaugnay sa akawnt ng Yammer" + +msgid "Change API key" +msgstr "Baguhin ang susi ng API" + +msgid "Initialize" +msgstr "Magpasimula" + +msgid "No import running" +msgstr "Walang tumatakbong pag-aangkat" + +msgid "Initiated Yammer server connection..." +msgstr "Pinasimulan ang pag-ugnay sa tagapaghain ng Yammer..." + +msgid "Awaiting authorization..." +msgstr "Naghihintay ng kapahintulutan..." + +msgid "Connected." +msgstr "Naiugnay na." + +msgid "Import user accounts" +msgstr "Angkatin ang mga akawnt ng tagagamit" + +#, php-format +msgid "Importing %d user..." +msgid_plural "Importing %d users..." +msgstr[0] "Inaangkat ang tagagamit ng %d... " +msgstr[1] "Inaangkat ang mga tagagamit ng %d..." + +#, php-format +msgid "Imported %d user." +msgid_plural "Imported %d users." +msgstr[0] "Naangkat na tagagamit ng %d." +msgstr[1] "Naangkat na mga tagagamit ng %d." + +msgid "Import user groups" +msgstr "Angkatin ang mga pangkat ng tagagamit" + +#, php-format +msgid "Importing %d group..." +msgid_plural "Importing %d groups..." +msgstr[0] "Inaangkat ang pangkat ng %d... " +msgstr[1] "Inaangkat ang mga pangkat ng %d..." + +#, php-format +msgid "Imported %d group." +msgid_plural "Imported %d groups." +msgstr[0] "Naangkat na pangkat ng %d." +msgstr[1] "Naangkat na mga pangkat ng %d." + +msgid "Prepare public notices for import" +msgstr "Ihanda ang aangkating mga pabatid na pangmadla" + +#, php-format +msgid "Preparing %d notice..." +msgid_plural "Preparing %d notices..." +msgstr[0] "" +msgstr[1] "" + +#, php-format +msgid "Prepared %d notice." +msgid_plural "Prepared %d notices." +msgstr[0] "" +msgstr[1] "" + +msgid "Import public notices" +msgstr "Angkatin ang mga pabatid na pangmadla" + +#, php-format +msgid "Importing %d notice..." +msgid_plural "Importing %d notices..." +msgstr[0] "" +msgstr[1] "" + +#, php-format +msgid "Imported %d notice." +msgid_plural "Imported %d notices." +msgstr[0] "" +msgstr[1] "" + +msgid "Done" +msgstr "Nagawa na" + +msgid "Import is complete!" +msgstr "Buo na ang pag-aangkat!" + +msgid "Import status" +msgstr "Katayuan ng pag-aangkat" + +msgid "Waiting..." +msgstr "Naghihintay..." + +msgid "Reset import state" +msgstr "Muling itakda ang katayuan ng pag-aangkat" + +msgid "Pause import" +msgstr "Pansamantalang itigil ang pag-aangkat" + +#, php-format +msgid "Encountered error \"%s\"" +msgstr "Nakatagpo ng kamaliang \"%s\"" + +msgid "Paused" +msgstr "Pansamantalang inihinto" + +msgid "Continue" +msgstr "Magpatuloy" + +msgid "Abort import" +msgstr "Pigilin ang pag-angkat" + +msgid "" +"Follow this link to confirm authorization at Yammer; you will be prompted to " +"log in if necessary:" +msgstr "" +"Sundan ang kawing na ito upang tiyakin ang pahintulot sa Yammer; ikay ay " +"uudyuking lumagdang papasok kung kailangan:" + +msgid "Open Yammer authentication window" +msgstr "Buksan ang bintana ng pagpapatotoo ng Yammer" + +msgid "Copy the verification code you are given below:" +msgstr "Kopyahin ang kodigo ng pagpapatotoo na ibinigay sa iyo sa ibaba:" + +msgid "Verification code:" +msgstr "Kodigo ng pagpapatotoo:" + +msgid "Save code and begin import" +msgstr "Sagipin ang kodigo at simulan ang pag-aangkat" + +msgid "Yammer API registration" +msgstr "Pagpapatala sa API ng Yammer" + +msgid "" +"Before we can connect to your Yammer network, you will need to register the " +"importer as an application authorized to pull data on your behalf. This " +"registration will work only for your own network. Follow this link to " +"register the app at Yammer; you will be prompted to log in if necessary:" +msgstr "" +"Bago kami maka-ugnay sa lambatan mo ng Yammer, kakailanganin mong ipatala " +"ang pang-angkat bilang isang aplikasyon na may pahintulot na humila ng dato " +"sa ilalim ng iyong pangalan. Ang pagpapatalang ito ay gagana lamang para sa " +"iyong lambatan. Sundan ang kawing na ito upang ipatala ang aplikasyon sa " +"Yammer; uudyukin kang lumagdang papasok kung kinakailangan:" + +msgid "Open Yammer application registration form" +msgstr "Buksan ang pormularyo ng pagpapatala ng aplikasyon ng Yammer" + +msgid "Copy the consumer key and secret you are given into the form below:" +msgstr "" +"Kopyahin ang susi at lihim ng tagaubos na ibinigay sa iyo papasok sa " +"pormularyong nasa ibaba:" + +msgid "Consumer key:" +msgstr "Susi ng tagaubos:" + +msgid "Consumer secret:" +msgstr "Lihim ng tagaubos:" + +msgid "Save" +msgstr "Sagipin" + +msgid "Save these consumer keys" +msgstr "Sagipin ang mga susing ito ng tagaubos" From e552993307b75abf8fbb5370c9cfcc2fa44756c2 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 4 Apr 2011 01:36:47 +0200 Subject: [PATCH 52/52] Fix incorrect substitution syntax. --- plugins/QnA/actions/qnashowanswer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/QnA/actions/qnashowanswer.php b/plugins/QnA/actions/qnashowanswer.php index 94a757960e..24296a5af6 100644 --- a/plugins/QnA/actions/qnashowanswer.php +++ b/plugins/QnA/actions/qnashowanswer.php @@ -111,7 +111,7 @@ class QnashowanswerAction extends ShownoticeAction return sprintf( // TRANS: Page title. // TRANS: %1$s is the user who answered a question, %2$s is the question. - _m('1$%s\'s answer to "%2$s"'), + _m('%1$s\'s answer to "%2$s"'), $this->user->nickname, $question->title );